ActionScript 3.0 :: Control Loaded External Swf?

May 1, 2011

I can't understand what i did wrong.i loaded an external SWF, and i want to control it's current frames.

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Control Timeline Of Dynamically Loaded External SWF?

Feb 1, 2010

I have a swf that gets XML of a location of another swf and loads it. It then casts the loader's content as a movie clip and adds it to the stage. I have that working fine, but how can I control the timeline of the loaded swf?

View 4 Replies

ActionScript 2.0 :: Loaded External Sound Control Panel

Oct 12, 2004

I've got a main flash index file (fla_main.swf) which acts as a header/menu that concurrent pulls in external movies (ie, content pages) when sections are selected. There's no problem with that at all, but I do have a soundtrack control panel that is an external mov loaded in (soundctrl01.swf). There's 3 music tracks and options to stop, start, next track etc. All the usual stuff, vars loaded by "loop01.new Sound();" etc and played/stopped with the var instances. Anyway, the mov starts with loop01 playing and then allows the option to skip etc, working fine on publishing but when the fla_main loads it in theres no sound on any loops. Is this an issue with loading sound vars and external movies?

View 5 Replies

ActionScript 2.0 :: Control External Loaded Swf Sound (on Timeline) Properties?

Feb 13, 2009

Is it possible that we can control external loaded swf sound (on timeline) properties.

E.g:
duration
position
onComplete....etc?

View 0 Replies

ActionScript 3.0 :: Using Loader To Load An External Swf And Control The External Swf?

Nov 17, 2010

as3 is new for me, but i would like to write a script using loader to load an external swf, and control the external swf. But I find I can't control the swf, because there are no fixed instance name. here is my script.

[Code]...

View 3 Replies

ActionScript 3.0 :: External XML Works Loaded Offline Not Loaded Online?

Apr 15, 2009

Code:
var slideNo:Number;
slideNo = 0;
var xmlLoader:URLLoader = new URLLoader();
xmlLoader.addEventListener(Event.COMPLETE, showXML);

[code]....

View 3 Replies

ActionScript 2.0 :: Control An External SWF From From An External SWF

Jun 20, 2011

I usually wouldn't post on here as I like to find the answer myself, but after looking through Google literally all day I'm at the end of my tether, so I'm going to impose on you all and ask. This is the situation;

[Code]...

View 7 Replies

ActionScript 3.0 :: Control The Loaded Swf?

Dec 16, 2008

I want to load a swf into my main movie but it won't work as I want it to. Seperatly both files work fine and even the main movie works fine when loading the external swf. When loaded the external swf doesn't as it should and I get the error-message "TypeError: Error #1009: Cannot access a property or method of a null object reference. at port_ill_fla::MainTimeline/frame1()"...

Now, I know the problem have to be in the external swf since I've asked it to trace the result in the "for..var" method I use to create thumbs that works as buttons, but it only returns 0 when it should på at least 9.I don't know why it seems to be a problem as the main movie also are able load other external swf-files without any problems at all.theese files doesn't contain any actionscript triggering events in theese files, etc. Anyway, here is the code for the main movie:

var portUrl:URLRequest = new URLRequest();
var portLoader:Loader = new Loader();
function portCompl(Ev:Event):void{

[code]....

View 5 Replies

Control When A Swf Is Loaded From Cache And When Is Not?

May 26, 2009

We have a web app. built in flash that allows customers to upload images and text, customize the container in which these will be shown (a swf file) and then embed the code into thier website. There is also a sharing options that allows their users to display this container, together with the content, on their websites. (For e.g you can see the container as the Youtube player and the content as the videos the user chooses to show). The swf container uses an XML file to know what to display.

Now, I am not a flash developer, but a person who takes care of the project.We are currently working on the app and the swf and we still find bugs. Every time we fix sth, I am told to erase my cache to see the changes. My concern is that the client/users might not see the newer version that we make available, but the old one. We can't tell them to erase the cache and we can't afford to renounce using the cache since the images are big.I was told that, sometimes, the browser does not see that the current version is a new one and loads it from the cache (actually, it never detected that there is a newer version and I always had to erase the cache). How can we tell the browser "now, load the swf from cache" or "now, don't load the swf from cache".

View 1 Replies

ActionScript 2.0 :: How To Control Loaded Swf

Jul 9, 2009

I have problem with control external loaded swf.In the "main.swf" I have empty MovieClip "_root.container".[code]The last line do not working when I publish my swf and open HTML in browser,BUT on the local machine - working perfect.

View 5 Replies

ActionScript 2.0 :: Can't Control Loaded Swf

Sep 23, 2011

I'm trying to load a "shopping Cart" into my movie...it loads in and I can see it. But I can't control it at all[code]...

View 3 Replies

ActionScript 3.0 :: Unloading A Loaded External SWF With A Close Button On The External SWF To Unload?

Aug 15, 2011

[URL]I have: main.swf (a menu) and I have module.swf (content)If you navigate to Subsea Wellhead Systems/SS-15 BigBore II and click on that I have it load an external swf which covers most of the parent. So far so good. My problem is unloading the loaded 'Child' swf with the button provided on the loaded 'Child' swf.below is the code I used to load the file but I cant, for the life of me, find a way to unload it. 
 
var bigboreLoader:Loader = new Loader();btnbb2.addEventListener(MouseEvent.MOUSE_UP, bigborecontent);
function bigborecontent(event:MouseEvent):void{var bigboreRequest:URLRequest = new URLRequest("moduletemplate.swf"); bigboreLoader.load(bigboreRequest); stage.addChild(bigboreLoader);
 
I am certain it requires the Child to communicate with the parent somehow but I am at a loss. If I could get a bit of advice or a link to something deal with this, it would be a big help. I just need to have my links load my modules and the remove them when the close buttong is hit on the loaded swf. I promise I have done searches and I admit I have found asnwers but still they are not working. I found the code below:
 
Main FLA: 
function removeF() {
removeChild(bigboreLoader);
}

[code]....

View 10 Replies

Flash :: Loading / Unloading External SWF Using Buttons From Loaded External Files

Feb 23, 2011

I spent almost a week trying to figure out how to unload a currently loaded swf using its button and loading a new swf... I have three files, a main.fla, file1.fla and file2.fla. In my main.fla, I have a code which loads the other two files. If i will click the "unload" button in the file1.swf, I would like the main.fla to unload the file1.swf and load the other file, file2.swf. Here is the code to load the file1.swf:

[Code]....

View 1 Replies

ActionScript 3.0 :: Control SWF Loaded As A Child Of MC?

Aug 18, 2009

I've loaded an external SWF into an empty MC named "M1" using this[code]...

Now I want to control the timeline of the external SWF from the main movie timeline. How do I reference the child of the M1 object in AS3? example: M1.child.stop(); (doesn't work of course).

View 1 Replies

ActionScript 1/2 :: Control An Externally Loaded SWF?

Jul 26, 2009

I'm working on an flash movie and the interface is a small town (simiar to "doritos.com" and "comcasttown.com") if you reference both the doritos and comcast sites their little movie runs smoothly. I have several elements in the town. For example, one of the elements is an airplane hangar. When you rollover the hanger, I created a movie, the doors open and an airplane flies out of the hangar. I have several little movies throughout the interactive such as this. I created the hangar animation as a seperate swf file. In my main movie I created a button, on rollover it loads the hangar swf into an empty movieclip. When I publish and view the swf it plays slow and choppy. First, is it possible to write actionscript to load the external swf ,but it stops on the first frame of the animation and when you rollover it continues to play.To put it all in a nutshell, I want to create several buttons throughout the movie with loadmovie functions, once the swf movies are loaded I want them to stop on the first frame of the animation and when you rollover loaded swf movie I want it to continue to play the animation. Should actionscript be applied to the swf movies first and preloaded into the main movie. And what will make the movies run smoothly once it's published and viewed in a browser.Also if this makes a difference, I created the animations in after effects, exported them as FLVs imported them into flash and exported them as swf. Again it runs really slow and choppy

View 1 Replies

ActionScript 3.0 :: Slider To Control Loaded Swf?

Aug 25, 2009

i work in a project and i saw this problem when i want to control swf loaded file i made slider that will control loaded swf but the problem is i can't control sound and animation in the same time.i mean that when user click the slider and start drag it this slider must work as a player that control sound and the movie itself.But i can't control both at the same time when i take slider value and give it to the sound object like this lider.maximum=snd.length.snd.play(slider.value); / /it will play the sound but at the same time i must say gotoAndPlay(slider.value);

View 1 Replies

ActionScript 3.0 :: Control The Timeline Of A Loaded Swf?

Sep 13, 2010

I have two swf files. I use as3 on the main timeline of a.swf which successfully loads and inserts b.swf onto the stage (b.swf has a stop on fame 1):

[Code]...

My goal it to get the myButton click to play frame 2 of the recently loaded b.swf - but that's not happening.What am I doing wrong?

View 6 Replies

ActionScript 2.0 :: Sound Control In Loaded Swf?

Aug 8, 2009

My english is not too stron, but i'll try to explain my problem...I've got 2 swf's, first is main, second is loaded to he first(flv player) throught the command "loadMovie("player.swf", myPlayer)".In the second swf there are such code:

vol.onRelease = function() {
vol.bar._width = _root.myPlayer.vol._xmouse;
sound.setVolume(_root.myPlayer.vol._xmouse/vol._width * 100);

[code].....

View 2 Replies

ActionScript 3.0 :: Control Loaded Swf Like A Video?

Oct 26, 2009

I have looked everywhere to find out how to add a seekbar (so user can scrub and pause). It is so easy to skin a video, but I need the same type of controls for a swf. I see them on the web.

View 0 Replies

ActionScript 2.0 :: Two SWFs Loaded - Possible To Control One With Another

Nov 22, 2009

I m loading 2 .swf in one flash file and want to control one with another. The first contain small animation and other has play and stop button. Now I want to control that animation with these 2 button.
Files details:
test1.swf: It has the animation
test2.swf: It has the 2 buttons
test3.swf: It is the main file, in which I m loading the 2 files i.e. test1.swf and test2.swf

View 1 Replies

ActionScript 3.0 :: Control Main.swf Through Loaded.swf?

Jun 7, 2009

I'm trying to control my main.swf through a loaded .swf.

My goals are. 1. load the external swf into main.swf and have a movieclip in the external swf play. (the movie clip in the external swf should play without any code, however, when the external swf loads, the movie clip goes to the last frame of itself for some reason)

2. I have an "X" button on the loaded.swf itself that should dismiss the loaded swf and cause my navigation on my main.swf to reappear.

Here is my loader code in main.swf:

Code:
var _urlx:Loader = new Loader();
_urlx.load(new URLRequest("loadBlank.swf"));
var _url1:Loader = new Loader();

[Code]....

As of now, my navigation in main.swf does reappear when the "X" in the loaded.swf is clicked, but I need a way to unload the currently loaded swf when the "X" button is clicked..

I've tried remove child, checking to see if the loaded child is not null, but that didn't work either...

View 3 Replies

ActionScript 2.0 :: Flash8 Control A Mc Within A SWF Loaded With Loadclip?

Nov 21, 2009

I have the following code:

Code:
_root.TemplateListener = new Object();
_root.TemplateListener.onLoadComplete = function(target_mc:MovieClip):Void
{
trace (_root.mcBalloonBase.mcTemplate); // undefined[code]........

The loaded SWF 'bt_latex10.swf' have an instance named 'mcTemplate' in its stage. Since it is being loaded into a new empty movieclip called 'mcBalloonBase' that is at the stage of main movie, why it is returning undefined? How can I access the 'mcTemplate' after it be loaded?

View 2 Replies

ActionScript 2.0 :: Control A Loaded Movies Movieclips?

Nov 10, 2011

I have a base move that loads other movies into an empty clip [code]...

View 3 Replies

ActionScript 3.0 :: Get A Loaded SWF To Control Parent Timeline?

Aug 25, 2009

I have a swf that loads an external swf. I want the external swf, (the one that was just loaded), to interact with the timeline of the swf that just loaded it. I've been trying MovieClip(root). or MovieClip(parent). but they give me errors. How should I use as3 in the external swf so that it interacts correctly with the parent?

View 3 Replies

ActionScript 3.0 :: Control A Loaded Flash Movie?

Sep 29, 2009

I'm creating a web site with multiples swf files, the navigation is controlled via drop down menu, i have resolved the script for the drop down menu main buttons and i need to control the timeline of the movies loaded with the drop down menu main sub buttons to navigate into specific frames this is what i got:

stop();var myrequest:URLRequest=newURLRequest("HomeSonny.swf");var myloader:Loader=new Loadermyloader.load(myrequest);stage.addChild(myloader);//main buttonsmenu.nosotros.addEventListener(MouseEvent.CLICK,

[code].....

View 3 Replies

ActionScript 3.0 :: Control Main Timeline From Loaded Swf

Aug 24, 2010

I'm using a textfield for debug information.I'm loading an swf on the main timeline and I'm showing the status in the debug textfield.[code]I'm loading a png file in the loaded swf. , I'm trying to show the status of the png file as I showed the status of the swf.[code]I can't control the main swf from inside the loaded swf. Even gotoAndStop or calling a function doesn't work.Do I need to add something when I load the swf, saying it's a MovieClip or something?URL...

View 3 Replies

Professional :: Control Transparency Of Loaded Movie?

Jun 6, 2011

I have used a loader to play a swf, and I've managed to scale it like I want it - now I would like for it to fade in and out. How do i do that? Below is the as3 script I am using:

var loader:Loader=new Loader();loader.contentLoaderInfo.addEventListener(Event.COMPLETE,f);loader.load(new URLRequest("BldgBanner_r3an.swf"));addChild(loader); function f(e:Event):void{loader.scaleX=.80;loader.scaleY=.80;}

View 1 Replies

Javascript :: Control Loaded Flash File Using Php

Nov 17, 2009

is there a way to write a program in php or javascript that can load a flash file and interact with it? (click on buttons and such)

View 4 Replies

Actionscript 3 :: Control Loaded Swish Animation?

Jun 2, 2011

I'm developing an AS 3.0 wrapper to add some extra stuff that has to load some old and plain frame to frame SwishMax 3 animations and then be able to stop them,

[Code]...

The animation load works as expected but the movie.stop() doesn't. What is wrong?

View 2 Replies

ActionScript 2.0 :: LoadClip Loaded Swf Movies Need To Control Each Other

Oct 24, 2009

I have a main Movie that I'm using loadClip into empty HolderMc's. I am using listener inits and they are loading and working fine independently. the main movie loads swf A and B. I have a button in swf A needs to tell swf B (headHolderMc) to change:[code]I've tried _root.headHolderMc._alpha = 100; but nothing works.[code]

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved