Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Load Movie Make It Go To Specific Location



I'd like to load a movie (separate file) into an existing file, but I'd like to make it go to a specific location within the loaded movie. Example: I have a home page file that has thumb nail images that I'd like to lnk to respective portfolio pieces from another file.Is this possible to do with ActionScript?



Adobe > ActionScript 1 and 2
Posted on: 10/25/2007 07:01:31 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Load Movie To A Specific Location
I know this is elementary stuff for you flash action script buffs out there.. but, if you're so good.. perhaps you can tell me how do I load movie to a specified location in the movie?

I have a box on the upper right corner of the movie and navigations on the left.. I want to just load a movie in the box ..

help.. if you can.

Load Movie To Specific Location
I'm using a load movie function to load an external swf file. The size of the external file is smaller than the mother file. So I want this file to load up in a specific spot in the flash movie, which is inside another instance in the mother flash file. How do I go about doing this??

As of know the load movie just pops up in the top left corner of the main movie.

Thanks
Caleb
http://www.e-simpson.net

How To Set A Specific Location For Load Movie?
Well, I've been working around with the load movie command stuff, so I can load external/other .swf files but what I can't figure out is how would I put it in a specific location? Not with the Level.

How Do You Load Movies/clip At A Specific Location In A Movie?
hello .
can someone tell me how to load a movie clip or movie at a specific location within a movie? any help is appreciated thanks you very much

Load Movie Make It Go To Specific Frame
I'd like to load frame 5 of an external swf into my main fla file (A.fla), by clicking a button that's inside of a movie clip in the A.fla file. Would anyone know what the code for this should be?

Thanks.

Load .swf To A Specific Location
Hi all. Having a problem loading an external .swf to a specific location in AS3.

This ia the code I am using currently.

"
function iGoogle(event:MouseEvent) {
trace("you clicked me");
var loadit = new Loader();
addChild(loadit);
loadit.load(new URLRequest("get_this_info.swf"));
}
igoogle_btn.addEventListener(MouseEvent.MOUSE_DOWN , iGoogle);
"
I have tried to create a blank movieclip (info_space) and load it into there but I think AS3 is a bit different and can't get it to work. (see below)

"
function iGoogle(event:MouseEvent) {
trace("you clicked me");
var loadit = new Loader();
addChild(loadit);
loadit.load(new URLRequest("get_this_info.swf", "info_space"));
}
igoogle_btn.addEventListener(MouseEvent.MOUSE_DOWN , iGoogle);
"

If anyone could help I would really appreciate it. Would love to know how to load to specific x/y coordinates too if you know how.

Thanks in advance!!!

Make A Url Link Load Flash Movie At A Specific Frame
is there a way to make a link open a flash site and goto a certain frame lable in it instead of it opening and running at frame 1? maybe something you can add the the url string?

thanks

Returning A Movie Clip To A Specific Location
Hello,

I have a movie which allows people to drag and drop multiple objects - one at a time - into a target area. The objects are all Movie Clips. If the user drops an object into the target area then it stays there, but if they drop it outside the target area then it automatically jumps back to its original (set) position outside the target area.

What I would prefer is if the Object could smoothly glide back to its original location rather than the sudden jump. It would be even better if it could set off really quickly and then gradually slow down to stop in its set position.

Any help or advice anyone can give would be greatly appreciated.

Thanks,
Dave

How Can I Move A Movie Clip To Specific Location?
I have a movie clip "map" and I want to move it to specific location here is my code:

map._xscale = 470;
map._yscale = 470;

map._x += -1350;
map._y = -230;

The code above does move the map to the localtion I want but no animation no movement it's just flick

I want to have the movieclip to "move with simple animation not just warp"

How do I do that?

Thank you

Choo

How To Load Specific Frame Of Specific Movie On Another Layer
Here's my setup:

Layer 0 = main movie

Layer 1 = navigation movie

Layer 2 = products.swf


Using a button located on Layer 1 (that contains navigation.swf), I need to load on Layer 2 the products.swf, and it needs to land on frame 54 of that movie.

I'm fairly illiterate r.e. ActionScript, so go gentle on me, please, LOL

Thanks!!!!!

Load Image In Specified Location In Movie
Perhaps a simple request. How do I open an image(jpeg or gif) from a URL upon opening of a HTML web page and place it in a specific location in my flash movie. Here's a glimpse into the twisted mind a hopeless dreamer. Picture this, a flash animated "TV"(basically a border for my image), with a blank screen, now when the user rollovers on this sed "TV" a side screen sides out from behind this "TV" and displays text that describe that image you just moused over. I lack in displaying the image and text. Here what I need...

Upon opening of HTML page: (underlined I need help with)

- Start flash displaying a "TV" like image box w/ a jpeg or gif
loaded on the "screen" of the "TV"

- When the user mouse overs the "TV" or image a side screen slides
out and displays text to describe the image in the "screen"
of the side screen and the side screen retracts when the
user mouses off the "TV"

- When the user mouseclicks on the "TV" it opens another page,
but not a new window.--i can do this normally but not sure
I can still when i learn to open that image in the "TV"

Any thoughts?

Load Movie Into Location .swf Files
Hiya,

I would really appreciate some help - I've set up a background menu system for my website which loads different sections saved as .swf files.

Buttons are:

On (Release)
Load Movie (vstory.swf)
End on

I've stored all swfs in the same folder as the background movie and am loading the files in level 1 (assuming that the background movie is level 0). My variables are set to "don't send".

I"m still in Flash 4 and am having huge problems getting this to work for me. It says it can do it in the help section.... but won't work for me.

Could it be to do with the fact that my background menu system is an "Instance Movie" within another "Instance Movie" in this background swf?

Thanks sooooo much for your help. I'm pulling my hair out on this one!!

THANKYOU!!! :-)

Lydia :-)

Button Needs To Load Movie But Also Specify Controller Location
I'm tryin to reduce the file size of my web site and as such need to put most of my info on seperate swf's usin loadmovie to load them in. The buttons presently have this code:

on (release) {
_root.gotoAndStop(85);

_root.controller1.targXpos2=1650;
}

on(rollOver){
_root.controller1.targXpos=182;

}

with the controller values being different for each button.

My question is is it possible to open the swf then direct the controller?

e.g

on (release) {

loadmovie{content.swf,1}

// (would not need this code) _root.gotoAndStop(85);

_root.controller1.targXpos2=1650;
}

on(rollOver){
_root.controller1.targXpos=182;

}

Can The Load Movie Action Be Used To Load A Specific Frame Of A Movie?
can the load movie action be used to load a specific frame in a movie?

Make A Loaded Movie Go Towards An Specific Scene
I´ve got a loaded Movie in level 2 and I´d like to make this movie jump to the 75th frame in it´s 4th scene. I´ve tried with:

tellTarget ("_level2") {
gotoAndPlay ("Escena 4", 75);
}

but this doesn´t seem to work.
Any ideas?. Thanks a lot

How Do You Set Specific Location Of A Imported MC?
how do you import a swf and set the X and Y properties? how would you write that?

thanx in advance.

ReDD

Download To Specific Location
If you read my last thread about a voice controlled site, then you already know my problem. I need to know how to make certain files go to a specific place on a visitor computer. I need them to go to a certain file in their liberary automatically after they hit a link to download the files. Just like when you download an upgrade or software from the net.

Do I need to use an Installer Maker Application, like the one made by StuffIt? Or do I need to use a powerful script like Perl or XML?
Please help!!!!!!

Thanks fellow Flashers!

Place Swf At Specific Location
Flash Version : Flash MX
ActionScript : 2.0(I think?)

Hi everyone,

I have a main.swf and I want to load another swf inside main.swf.
I have some problem to place my second swf at the right place.
By default it's aling top of my main.swf.
I would like to play with _x and _y.

Do I have to do it in main.swf or in my second swf?

What is the way to do it

Thanks

Loading .jpg Specific Location
just wondering if there was a way to load a .jpg image file in a specific location of my movie, and if so is there a way to attach a preloader to it ?

