ActionScript 3.0 :: Flash - Main Swf To Loaded Swf Communication?

Aug 12, 2011

I'm upgrading some elearning code to AS3 and having trouble with a "Jump Menu" that loads at 3 in the main swf. The idea is that users can jump to any frame in the module randomly.Here is the main swf code:

//Main swf shell
var menuLoader:Loader = new Loader();
menuLoader.contentLoaderInfo.addEventListener(Even t.INIT, doneLoading3);

[code].....

View 4 Replies


Similar Posts:


ActionScript 3.0 :: Communication Between Main And Externally Loaded SWF

Aug 30, 2010

I basically need to communicate to an externally loaded swf and send info back to main swf. Below is some sample code of what I am trying to achieve:

In the main swf:
var imgLoader:Loader = new Loader();
imgLoader.load(new URLRequest("external.swf"));
addChild(imgLoader);
var MC:MovieClip = imgLoader.content as MovieClip;
//var MC = MovieClip(imgLoader.content);
trace(MC)
MC.btn1.visible=false;

In the external swf:
btn1.addEventListener(MouseEvent.CLICK,externalCli ck1);
btn2.addEventListener(MouseEvent.CLICK,externalCli ck2);
function externalClick1(e:MouseEvent):void {
trace("external Click 1");
//main swf goto nextFrame;
} function externalClick2(e:MouseEvent):void {
trace("external Click 2");
// main swf goto PrevFrame;
}

The trace I have setup in the main swf, trace(MC) returns a null value.

View 2 Replies

ActionScript 3.0 :: CS4 - Communication Between Loaded External Swf And Main Timeline?

Feb 4, 2010

I'm having issues with an animation and need to get it functioning properly. I've posted two example/demo files to illustrate desired functionality.The main timeline (testMain.swf) consists of a loader, section/slide one content, and a button (bttnClick) set to load an external swf (external.swf).

external.swf contains two additional sections/slides and two 'next' buttons (bttnEnter with 'bNextOne' & 'bNextTwo' instance names) to navigate. When the second 'next' button (bNextTwo) is clicked I need the loaded external swf to fade out revealing the original main timeline (testMain.swf) and returning/stopping playhead at the 'slideOne' frame label. Does the external swf need to be unloaded even though users will most likely go back to it? What�s the best way to handle this?

If you could assist with the external swf fadeout to main timeline, the return to 'slideOne' frame label, and insight as far as the best way to return to the external swf.

View 2 Replies

Flex :: Components And Main.mxml Communication?

Mar 7, 2012

I'm building a Flex 4 Application in AIR.I've made a main.mxml and a login.mxml component. It all works but i can't communicate between my two mxmls (MAIN and COMPONENT)The login works but then it has to send a event tot the main that i can change the state in the main.Here is my cropped code.

login.mxml
//resulthandler if login is succesfull
loginUserResult.addEventListener(ResultEvent.RESULT, loginUserResultHandler);

[code].....

View 3 Replies

ActionScript 3.0 :: Communication Between Loaded MovieClips

Dec 9, 2010

My main File loads an external swf in a movieClip.Once loaded, it needs to know what language is set by the main movie (a variable on the root of the main movie)What is the location of the main movie, seen from the movie clip I just loaded?[code]

View 5 Replies

ActionScript 3.0 :: Communication With External Swf Loaded Into Mc?

Sep 6, 2011

wf which loads an swf into a movieclip called content_mc here is the code located in the blank swf
 
