ActionScript 2.0 :: [FMX] Load Movie Into Certain Coordinate?
Aug 7, 2007
I am loading a swf into my website using loadMovie on level 1 (which i am not sure is the best way) and it shows up in the upper left hand corner by default i guess. how do i give it the coordinates so that it appears where i want it to.
View 1 Replies
Similar Posts:
Mar 31, 2010
I have 3 square. smallest square s3 is inside s2. s2 is in side s1. each is 10px larger [code]how can I find the coordinate of child in its parent's coordinate system?
View 1 Replies
Jan 11, 2007
Is there a way to use an loadMovieNum code at the beginning of a frame and make it load at a specific x and y coordinate? When I use this code it doesn't work...
[AS]
loadMovieNum("bodyline.swf", 5);
this._x = 43.3;
this._y=130;
[/AS]
It changes the coordinates of the main background image, not the position of the movie it just loaded. I tried something like this....
[AS]
loadMovieNum("bodyline.swf", 5);
"bodyline.swf"._x = 43.3;
"bodyline.swf"._y=130;
[/AS]
View 3 Replies
May 20, 2010
i have this code on my instance named "orangecell", i would like this mc to be shown on (350, 250) is it possible?? stage size is
[Code].....
View 3 Replies
Jan 25, 2004
I want to make it so when I release one of my menu buttons AS does the follow: on(Release) If Movieclip1 is on frame 2, the movieclip1 go to and play frame 3
If Movieclip1 is on frame 2, the movieclip1 go to and play frame 3
Really the only problem I am having with this is i don't know if i can say multiple if then statment on one trigger and I also dont know how to say "is on frame..." properly in an if then statement.
View 2 Replies
Feb 17, 2007
I wanna list movie klips per 10 px along x coordinate
[Code]...
View 7 Replies
Jan 25, 2004
I want to make it so when I release one of my menu buttons AS does the follow:on(Release) If Movieclip1 is on frame 2, the movieclip1 go to and play frame 3If Movieclip1 is on frame 2, the movieclip1 go to and play frame 3Really the only problem I am having with this is i don't know if i can say multiple if then statment on one trigger and I also dont know how to say "is on frame..." properly in an if then statement
View 2 Replies
Jan 26, 2011
How do I find say the left edge of a movie clip?
View 2 Replies
May 14, 2004
I have a movie that I want to be dragged on the x coordinate on click, and if you drag it to the left it should play a different movie then when you drag it to the right. here is what I tried so far and of course it does not work.
[Code]....
View 1 Replies
Apr 11, 2007
I'm having a little difficulty getting to grips with the getBounds() Movie Clip function. I assumed the getbounds() method simply got the boundary coordinates for the movie Clip, that one could use to draw a rectangle. This is what I'm trying to do;I'm trying to get a movie clips coordinate bounds, and use the min and max values of x and y to draw rectangle around the object. Simple right? But in my case, I'm getting some unexpected results. I wonder does ther registration point of the object determine the coordinate values? Also are the coordinate values local to the clip instance or global to the stage?
[Code]...
View 5 Replies
Feb 25, 2004
i'm having this weird pb i don't understand, could someone help me? i'm driving crazy here..what i do is load a movie from a movie but the 2nd movie load a variable. when i test the 2nd movie, it loads its variable and displays it as wanted, but when i load it from the 1st movie, the 2nd movie loads but seem not to load anymore its variable..
[Code]...
View 11 Replies
Dec 3, 2009
I'm currently making an animation which will eventually exceed the 16,000 frame limit (don't ask haha), so, short of making two movies and having to just start up the next one, what is the code for loading a movie? I presume they need to be in the same directory? So basically all I want is on the last frame of the movie the code executes and the second movie file opens up and starts. I guess I'd want the current movie to close, too.
View 1 Replies
Feb 12, 2009
I Have 3 Movies:MAIN.SWF, contains loading movie actions for Nav.swf and Home.swf.NAV.SWF, contains navagation menu loaded on Level 2 in Main HOME.SWF, contains slideshow for home page loaded on Level 1 in Main In NAV.SWF, there is a MOVIE CLIP "graphmc", which contains a BUTTON "graphicbtn", When this button is clicked, I'd like the HOME.SWF (which is loaded into Main.swf on Level 1) to fade out and unload, and load and fade in Graphics.SWF in place of it.
View 6 Replies
Apr 2, 2009
I am pulling double duty with this question as it serves two purposes. I am developing a total flash controlled ad system for myself, but also need to use the same theory for a project for work.
Concept: I have a main movie (ad rotator system) that I then want to randomly load other swf's (individual ads) into this main swf after a set period of time. The random load I got set no problem. The problem I am having is to get it to move to the new Frame label of the main movie which then loads the smaller swfs. I am using the LoadMovie with nInterval time delay command in flash to load the movies.
[Code]....
View 5 Replies
Mar 28, 2010
I am making a flipping page book in flash and have had to create sections in different movies because it kept crashing when i tried to have all the pages in the same movie. I have 3 movies 'page flip4', 'pageflip4-2', and 'page flip 4-3' . I have used the code below to go (flip bacwards) from 'page flip4-2' to the frame label ''backflip'' in 'page flip4'..This works fine
Code:
on (press) {
loadMovieNum("page flip4.swf", 1);
}
[Code].....
View 0 Replies
Sep 20, 2009
Does someone have a working fla to illustrate how to load an external movie and zoom and pan to specific location of this movie (with easing)? With actionscript, not necessarily with a control for the user. I am looking for it for some time and unfortunately my programming abilities are not yet sufficient to find it out from scratch (but I am working on it).
View 2 Replies
May 28, 2002
I'm trying to do a demo with a fastforward button and a rewind button that will go to the next scene and previous scene...however, due to the format that my predecessor created used...I'm stuck with alot of scenes. The navbar (ff and rewind buttons) is in a .swf file called main. The actual demo is in demo3.swf. I created a loader scene to redirect to the correct scene (when ff and rewind are hit), but I'm not sure how to pass the variables needed from the main movie.
View 4 Replies
Oct 1, 2003
I have a movie. In it are some buttons and a dynamic text field. When I press the buttons is should load text from a database into the dynamic text field. If I run the movie by itself (ie. not by LoadMovie()-ing it into a different movie) the dynamic text field gets filled with text and all is well and good. However, when I use LoadMovie() to load this very same movie into my main movie, the buttons no longer work; the text field stays empty.
[Code]...
View 9 Replies
Aug 23, 2004
Let say A is the main movie and B will be a external swf file that i'm going to load into A movie. The problems is that, some actionscript(AS) in my B movie is not working anymore after i load it into A movie. I believe that the AS in my B movie is not working anymore because it is refer to A as the _root instead of B movie as _root. This can be a common problem. So, i wonder what should i change in the B movie AS in order to make it work in A movie.
View 3 Replies
Dec 30, 2005
i wanna change color of mc. I have buttom Test and Parametri. In Test is movie testing.swf in Parametri you can change color of movie clips. in file starttesting is make like this:
in layer1 is mcPlayer. In this mcPlayer are three layers, action, container and buttoms. in action layer is this code:
Code:
mcButtonParametri.onRelease = function():Void{
addWindow("mcPar");
}
[Code]....
How can I change color of mcOksid(testing.fla), but color will be change when i push a upload buttom? WHen i push reset buttom, the color will come back to default.
Second problem, in testing.fla in layer OKSID, i have mcOksid and mcOksid2. Know if i change color of mcOksid to blue, mcOksid2 has to be blue too.
View 1 Replies
Jun 24, 2008
What I'd like to do is have a checkbox, that when it is checked it loads a movie into an empty movie clip, and when it is unchecked, it loads a different movie into the empty movie clip.Also if possible I'd like to find a way to output to a variable whether the same checkbox is checked or not. And send the info from the variable in an email.
View 11 Replies
Jun 2, 2010
I am working with a project that has many scenes. Each scene has a movie clip attached to it. The first scene is simple...just a couple of buttons and that is it. My worry is that when I add all of the videos that correspond with each button and publish the SWF will be a huge file. THE QUESTION: Does flash load ALL scenes of a movie or does it load the first scene and then load the other scenes when the user needs to view them?
My ultimate goal is to just have the first scene load and then when the user clicks on the buttons contained within that scene that only upon release does the corresponding scene load. Maybe I am doing this completely wrong and should look at doing it another way.
View 6 Replies
May 26, 2009
i have a mapMC on the stage and 6 buttons. i need to be able to make the buttons move the mapMC to specified coordinates. the coordinates are set and will never change. i also need an easing from one location to the next. i guess i'll go ahead and throw in a bonus question for any of you aces out there. lets say location "A" is at x=200, y=400. i would like the mapMC to get there and scale 120%. so a button that gets pressed will go to its coordinates and scale acordingly. i can see that this could be script heavy, but for some reason not too difficult.
View 1 Replies
Jul 13, 2011
I have a movieclip with a drag function, and after each drag I want it to trace the x position. I tried the following code but it always outputs 0.
ActionScript Code:
sliderMC.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToPosition);
function fl_ClickToPosition(event:MouseEvent):void
[Code].....
View 5 Replies
Apr 20, 2009
to get the position of a movieClip in the x axis, we use: trace(movieClip.x);is there an alternative for ".x"???
View 3 Replies
Oct 8, 2005
first have a look at this: [URL] It loads "auto" coordinates from php file, and makes the "auto" move after timeinterval. It is needed tht it could load infinate coordinates, but i fail to do it. If u change setProperty(auto, _x, kord ) to setProperty(auto, _x, x2 ) , it works, but as u can see only with one coordinate.
View 9 Replies
Jun 3, 2011
I have an existing movie clip on the stage and i want to load a .swf into it. How?
View 9 Replies
May 23, 2009
I have 5 buttons to load 5 different flv movies. What I try to do is to remove the loaded movie and run the new movie when the new button being clicked. Also, I am wondering anybody who knows how to create a lightbox effect in flash. I want the screen to be grey when the movie is on.
View 5 Replies
Oct 17, 2005
trouble getting a movie to load in an empty movie clip. I am hoping I'm missing something simple.I have a button with the instance name SPS_btn on a layer I've called buttons.Below the button layer i've got a layer called movie clips that contains an emptymovie clip called mainStage_mc.I want to load a .swf into into mainStage_mc. both the buttons and their actions occur on the first frame.I have used this code but it not working.
on (release) {loadMovie (new002.swf, mainStage_mc);
I just get a blue area but the movie does not load. I can run the movie fun locally by clicking on new002.swf file.i also tried the behaviors panel, which produces this code but it also doesn't work:
on (release) {loadMovie ("new002.swf",mainStage_mc);
//load Movie Behavior
if(this.mainStage_mc == Number(this.mainStage_mc)){[code]........
for some reason it will load if i use loadMovieNum () but the registration point is in the top right corner and i don't want that.What's the best way to debug this?When i use test movie the output window dosen't show an error but something's wrong.how can I test if is a path problem? A problem with the loaded movie or a problem with something else? the movie new002.swf is 393KB. I tired making a smaller 2kbmovie using the code above and it wouldn't load either.
View 3 Replies
Nov 30, 2005
how they make this reverse play animation...
the one that [URL] did on their previous site design...
View 3 Replies