Loading From Specific Location
I have looked for this (so you don't think I was lazy) and only found like 2 articles on it. And they weren't really answered. Plus this is a really stupid question. I have multple files and folders (about 100) and would like to organzie them nicely instead of one big happy family. Only problem is that when I call the files from a specific folder(easy ), it never works! It only works if I call it directly from the website(pain ). Can someone please explain this.
Thanks always!!!!!



ActionScript Code:
on (release) {
     getURL"http://www.messenjahmedia.com/temp/uyc/interact
/interact.htm","_blank");
}


I's like to do something like this...


ActionScript Code:
on (release) {
    loadVariables("text/matt_w.txt");
}

How Do I Make A Specific Frame Of A Movie Clip Display?
I have a project for which I'm making subtitles for the narration, with the ability for the user to turn them on or off.
I made the subtitles, covered them with a rectangle the same color as the background, and made a button which toggles between "SHOW TITLES" and "HIDE TITLES" -- when "SHOW TITLES" is selected the rectangle becomes invisible so you can see the titles, when "HIDE TITLES" is selected the rectangle hides the titles. The default is for the rectangle to be visible and the titles, therefore, hidden. (A script in the first frame sets the visibility of the rectangle to false)

The problem is that the project is organized into 8 separate scenes, and so when it goes to a new scene, it was reverting to the default. So, I had the button create a variable, and then put a new script in the first frame of each new scene that checks for that variable and shows or hides the titles as required. So now the titles stay visible or invisible, but when it goes to a new scene the wrong button is displayed (the "SHOW" and "HIDE" buttons are in a 2-frame movie clip)
How do I make the proper button show up?
There must be a script to have the movie clip display a specific frame, but I don't know what it is.

Thank you!

Load Specific Movie
Hello,
I have a website with multiple html pages. Is there a way to use "geturl" to not only load a different html page, but to load a specific swf inside of it?

Any help is appreciated.

Load Movie (day Specific)
I want to load a movie clip into a flash file that is day specific. Actually, since it is for a nightclub..... I really don't want the next days file to switch until 2 AM. So I want the Thursday night file to appear on thursday at 2 am and stay until Friday at 2 am....and so on.......

Of course if I can just make it work until midnight....I can live with that.

I'm sure there are older posts with this info, but I can' t seem to find them. Any answers or just being pointed in the right direction would be great.

Thanks alot

TSL816

Inserting Text At Specific Location
Does anyone know how to insert text in a textbox based on cursor location information? For example you type in some text in a flash movie text box, then you click somewhere in the box and click on a button. The button insterts some word pre-set where the user positioned the cursor. Is this even possible?

How To Stop Movieclip On Specific Location
Hi everyone,

I have attached mainmovie1.fla please check it and reply me.

there is down movieclip which i want to stop on specific location like up movieclip. up movieclip is working ok.

there is on marquee movieclip also want to work like marquee tag in HTML.

Please help me.

thanx in advance.

waiting for reply.

Attach External Swf In Specific Location
hi all... i need some help on how to load an external swf movie in a specific X and Y position.... thanks

Streaming From A Specific Location Within A File
Hi everybody,

I'm a newbie here so please be patient if this is a trivial question.
What I need to know is the following: can I start streaming a video/audio file from a specific location (like a timestamp) with Flash Media Server?
More precisely, the idea is this: I want Flash Media Server to establish a connection with another server (remote server) to receive some information like a file name and a time stamp. After this I want Flash Media Server to start streaming (to a simple client, like always) that file from that specific moment indicated in the "packet" it received from the other server. Can this be done? Is it hard?

Thank you so much,
Francesco.

Loading An External .swf In Specific Location
How can I load a external .swf into a specific location and set size on my main movie? I currently am using the actionscript, loadMovieNum("intro3.swf", 1);

My problem is that I am taking an intro that I don't have the .fla for and its just loading it randomly on the main timeline. So whats happening is the intro is taking up 100% of the main movie timeline and thus interfering with the rest of the content.


I would like to somew how load it in to a set mc size. Any help or suggestions is really appreciated.

Duplicating Mcs And Moving To A Specific Location
hi in this fla i have a square duplicating it self going to the right when it reaaches a certain value it goes down one "line" the problem is when it goes down it won't duplicate and move the _x value.. or something like that ...check the fla

any help really really appriciated!!
thanks ahead, z00m

How Do I Make A Movie Play At The Click Of A Button(more Specific Inside)
I'm going to have buttons on the left of the stage and theres a lyrics button,when I push that button I want a small scrollable box with lyrics inside to pop up on the right, how do I do this?

I Need To Make A Movie Continue Playing When A Specific Value Is Put In A Text Field
Hello board,

I'm using Flash 8 Professional and publishing for Flash player 7 (movie will run within a Director MX 2004 Projector).

Anyway, the movie that I'm doing is a simulation of a process for a pharmaceutical company. Employees need to scan the barcodes in a form and that part is done. However, the next step requires them to enter a value in a text field. I put a stop action on the specific frame, then I dragged the text field component to where I need it, but how do I tell it to send a play(); action to the timeline once a specific value is entered and enter is pressed? The value is 389518.R02 if that helps.

Action Script To Make A Specific Movie Clip Low Quality
I need certain a movie clip/clips to run in low quality, but I dont want the rest of the animation to be in low quality. Is it even possible

Laod Movie, Make It Go To A Specific Frame In Separate File
I have a movie clip within file A.fla. This movie has buttons. Each of the buttons should go to their respective frame within a movie clip from a separate file. Does anyone out there know what the code for this is? I've been going nuts trying to figure this one out.

Thanks.

Load Movie On Specific _x & _y Coordinates
How do I load a movie on specific _x & _y coordinates?

Other than making the loading movie the same size than the _root movie.

any ideas?

How Do I Load Movie To A Specific Coordinate?
I need to load a movie into a specific coordinate in my main movie. I understand the loadmovie action but can't figure out how/where to add the x and y coordinates.

Thank you.

How To Load A Movie To Specific Place?
Hello - I am a Flash 5 user. What I'm trying to do is to load a separate Menu movie into my 'home' movie. The Menu movie is about 80 wide by 225 long. I want it to load into the upper right corner of the Home movie, which is 550 pix long and 390 wide. For various reasons I want to load it there in the current dimensions, rather than expanding the Menu movie to 550 px and moving the Menu MC to its right corner. Make sense? Is there anyway to load a movie into another and specify the coordinates/place you want it to load to in the lower movie? Thanks for any help -
jon cook

Can We Load A Movie In A Specific Position
I want to laod a movie in a specific position using some scripting. I don't have fla.

Is there any method

Thanks and Regards
Deepak Lohumi

Load Specific Movie Frame
Hi!
I'm loading a "foto.swf" movie into target "zoom". This is working fine. ...but how can I tell it to load frame 54 of that same movie into "zoom"? otherwise it always loads the movie from the beginning, and I need it to show me frame 54, and not frame 1.

????????

Load Movie - Go To Specific Frame
on (release) {
unloadMovieNum(0);
loadMovieNum("dst.swf", 0);
}


How can I get it so that I load a movie and it goes to a specific frame (ie label start)

Thanks


Toby

Load Specific Scene In Movie
Hey,
I was wondering if you can use the loadMovie action to load a specific scene in the movie you are loading?

Thanks
Jay

Load A Movie In A Specific Frame Different To First
PLEASE HELP - load movie and go to frame..
After not-sleeping 5 days I still can't figure out why this doesn't work..

loadMovieNum("oblikovanje.swf", 0);
_root.gotoAndPlay(2);

What I'm trying to do is just load another .swf from this (empty) swf with only this actionscript inside. It opens "oblikovanje.swf" but it never goses to frame 2. As I have put an empty frame and stop(); in the first frame of oblikovanje.swf it shows only blank page. I need this stop action becouse I preload all my swf-s earlyer.

Load Movie Into A Specific X Y Position
How's it going everyone? I need to know how to load a movie into my main SWF file at a certain X Y position.

Here's my problem:

I have my main template file & I need to load a slideshow into it at a certain X Y position. My "temporary" solution is to simply make the slideshow the same size as the main file & load it via getmovie. Like I said, that's great for a "temporary" solution. But I will soon be using SWISHpix for all of my slideshows. So, I need to know how to load my slideshow into a certain X Y position. I have tried to create an empty movieclip and just load the movie into that, but to no avail.

Any ideas?

[F8] How To Load Movie To Specific Keyframe?
Hey there, good people of the Flash-world!

I need some help with finding the right actionscript... (I'm trying the newbies-section as well)
Basically, I have assigned a LoadMovie, level 0 -action to a button in my swf. However I want the new .swf to start at frame 27, not 0. I feel that there must be a simple way of doing this?

I have tried:
on(Press){
LoadMovieNum("people.swf",0)
_level0.gotoAndPlay(27)
}
But it doesn't work.


I've been searching and searching, but maybe anyone of you brilliant people have a tip for me? It would be much appreciated!

How To Load Movie To Specific Scene?
I'm using Flash 5.

I would like to load a swf from another swf, but have it go directly to a specifc scene and frame.


Does anyone know how I can do this?


Thanks.

How Load Movie In Specific Frame
Hi
Help me please
Iwant load movie by another movie In specific Frame
EX
movie1
putton
On Realease
Load Movie2 Level 0 & GoToAndStop frame 30(movie2)

I mean load movie2 in movie1 in sam level0 or end movie1 and load movie2 in specific frame in same level0

How how write thise Code
please help me anyone

Load Movie In A Specific Frame
Noobie here....Simple but I don't get it

I am loading an external movie and I want it to load an specific frame (start) of that movie right after loading.

I am using this

on (release) {
loadMovieNum("details.swf", 0);
}

I read about the _level so I added

on (release) {
loadMovieNum("revo details.swf", 0);
_level1.gotoAndPlay("start");
}

But the movie keeps on loading on the first frame, not on the "start" frame

Help here...

Regards!

Load Movie And Go To A Specific Frame
I'm newbie and stuck.

I'm trying to build a full flash site. I have movieA (main movie) that loads the rest of the movies (movieB, movieC, movieD...). MovieA is the menu. When I want to "come back" from this movies to the main movie, I need to move the header to a specific frame of movieA, diferent depending on the movie I have previously loaded:

movieA: loadmovie (movieB, movieC, movieD...)

from movieB: loadmovie movie A (frame2)
from movieC: loadmovie movie A (frame3)
from movieD: loadmovie movie A (frame4)

Is it possible or when you load a movie you can only start playing in frame 1? Any hint? Thank you

Load A Movie To A SPECIFIC Frame
Hi all... im new in this forum and i hope to enjoy it.
Im having the following problem. Im trying to load a movie.swf, but i want this movie.swf to be loaded to a specific frame. I dont want it to load and start at the frame 1, i want it to be loaded and start at the framr 5.

Can u help me?

Thanks.

Copyright © 2005-08 www.BigResource.com, All rights reserved