Hi, need help please. When I define LOGO it not works. tryin use this
<!--LOGO--> ????
<define class="logo">
<deck deck="Master">
<size width="400" height="200"/>
<pos x="+0+1060" y="+0+750"/>
<down x="0" y="1080"/>
</deck>
</define>
<!--LOGO EFFECTS-->
<group name="logo">
<stack fadein="2500ms" fadeout="2500ms">
<size width="400" height="200"/>
<pos x="0" y="0"/>
<slot x="+0" y="+0"/>
<item class="logo" visibility="yes"></item>
<item class="logo" visibility="load_pulse_active 1000ms 156000ms && pulse 23000ms"></item>
</stack>
</group>
Can anyoe help please?
<!--LOGO--> ????
<define class="logo">
<deck deck="Master">
<size width="400" height="200"/>
<pos x="+0+1060" y="+0+750"/>
<down x="0" y="1080"/>
</deck>
</define>
<!--LOGO EFFECTS-->
<group name="logo">
<stack fadein="2500ms" fadeout="2500ms">
<size width="400" height="200"/>
<pos x="0" y="0"/>
<slot x="+0" y="+0"/>
<item class="logo" visibility="yes"></item>
<item class="logo" visibility="load_pulse_active 1000ms 156000ms && pulse 23000ms"></item>
</stack>
</group>
Can anyoe help please?
geposted Mon 02 Nov 20 @ 2:36 pm
Logo MUST be always visible on skin.
Also, you need to call it as <logo class="logo"/>
I'm not sure it will work as "item" inside a stack
As a work around, I would create a panel with the logo inside it instead, and I would show the panel inside the stack
Also, you need to call it as <logo class="logo"/>
I'm not sure it will work as "item" inside a stack
As a work around, I would create a panel with the logo inside it instead, and I would show the panel inside the stack
geposted Mon 02 Nov 20 @ 4:43 pm
Great but that is too much for me, thank you, but I'm not that good to write it. Any help will be appreciated.
Thank you
Thank you
geposted Mon 02 Nov 20 @ 5:36 pm
Okay, so far it is working like I want, with this:
<!--LOGO-->
<panel name="logo" visible="load_pulse_active 1000ms 36000ms && pulse 23000ms">
<visual name="logo" visibility="yes">
<pos x="1340" y="500"/>
<size width="460" height="300"/>
<off x="0" y="1080"/>
</visual>
</panel>
only fade in: fade out can't figure out :-(
<!--LOGO-->
<panel name="logo" visible="load_pulse_active 1000ms 36000ms && pulse 23000ms">
<visual name="logo" visibility="yes">
<pos x="1340" y="500"/>
<size width="460" height="300"/>
<off x="0" y="1080"/>
</visual>
</panel>
only fade in: fade out can't figure out :-(
geposted Mon 02 Nov 20 @ 6:57 pm
Thank you PhantomDeeJay.
You pointed me to right way....
Final scrip looks like this:
<!--LOGO-->
<define class="panel">
<panel name="logo" visible="deck master is_audible">
<visual name="lights_top" visibility="yes">
<pos x="198" y="198"/>
<size width="246" height="190"/>
<off x="680" y="3270"/>
</visual>
</panel>
</define>
<!--LOGO EFFECTS-->
<group name="panel">
<stack fadein="2500ms" fadeout="2500ms">
<size width="246" height="190"/>
<pos x="0" y="0"/>
<slot x="+0" y="+0"/>
<item class="panel" visibility="load_pulse_active 1000ms 5000ms && pulse 23000ms"></item>
<item class="panel" visibility="load_pulse_active 1000ms 560000ms && pulse 23000ms"></item>
</stack>
</group>
Thank you again
You pointed me to right way....
Final scrip looks like this:
<!--LOGO-->
<define class="panel">
<panel name="logo" visible="deck master is_audible">
<visual name="lights_top" visibility="yes">
<pos x="198" y="198"/>
<size width="246" height="190"/>
<off x="680" y="3270"/>
</visual>
</panel>
</define>
<!--LOGO EFFECTS-->
<group name="panel">
<stack fadein="2500ms" fadeout="2500ms">
<size width="246" height="190"/>
<pos x="0" y="0"/>
<slot x="+0" y="+0"/>
<item class="panel" visibility="load_pulse_active 1000ms 5000ms && pulse 23000ms"></item>
<item class="panel" visibility="load_pulse_active 1000ms 560000ms && pulse 23000ms"></item>
</stack>
</group>
Thank you again
geposted Wed 04 Nov 20 @ 1:33 pm