Ask a Question related to Macromedia Flash, Design and Development.
-
Alejandro Montiel #1
Selecting different URLs during pauses in animation. Please help!
Hello all,
This is my first message to this group, and I apologize if this question
has been asked before, but so far I have not been able to resolve this
problem. I googled for something similar and found some hints but I
still have the following situation:
I have an animation that shows several different images and I want to
make it so that right when the images change, the animation will pause
and allow the user to click on the image and be sent to the correspoding
page for that particular part of the animation.
The part to make the animation pause works fine, but I am only able to
click the very first time when the animation pauses. After the animation
continues to the next pause, I am no longer able to click on the image.
This is the script I am using (the same script on every pause frame):
stop();
time0 = getTimer();
delaytime = 5000;
// 5000 represents 5 seconds //
this.onEnterFrame = function() {
time1 = getTimer();
if (time0 + delaytime > time1) {
_root.stop();
} else {
_root.play();
delete this.onEnterFrame;
}
};
//Goto Webpage Behavior
this.onRelease = function () {
getURL("http://www.macromedia.com/","_self");
delete this.onRelease;
};
//End Behavior
As I said, the pause is not a problem at all, but the clicking only
works on the first pause. I tried giving each of the pausing frames a
distinctive name and using the name on the script instead of using
"this" but it did not work.
Please note that I am a newbie, so please excuse me if this is too
simple a question.
Any help is greatly appreciated
Alex
Alejandro Montiel Guest
-
CF 7.0.2 pauses on reboot of Red Hat
I'm attempting to install ColdFusion 7.0.2 (this version is missing from the contact form, so I had to select 7.0.1 on the form) on a clean install... -
Video pauses not best quality HELP!
Ok, really struglling with this problem. I am not the developer but rather manage the web projects that we create.... -
dynamic URLS convert to static URLS for search engines
We use ASP.net and all our pages are dynamically created and search engines such as Google does not like dynamically created pages to index. What is... -
Quicktime movie pauses when behind anything else
The files work fine (and keep playing behind anything else) in a standalone player, but within the projector they stop. I need them to continue... -
keyframe animation detected on a resource that will marge -this animation willbe lost
hi, sorry for the question but need a quick fix for it. i am exporting from max 5, a quick animation of a shark tail moving but on export i am...



Reply With Quote

