Hello All!,
So I have 13+ minute “movie” broke down into chapters, 9 all together. As of right now each chapter is in its own separate movie file. I want the option of being able to turn on and off different chapters to play in sequence through the single video component. I have the file setup...
here are the different codes i have tried....
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
if (this._currentframe == 1) {
this.nextFrame();
}
} else if (this._currentframe == 2) {
this.prevFrame();
} else {...
hey Kenneth,
inside the mc/btn i have a stop on frame 2 that makes my letters bold wich is a rollOver action and that works fine but now i have a short animation playing after frame 2 (frames 3-20) im trying to create a code that on Release gotoAndPlay's frame 3 but its not playing the...
so what is the actual problem? do you need examples/tutorials?
Try:
http://www.flashkit.com/movies/Animations/Anime/Animations/flashmo_-Min_Thu-11950/index.php
here is a code i have that works if i create the movieclip button on the main scene but do to my project the movieclip button is ebedded in 5 different movie clips (dont ask not my project just trying to work with what i got). the reason why i am not using a button is because i have a pan and...
I have a movie clip that acts like a button and inside the movie clip I have 2 frames. The code I have given the mc is:
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.nextFrame();
} else {
this.prevFrame();
}
}
That all works fine. The problem comes...
MX, 04 is the version I am using, sry used to flashkits forum rules. I am using AS 2.0. And yes exactly like anchor points. I also found an equivalent HREF tutorial using asfunction but have yet to figure out a way to utilize it.
Is there a way I can tell a button to go to a certain area on a web page? I am trying to mimic a web page that has a list of lets say questions and each question has a long answer about a paragraph. I want a list of the questions at the top to act like individual buttons that on release will...
try this....
mouse_x = -_xmouse;
setProperty(_root.follow, _x, mouse_x+((getProperty(_root.theMC, _x)-mouse_x)/1.15));
put this on your main timeline frame, 1
open your AI file. go to file>export>choos.swf file. you have the option of saving all ai layers to swf frames (which means every AI layer turns into a flash frame, great for editing) all file to swf file (self explanitory)
then all layers to swf file (again self explanitory) all files are...
figured it out, just apply this to the frame that you want to pause at.
stop();
tempInt = setInterval(function(){clearInterval(tempInt);play();}, 3000);
//note 3000=3 secs.//
Hello all,
i have some .flv's that i want to play using Flash's MediaPlayback component inside of director. Personal preference i like the look and function better then Director's, plus i like the hide feature that it offers. Director dosen't recognize the MediaPlayback component is there a way...
Hello all,
i have a movie clip that i can zoom and pan, but i am trying to make a reset button that goes to my default position of the mc. I'm thinking about telling the button to place the mc at (0,0) cordinates. Am i on the right track? i am using vr. MX, 04.
Thanks for any help!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.