Syntax Help
#15
Hello again. Another day another problem.

I decided to make a new video library. So I tried to implement the usual sidebar, with choice of ordering patter, filter, view type etc..., by basically creating a rotating wheel and a button. However, when I tried to add some visibility instructions. the buttons dissapear ignoring the fact that the condition is true.

My code is:

Code:
<window id="6">
<defaultcontrol always="false">303</defaultcontrol>
<allowoverlay>yes</allowoverlay>
<controls>
    
    <control type="image">
      <description>UnderLayer</description>
      <posx>-300</posx>
      <posy>-300</posy>
      <width>600</width>
      <height>600</height>
      <visible allowhiddenfocus="true">Control.HasFocus(303)</visible>
      <fadetime>150</fadetime>
      <texture>Layer1.png</texture>
      <aspectratio>keep</aspectratio>
    </control>
    
    <control type="image" id="303">
      <description>Order</description>
      <posx>-290</posx>
      <posy>-290</posy>
      <width>580</width>
      <height>580</height>
      <visible>true</visible>
      <fadetime>150</fadetime>
      <texture>Layer2.png</texture>
      <aspectratio>keep</aspectratio>
      <onup>303</onup>
      <ondown>9000</ondown>
      <onright>303</onright>
      <onleft>302</onleft>
    </control>
    
    <control type="image" id="302">
      <description>SearchIcon</description>
      <posx>-290</posx>
      <posy>-290</posy>
      <width>580</width>
      <height>580</height>
      <visible allowhiddenfocus="true">Control.HasFocus(302)</visible>
      <texture>Layer3.png</texture>
      <aspectratio>keep</aspectratio>
    </control>
    
</controls>
</window>

Also I would like to know how to add new views used in music/picture/video libraries. The wikia has no information on that what so ever.
Reply


Messages In This Thread
Syntax Help - by Avatarass - 2012-04-30, 18:32
RE: Syntax Help - by Hitcher - 2012-04-30, 19:05
RE: Syntax Help - by Avatarass - 2012-04-30, 19:08
RE: Syntax Help - by Hitcher - 2012-04-30, 19:12
RE: Syntax Help - by Avatarass - 2012-04-30, 19:16
RE: Syntax Help - by Hitcher - 2012-04-30, 21:59
RE: Syntax Help - by Avatarass - 2012-04-30, 22:35
RE: Syntax Help - by Hitcher - 2012-05-01, 00:01
RE: Syntax Help - by Avatarass - 2012-05-01, 00:12
RE: Syntax Help - by Avatarass - 2012-05-01, 03:46
RE: Syntax Help - by Hitcher - 2012-05-01, 10:28
RE: Syntax Help - by Avatarass - 2012-05-01, 17:33
RE: Syntax Help - by Hitcher - 2012-05-01, 18:22
RE: Syntax Help - by Avatarass - 2012-05-01, 18:51
RE: Syntax Help - by Avatarass - 2012-05-01, 21:21
RE: Syntax Help - by ronie - 2012-05-02, 00:47
RE: Syntax Help - by Avatarass - 2012-05-02, 00:54
AW: Syntax Help - by mad-max - 2012-05-01, 23:17
RE: AW: Syntax Help - by Avatarass - 2012-05-01, 23:23
RE: Syntax Help - by jmarshall - 2012-05-02, 00:08
Logout Mark Read Team Forum Stats Members Help
Syntax Help0