nice
Posted 2 months ago
Image viewers:
Utilites:
Animations:
It`s 1 URL for all pictures. Could you customize your flash to have 1 URL by picture ? Thanks
Posted 2 months ago
Hello, drfisher.
Thank’s for your products. i am enjoing it. But one problem – is image rotation. CAn you help me to change image rotation to random?
Thank’s for your help.
Posted 2 months ago
wideprofile, open FLA file, press F9, remove old ‘showNext’-function and copy/paste this ‘showNext’-function:
function showNext():Void {
myPause = (_global.myDelay + animTime) * 1000;
picCount = Math.floor(Math.random()*imgLoader.bmp_array.length);
img_mc.attachBitmap(imgLoader.bmp_array[picCount],0);
_global.slShow.link_mc.setURL(_global.slShow.links_ar[picCount]);
_global.slShow.changePic.intervalID = setInterval(_global.slShow.changePic, myPause);
}
Posted 2 months ago
Hi,
I have bought your file which I love, thank you. BUT is there anyway that I can change the gap between the images to a smaller time? Ideally I don’t want their to be a blank space at all between images. So it merges from one image to another so if I could reduce that time it would be great?
Thanks
Kt
Posted 2 months ago
kjmedia, open FLA file and press F9 to open Actions panel. Set the ‘animTime’ at the 20 line as you wish (use seconds).
Posted 2 months ago
Can this be used as is without publishing / building ? I just need to be able to rotate a few images with this that I will specify in the XML file. Do you have a sample file that shows this? The help.txt file doesn’t go into any detail other than how to publish this via Flash 8 or CS3 . Thanks.
Posted 2 months ago
You can use this as is. Just edit XML file and edit ‘width’ and ‘height’ values in ‘object’ and ‘embed’ tags in HTML . XML file must be in a same folder with SWF movie.
Posted 2 months ago
Setting height / width as per the markup below does not seem to have any effect for me. Any ideas?
<OBJECT classid=”clsid
27CDB6E-AE6D-11cf-96B8-444553540000”
codebase=”http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0”
WIDTH =”747” HEIGHT =”266” id=”myMovieName”>
<EMBED src=”overlight_slideshow.swf” quality=high bgcolor=#000000 WIDTH =”747” HEIGHT =”266”
NAME =”myMovieName” ALIGN =”” TYPE =”application/x-shockwave-flash”
PLUGINSPAGE =”http://www.macromedia.com/go/getflashplayer”>
<object classid="clsidPosted about 1 month ago27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="747" height="266" id="myMovieName" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="URL_of_the_SWF_file" /> <param name="quality" value="high" /> <param name="bgcolor" value="#000000" /> <embed src="URL_of_the_SWF_file" quality="high" bgcolor="#000000" width="747" height="266" name="myMovieName" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>
samirtuladhar, replace the ‘showNext’ function at the first frame in the FLA -file with this
function showNext():Void {
var myPause:Number;
myPause = (_global.myDelay + animTime) * 1000;
picCount++;
img_mc.attachBitmap(imgLoader.bmp_array[picCount],0);
_global.slShow.link_mc.setURL(_global.slShow.links_ar[picCount]);
if (picCount != (imgLoader.bmp_array.length - 1)) {
_global.slShow.changePic.intervalID = setInterval(_global.slShow.changePic, myPause);
}
}
Posted about 1 month ago