PDA

View Full Version : openfullscreen.swf customization...


bloupi
02-17-2008, 06:32 PM
Hi all

Is there a way to customize openfullscreen.swf ? or a workaround not to get this "open" orange image ?

thanks for your help

Philippe

bloupi
02-17-2008, 07:43 PM
sorry for the mistake... I've found the openfullscreen.fla.

thanks

Philippe

Aifos
02-18-2008, 05:39 PM
or you can use hotspot plug in...

write this lines between <hotspots></hotspots>:

<spot id="fullscreen" url="blabla/blablabla.png" static="1" align="TR" salign="TR"
onclick="fullscreen(-)" />

violб!!!! you have you own fullscreen button... not using any other plug in...

if you want two diferent images, one for enter and other for exit fullscreen, you should do it this way:

<hotspots>
<gobal
onEnterFullscreen="enter.visible=0;exit.visible=1;"
onExitFullscreen="enter.visible=1;exit.visible=0;"
>

<spot id="enter" url="files/enter.png"
static="1" align="TR" salign="TR"
onClick="fullscreen(-)"
onLoad="alpha=0;alpha=1,250"
/>

<spot id="exit" url="files/exit.png"
static="1" align="TR" salign="TR"
onClick="fullscreen(-)"
/>

</global>
</hotspots>

bye!!!

bloupi
02-20-2008, 05:18 PM
Aifos,

Many thanks for your help ! It works fine now !

regards

Philippe