X3 Photo Gallery Support Forums
maju-maju explain you that it is possible only by the function (in this case - SWFAddress). But this function must be aplied to language button.grimurnet wrote:Is this possible within imagevue? If yes how?
Of course, it's very easy to do, but first of all you have to know that movies playing in the background will slow down your gallery... So, I not recommend use movies and I think I will not add this function in future.grimurnet wrote:Philip do you know how to add flv file also to the lightoff feature, it would be nice to have that also to dimm the background
Thanks for the reply, I'm using the fla document you posted and have been playing around with it, I hope its ok for you if I use itphilip100 wrote:Of course, it's very easy to do, but first of all you have to know that movies playing in the background will slow down your gallery... So, I not recommend use movies and I think I will not add this function in future.grimurnet wrote:Philip do you know how to add flv file also to the lightoff feature, it would be nice to have that also to dimm the background
Other feature, which I planned (and is also very easy to do) is possibility to setup specific background for any gallery
if (SWFAddress.getValue().indexOf(".jpg") == -1)it's not code what you looking forgrimurnet wrote:Codeif (SWFAddress.getValue().indexOf(".jpg") == -1)
No you misunderstand me, what I'm talking about is now it only dimming the background when it is indexOF .jpg but I would also like to have it with other endings like flv for instancephilip100 wrote:it's not code what you looking forgrimurnet wrote:Codeif (SWFAddress.getValue().indexOf(".jpg") == -1)![]()
If you base on previous FLA file, then you should to edit "bckgr.square_mc" movieClip. Just delete shape inside and import some flv movie on stage. just try...
But it is not as simply as it looks like because even if the light is currently on - movie will still play and slowdown gallery,. Better solution is import FLV file "on the fly" (when needed), but for do this, you have to edit almost all code...
Yes, I did, sorrygrimurnet wrote: No you misunderstand me
I tried to do .jpg, flv but did not work, but by leaving only "." dims also when viewing thumbs. I would like to customize which extensions will be active. Is that not possible?philip100 wrote:Yes, I did, sorrygrimurnet wrote: No you misunderstand me![]()
Ok, so just delete "jpg" from this code (leave only ".") and should work with all extensions you wish
Strange, works well for me...grimurnet wrote: I tried to do .jpg, flv but did not work, but by leaving only "." dims also when viewing thumbs.
Possible:grimurnet wrote:I would like to customize which extensions will be active. Is that not possible?
SWFAddress.onChange = function(){
SWFAddress.getValue();
if ((SWFAddress.getValue().indexOf(".jpg") == -1) | (SWFAddress.getValue().indexOf(".flv") == -1)){
Light_On();
} else{
Light_Off();
}
}