startLoad ("startPage")
var loadedSWF:Loader
var content_mc:MovieClip=new MovieClip();
function startLoad (SWFname:String){
loadedSWF = new Loader ();

[Code]...

View 12 Replies

ActionScript 3.0 :: Communication Between Loaded And Container SWF

Jul 18, 2011

I need to communicate from loaded swf to the container swf in AS 3.0. This is the code for document class of loaded swf followed by code for source swf document class. How I can call the method xyz() from the external swf?

ActionScript Code:
package com.scottgmorgan {
import flash.display.Sprite;
public class ExternalMovie extends Sprite {
public function ExternalMovie():void {
Code] .....

View 1 Replies

ActionScript 3.0 :: Communication From Externally Loaded SWF To Parent

Mar 19, 2009

In short, this is what im trying to do: Communicate from externally loaded swf to main/parent .swf. On my main .swf I have this code on my main timeline to import and center an external .swf:

Code:
import flash.display.*;
import flash.net.URLRequest;
//turn off stage auto resizing
stage.scaleMode=StageScaleMode.NO_SCALE;
stage.align=StageAlign.TOP_LEFT;
[Code] .....

View 1 Replies

ActionScript 3.0 :: Communication With Loaded SWFs, Application Development?

Apr 7, 2009

I am currently in the process of developing an application with Flash/AS3. I have worked a lot with AS3 (FlashDevelop) before so I am rather familiar with it, however, since I won't be the one designing (nor the only one for that matter), and because it isn't a one day job, it is important to be able to get some structure in the project. So that we can have a "core" of AS3 that loads SWF-files and then does the interaction with the loaded SWFs, like providing information for fields and submitting the data, etc.
 
However, I've searched and I can't find any good up-to-date information on how to actually take care of the communication with the loaded SWFs. I found a lot of tutorials on it, but every single one ended up simply not working or being "depreciated" by the compiler because they were built for earlier versions of AS2/AS3 or Flash. (I found this promishing guide: [URL].. but that too ended up being depreciated) The only working piece of information I've found is LocalConnection, but it is really not well-suited for this, and from what I can tell a very complicated way to go about things.
 
So my question is how does one go about implementing the communication between AS3 and the loaded SWFs?
Being able to dispatch events or call functions both ways is basically what I think is necessary.Or perhaps there are better ways to go about application development with Flash?

View 3 Replies

Flash - Reset Main Class When First Loaded The Package

May 12, 2011

[Code]...

Is there an easy way to reset all of my variables to the way they were when I first loaded the package so that I don't have to go through all of the variables and reset them manually?

View 2 Replies

AS3 :: Flash - Accessing And Editing Loaded Swf Movieclip From Main Movie?

Jun 23, 2010

import com.hydrotik.queueloader.*;
.................
public class Main extends MovieClip
{

[code].....

I need to get access to loaded STRATTransitions.swf from the main movie and remove some text from it. There is no source code available for the swf.

View 1 Replies

Flash - Communication Between As2 And As3

Mar 16, 2010

I have this code under a button in 'as2.swf'

[code]...

and this swf is being loaded into as3 container called 'main.swf', but when i press it nothing happens and the file does not unload itself.

View 1 Replies

ActionScript 2.0 :: Lock FPS Of Loaded SWF In Main?

Jun 11, 2009

I am using loadmovie to load in swf in my main swf.

The FPS of my main timeline is : 20FPS

The SWF I am loading is : 8 FPS

When i load it in it is automatically changed to 20 FPS.

Is there anyway to lock FPS?

View 2 Replies

ActionScript 3.0 ::loaded A Swf Into Main Swf File

Nov 17, 2009

i want to loaded a swf into my main swf file. How do I place it on the main timeline in the main swf. To be exact I have a frame label called about. Where i want the swf to be.[code]

View 7 Replies

ActionScript 3.0 :: Return From Loaded Swf To Main?

Mar 13, 2012

I have some swfs that i want to combine: I have the main.swf that containes buttons, and i want each button to lead to an external swf. I have already done that.What i dont know is how to return to  main.swf. I want all external swfs to have a button called "Back to menu" and go back to main.swf

View 3 Replies

Access Main Swf X,Y From Externally Loaded It?

Jan 7, 2010

I have a site that I'm working on that I am loading an external swf page into a main one. The main one is based on a totally liquid state and stretches the background to fill the browser and the components are relatively position based on browser window dimensions.

Now inside of the main swf I load an external swf through the loader command. This swf has a set dimension and stays centered in the stage.

I am trying to make a button in this swf that loads yet another swf that is stretches the full browser. However I do not know how to access the properties of a main swf from this external one, or if this is even possible.

View 3 Replies

ActionScript 3.0 :: Overlapping Loaded Swf To Main Swf?

Jan 4, 2011

I am loading an external swf and I want it to overlap my main swf. I have been trying to figure this out for days. Check my link to see what I am talking about

[URL]

when you click on about the swf loads, but it leaves a little space on the right where you can still see the main swf underneath... you can also check my FLAs if you want...download here

[URL]

View 1 Replies

ActionScript 2.0 :: Second Swf Works By Itself But Not When Loaded Into The Main Swf

Mar 18, 2003

i have a movie that loads a 2nd movie on a button action. The second movie has some other buttons ("co" & "me") that makes some text pop up with easing. This is the code below. The problem is, the second swf works by itself, but not when loaded into the main swf. I've tried changing _root to _parent as well as various others, but to no avail? Is _root my problem??

[Code]...

View 1 Replies

ActionScript 2.0 :: Loaded Swf Controlling Main Swf?

Oct 25, 2005

is it possible for a loaded swf to control the timeline of the main swf or even to tell the main swf to unload the loaded swf just by pressing a button in the loaded swf.

View 2 Replies

ActionScript 2.0 :: Possible To Run FLV Inside SWF Loaded Into Main?

Sep 26, 2006

I have a website up at [URL]. The thing is that I have flv files being loaded by swfs that are loaded on a movieclip of a main swf. Locally everything works fine but as soon as I move it up the web or even try to run in over my home network, the flv files won't run. Can the flv run inside a swf that is loaded into another swf? I have set the paths to relative already, this taking into account the main swf!

Something like this:
loaded_swf_folder/flv_folder/flv_file.flv
If I didn't take the main swf into account it would look like this:
flv_folder/flv_file.flv
But I tried this already and it didn't work at all. Except if you run one of the loaded swf directly instead of through the main swf.

View 2 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 :: Add One To The File That Is Loaded Into The Main Movie Main Movie That Is Loading The File?

Aug 3, 2003

using the command:

loadMovie(_root.section, _root.content);how would i work in a preloader bar?? add one to the file that is loaded into the main movie or on my main movie that is loading the file?

View 1 Replies

Professional :: Flash And ASP.net Communication

Mar 7, 2011

I recently made a mp3 player in Flash. I have an aspx page that has the mp3 player in it as well as a .net button which is disabled on page load. The .net page tells the audio player waht file to play and the player plays. What is supposed to happen next is when the audio player reaches the end of the file the button on the aspx page is supposed to become enabled. I am not sure how to do this [have Flash tell the aspx page that it is done playing].

View 2 Replies

Php :: Php-Flash Communication Over Sockets?

Nov 5, 2009

I am not any kind of network programming pro, but it happened that I have faced necessity to develop socket-server on php (no way for using Java) for flash multiplayer browser-game (standard features like locations, team battles, etc).

The main problem is that TCP is point-to-point protocol and it completely occupies given port.Of course it is possible to create some kind of queue, which will manage connections to the socket, but this solution doesn't seems to be the fittest one.

It seems to me that using interval of "fair" ports (from 2000 to 2200, for example) is more fitting solution, because one request may take a lot of time to execute and players won't be happy to wait in queue.

But how can I implement this "port inteval" strategy?The solutions that I see are:

launcing php-script per every port (he-he, 2 hundreds of launched scripts!);somehow forking the initial process to new processes (2 hundreds of processed? Not nice too), one for every port;additional while-loop, which listens all the ports (looks very bad);using threading or something like that (the problem is that php is single-threaded, as far as I know; pcntl?).But somehow I don't like any of them, or at least don't know how to implement them in the best possible way.

What is the best existing strategy to handle multiple requests from multiple users per time unit without delays, and how to implement this strategy in php? We have our own Debian-server, so it is possible to use any required php extensions.

For example, if we are trying to develop chat application, we need some sort of fixed (I mean persistent) connections for each user. For example, we have 80 users in chat, and then one of them posted a message, which server tries to handle and send to all other connected users, also putting an entry to the history file or something like that.

In this situation polling server for new messages every 10 seconds from each of 80 users is craziness, so the need in persistent connection gets obvious.But I don't know what is the best way to implement something like this, considering that not all requests are handled instanlty.

View 2 Replies

Java :: Communication Between EJB And Flash?

May 19, 2010

Is it possible to call my ejbs from Flash actionscript?Also if my ejbs are returning List how will flash come to know about this class?

View 2 Replies

Communication Between Flash Files?

Jun 28, 2010

How can I make something like this: [URL]One flash triggers the other one.

View 1 Replies

Action Script :: Swf Is Loaded Into Main Movie?

Apr 29, 2008

My site consists of a main swf file ('home.swf') which then has other swfs loaded into it via an empty movie clip.I have created one such swf. file (news.swf) which features 2 simple scrolling text buttons (one to move text down, and the other to move it up).http:[url].....

Everything works fine when I preview the news.swf on its own, but when I preview the home.swf and view the news.swf loaded into it, the button which should move the text up doesn't work.I think it's something to do with using the term _root. but i don't know what to replace it with.This is the script I have on the button that doesn't work:

//Events during mouse click
on(press) {
_root.controller.gotoAndPlay (2);[code]........

Is it just a case of changing the _root. term, and if so what should I change it to, or is it trickier than that.

View 9 Replies

ActionScript 3.0 :: Controlling Main Timeline From Loaded SWF

Nov 2, 2010

I have a simple swf called site.swf that loads a menu with UILoader called menu.swf, from menu I'm able to navigateToURL but I also need that it goes to frame 50 in menu.swf.

View 1 Replies

ActionScript 3.0 :: Referencing The Main Timeline From A Loaded Swf?

Jun 14, 2009

I just poked around google as well as these forums, but the only answer I am seeing that was successful, is from kglad, and for some reason his posts are not showingAnyway, I am just trying to figure how to reference a frame label on my main timeline from a loaded swf (through my imageLoader).

View 4 Replies

ActionScript 1/2 :: Getting Back To Main Timeline In Loaded Ext. SWF

Jul 7, 2009

I have a project I'm working on where the user is presented with an overhead shot of a building and is able to mouse-over the different rooms to choose one to "enter." Once clicked, the chosen room is an external .SWF that is loaded that has options to view other external .SWFs within that room. Problem is, within the first loaded .SWF, I have a "home" button that is supposed to take the viewer back to the main overhead view but I can't get the AS to work. I've tried _parent and _root with no luck (not sure I even typed out right code).

View 29 Replies







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