lengstoRf
02-28-2005, 08:28 PM
alright...
...i'm building a website in which i'm externally loading two separate .swfs, and they both work, but not optimally. the problem i'm facing is this: one of the externally loading .swfs is a streaming audio file, and it doesn't load properly if the other .swf is loaded...
...so, what i've done to correct this is to put the load command for the second .swf (non-streaming) on the button that pulls it up. this works to correct the streaming issue, but now whenever i click the button, it starts the loading of the second .swf from scratch...
...so, i need a conditional statement to fix this...
...i know this is wrong, but something to this effect...
on(release){
if("photos.swf" loaded = false){
_parent.follower.photos.loadMovie("photos.swf");
_parent.follower.endX = -2325;
}
else{
_parent.follower.endX = -2325;
}
}
...thank you for any help...
...i'm building a website in which i'm externally loading two separate .swfs, and they both work, but not optimally. the problem i'm facing is this: one of the externally loading .swfs is a streaming audio file, and it doesn't load properly if the other .swf is loaded...
...so, what i've done to correct this is to put the load command for the second .swf (non-streaming) on the button that pulls it up. this works to correct the streaming issue, but now whenever i click the button, it starts the loading of the second .swf from scratch...
...so, i need a conditional statement to fix this...
...i know this is wrong, but something to this effect...
on(release){
if("photos.swf" loaded = false){
_parent.follower.photos.loadMovie("photos.swf");
_parent.follower.endX = -2325;
}
else{
_parent.follower.endX = -2325;
}
}
...thank you for any help...