Professional :: Change Loaded Movie From Child?

Oct 31, 2010

Here I want to ask how to change the loaded movie from child?
 
Here is my working code, but it doesn't works...

Root:
 
var contentMovie:MovieClip = new mcMain;contentMovie.name="content_mc";addChild(contentMovie);

[Code]....

View 7 Replies


Similar Posts:


ActionScript 3.0 :: Buttons In A Child Movie Won't Work While Loaded In Parent Movie

Jun 25, 2009

I have an external swf (sub.swf) that loads into my main swf. The external swf has buttons of its own...that I would like to use to load additional external swf's in its place. I click on the buttons and nothings happens.

My current code is as follows:

All of the following code is in my main.swf
================================
//Location where the external SWFs will load
var Xpos:Number=18;
var Ypos:Number=10;

[Code]...

External swf has no code except for a stop action.

I pieced this current code based on various articles I've found on the net.

View 4 Replies

Actionscript 3 :: How Can A Loaded Child Swf 1 Communicate To Next Child Swf, Child Swf 2, Which Is Currently Not Loaded

Oct 14, 2011

I have a parent swf with three buttons: next button, back button, ticker on/off button.I have three child swfs, each with a ticker mc. When I click on ticker button on parent swfit dispatches a custom event which brings ticker MC on stage and thus ticker becomes visible (ticker off button displaces it out of stage by changing the value of ticker_mc.y).

the problem I am facing is when ticker is on and I click next or back button to load next or previous child swf, the ticker goes off. How can I make sure that ticker is on all the time and closes only when I close it. How can a loaded child swf 1 communicate to next child swf, child swf 2, which is currently not loaded, that since the ticker is on on swf 1 so you please keep the ticker on on swf 2 as well?!

I think I know the problem. I have put a default value of ticker_mc = 160 (makes ticker inactive) on every child swf. So, the ticker becomes inactive everytime I load a new child swf. If someone could guide how can I do this, my problem will be solved: When first child swf is loaded, the default value of ticker_mc.y should be 160. I want to hold this value in a variable. When I click ticker active btn, position of ticker_mc changes to 194 so the value of variable should change to 194. When I click next btn, the variable value (160 or 194) should be sent to next child swf and ticker_mc.y should be equal to variable value.

This is the code so far

"Next button"
go_mc.next_btn.addEventListener(MouseEvent.CLICK, playNext);
function playNext(e:MouseEvent):void {
if (swf_no < (clips.length-1)) {

[code]....

View 1 Replies

Loaded Child Movie Controlling Container Parent

May 14, 2009

i'm a designer trying to step up my flash skills and have a scripting problem that's causing me trouble. essentially i have a child swf loaded into a container in a parent swf and want the child to be able to instruct the parent. to explain in full, the child contains an flv with bespoke video player components. it's container sits in one frame of the parent. when the flv finishes playing, i need the parent swf to move onto another frame.
as it's a controllable flv, it isnt possible to predict the exact length of time the child will need to be present, so it literally needs to tell the parent it's finished playing at that very point.

[Code]...

View 9 Replies

Professional :: Access Methods From/to Parent And Loaded Child Swfs?

Sep 14, 2010

Imagine the following setup. The main swf loads a child swf.In AS2 i would simply use _parent or _root to call the desired function. How can that be done in AS3?Can this still be done? Can I call a function on the main swf from the loaded one? How about the other way around, this time, from main to loaded swf?

View 1 Replies

ActionScript 3.0 :: Accessing Child Swfs Loaded In A Movie Clip?

Apr 29, 2010

I am building an interface that loads swfs externally into an array(pre-loader) my code places these swfs into a container movie clip on stage when called.I am trying to access the swf that is now a child of the movie clip so i can rewind, pause, and play the swf.Currently they are loading in just fine, but my code isn't able to touch the swf. The swfs also play all the way through when they are loaded so when i change to the next one of the sequence my swf is already at its end frame.

Here is the code:

Actionscript Code:
stop();//Variable creation-----------------------------------------------------------------var _swfLoader:Loader;var _swfRequest:URLRequest;//creates an array with all the swfs locations inside--------------------------------var _swfPathArr:Array = new

[code]....

View 9 Replies

ActionScript 3.0 :: Accessing Child Swfs Loaded In A Movie Clip

Apr 29, 2010

I am currently building an interface that loads externally loaded swfs into a movie clip on stage. I have no problem loading them in and switching between them. I am, however, having an issue accessing the swf, so that i can rewind, pause, and play the loaded swf.

Here is the code:

ActionScript Code:
stop();
//Variable creation-----------------------------------------------------------------
var _swfLoader:Loader;

[Code].....

View 5 Replies

ActionScript 2.0 :: Change Base Of Loaded Movie Urls?

Feb 25, 2010

I have a swf file named "intro.swf" and i have loaded another swf file with this path "En/main.swf" into it. And the file "main.swf" should load many xml and other files from its directory "En" , but when "main.swf" loads in "Into.swf" it can not load any of those xml and other files ,because the related urls of them begines from "Intro.swf" location. can i use any command in "main.swf" to change the base of all paths in this movie to upper diectory ? (for example i want to convert the path of "config.xml" to "En/config.xml" automatically).

View 0 Replies

Professional :: Zoom To Movie Clip And Center On Child?

Jul 20, 2010

I have a movie clip of all counties in the state of Montana (allcnt_mc). Within allcnt_mc there are individual movie clips specific to each county with name equal to the county's name. When clicking on a county, I'd like to zoom to that county and center the stage on it. I've added event listeners to all counties through querying an xml table that has demographic info I am calling into dynamic text boxes. Here is the code I have thus far to load the xml and add the listeners to the county movie clips.
 
//load xml
var xmlLoader:URLLoader = new URLLoader();
var xmlData:XML = new XML();
xmlLoader.addEventListener(Event.COMPLETE, LoadXML);

[Code]....

View 5 Replies

ActionScript 2.0 :: How To Change Height / Width Of Loaded Movie OnResize

Jan 19, 2009

I am trying to get the loaded movie "GB.swf" to scale/change width and height onResize. And yes I do want to be loading into a level, not into a mc, with loadMovieNum. Here is the code:

stop();
var depth = 5, x = ((Stage.width/10)*2)+10, y = 160;
var widthscale = ((Stage.width/10)*6)-20;
var heightscale = (Stage.height-170);
_root.onEnterFrame = function() {
this["_level"+depth]._x = x;
this["_level"+depth]._y = y;
[Code] .....

View 0 Replies

Flash :: Loaded Font Doesn't Show Up When Parent Swf Creates TextField In Loaded Child Swf

Jun 14, 2011

Im working on a project that has a main swf file associated with the document class. It loads XML that provides the text content for the project, then it loads a swf that contains a font in its library, then it loads the first of several content module swfs. When the font swf has inited, I'm registering its library font with Font.registerFont(), and using it in a TextFormat object. After everything is done, I can add code to the document class to create a text field on the stage of the main swf and format it successfully with the TextFormat object, but when I try to do the same thing inside the loaded content module swf, the text doesn't show up there at all.

View 1 Replies

ActionScript 3.0 :: Loaded Font Doesn't Show Up / When Parent Swf Creates TextField In Loaded Child Swf

Jun 15, 2011

I'm working on a project that has a main swf file associated with the document class. It loads XML that provides the text content for the project, then it loads a swf that contains a font in its library, then it loads the first of several content module swfs. When the font swf has inited, I'm registering its library font with Font.registerFont(), and using it in a TextFormat object. After everything is done, I can add code to the document class to create a text field on the stage of the main swf and format it successfully with the TextFormat object, but when I try to do the same thing inside the loaded content module swf, the text doesn't show up there at all.

View 7 Replies

Professional :: Dreamweaver - SWF Movie Not Loaded

Jul 22, 2010

Go to this site: [URL]. I got my flash intro onto the site and I got the HTML code from dreamweaver. I use 000webhost for hosting. HTML code is:
<script src="Scripts/swfobject_modified.js" type="text/javascript">
</script><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="720" height="480" id="FlashID" title="kevin">
<param name="movie" value="intro done 2011.swf">
<param name="quality" value="high">
<param name="wmode" value="opaque">
[Code] .....
Why doesn't my flash load up? When I upload them to other sites they playback fine.

View 1 Replies

Professional :: LoadMovieNum: Change Movie After Finished?

Nov 22, 2010

So, I have a site, and I want it to play an intro movie when you load the index page. I have it as LoadMovieNum (videos.htm), but I want it to play the video on that page, which is about 30 sec. long, and then redirect to another .swf page entitled index.swf.

View 3 Replies

Professional :: Closing Swf Loaded Into Movie Clip?

Mar 16, 2010

I have built a movie clip on my main flash file that I am loading separate swfs into. On the separate swfs I have a close button, but do not know what action script to attach to it to make the movie clip go away? I want these to go away every time you hit the close button on the separate Flash swfs loading into the main movie clip.

View 1 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

Child Of Child Movie Clip Are Null In Imported Object From Flex To Flash Right After Being Created?

Dec 16, 2010

I have an Movie Clip in Flash that have subobject of button type which has subobject of input text and movie clips. Right after creation core Moveclip all subobject are set to null, when I expect them to be valid objects.

[Code]...

MC_Core_design was created in Flash and exported to Actionscript. I've done this for button_1 class aswell. The code was written using Flex. When I comment out both lines that result in error I get correct view of the core Movie clip with all subobject. How can I set subobject properties right after object creation?

View 2 Replies

Professional :: Change (Replace) A Flash Movie Icon?

Feb 28, 2010

I have created a flash movie for my company and I have been asked to send the swf file with our company Icon instead of regular flash icon.

View 1 Replies

Professional :: Event Listener - Remove The Child (e.currentTarget) And Create A New Child In Its Place With The Next Line But It Doesn't Work

Feb 19, 2010

public function GlobalSolutions()
{
Navigation(' Home ', 'index', 235, 0x97F9EC);
Navigation(' Office Supplies ', 'Office_Supplies', 295, 0x97F9EC);

[code]....
 
I want to remove the appropriate child (e.currentTarget) and create a new child in its place with the next line, but it doesn't work. What do?

View 13 Replies

Professional :: Passing Variables To And From Loaded Movie Clips

May 7, 2010

I have a movie clip where I store a value in a variable called "yourname" and then load a different .swf file in level 1. I display the value of "yourname" in a dynamic text box, that works fine. I then move on to a frame where the user has an input text box and can re-enter a value for the "yourname" variable, and then clicks a button symbol to reassign the value. Bear in mind, "yourname" was not originally stored on this level and this movie clip, it is stored on level 0 on the first (main) movie clip.  Here is my code in the button:
 
on (release) {
_level0.yourname = String (inpt_newName.text);
}
 
inpt_newName is the input text box. My intent here is to have a "main" timeline where variables are stored, and then load and unload various .swf movie clips as needed, storing and variables (i.e. decisions) that the user makes.

View 1 Replies

Professional :: Stop Preloader Frames When Movie Already Loaded?

May 27, 2010

I have a CS5 FLA file with AS 3.0 with the following code for the preloader:

var pct_load:int = Math.round(framesLoaded/totalFrames*100);
if (pct_load == 100) {
play();

[Code]....

The preloader is in the first four frames -- it's just the background photo, a graphic logo, and the loading numeral text.

Everything runs great the first time it's loaded; then if you refresh the page, the graphics in the first four preloader frames flash on the screen before the movie plays.

View 5 Replies

Professional :: Control The Swf Movie Loaded In Loader Component?

Oct 13, 2010

I have an external swf file loaded in loader component. The external swf loaded in loader component is stopped initially. I want to play it by a button outside the loader component which is located in the main swf movie.

View 1 Replies

Professional :: Sound Does Not Stop If I Exit A Pre-loaded FLV Movie?

Nov 10, 2010

I have an FLV video loaded as an "external video with play back component" in my Flash site. It works pretty well, even loads fast regardless its 15MB size. The video located on its labeled section which has an "X" button which closes this section and brings a user back to the page with all the video sections. However once the labeled section with the video is closed the sound is still playing.Does any one know how to make it stop if the section with the video has been exited?Then go to HOW TO section and click on the link "here" for "The Arrangement" show it will bring you to the section with the video loaded as an "external video with play back component" in my Flash site.

View 4 Replies

Professional :: Change Settings And Export The Movie To A .swf - Getting A Syntax Error?

Mar 24, 2010

play ();ifFrameLoaded ("content", "loader") {    gotoAndPlay ("content", 1);}downloaded = math.floor((_root.getbytesLoaded()/_root.getbytestotal())*100) add "%";_root.bar.download_bar.gotoandstop(downloaded);bytesloaded = math.floor(_root.getbytesloaded()/1000);bytestotal = math.floor(_root.getbytestotal()/1000);_root.bar.message = bytesloaded add "Kb";_root.bar.message2 =  bytestotal  add "Kb";
 
this is for a loader on an already created flash. Which I am updating. All I am doing is changing a picture that has no coding with it, and changing the publish settings. The publish setting for the original was set for flash player 5, however I need it set to flash player 8. After I change these settings and export the movie to a .swf, I get the errors.Has the action script changed that much from flash 5 to flash 8?

View 7 Replies

Professional :: Movie Clip/scrollpane - Change The Lenght Parameters?

Mar 30, 2011

I am making several movie clips that are linked to scroll panes.All of the content is text.I have one movie clip that is a bit longer than the others and if I test the movie a good deal of the text is CUT OFF.This ony happens with the long text movie clip. Is there somewhere I can change the lenght parameters?

View 3 Replies

Professional :: Seamless Transitions Between Externally Loaded Movie Clips?

Apr 1, 2010

I'm building a flash player that loads various movie clips in succession  depending on user input. The player should continue to play seamlessly  when one clip ends and another starts playing, however there is always a  slight noticeable delay between the COMPLETE event for one clip and the  actual playing of the next clip. I am using the FLVPlayback component to  load the video clips, with successive clips loaded in different players in the component.
 
I've tried playing the next video a short duration before the current video finishes by adding a cue point just before the end of the currently running clip (about 200 - 300 ms before the end). This improves matters somewhat, but it is not a reliable method as the timings are different for different browsers and computer specs. I was wondering if anyone here has any experience with smooth  transitions between external video clips and could suggest possible  optimizations I could use to improve the transitions.

View 2 Replies

Professional :: Make A Loaded.swf Stop Looping Inside A Movie Clip?

Oct 20, 2010

I have a .swf that loads into a movie clip in a Flash website. The .swf has all necessary stops to play once and stop once loaded. When tested outside of the movie clip, it does what it should, but once loaded, it loops forever and the speed is faster. How do I make this stop looping?  (This only happenes to .swf that were made in CS4, doesn't happen with older .swfs that were made in Macromedia)

View 10 Replies

Professional :: Added A Movie Clip To A Loaded .swf And Now It Won't Load Get Error #1056?

Mar 4, 2012

was all working fine until I added a simple shape movieclip (rectangle that I want to have visible and invisible) now just by adding this MC I get this error..

ReferenceError: Error #1056: Cannot create property largeframe on aavariable.
at flash.display::Sprite/constructChildren()
at flash.display::Sprite()

[code].....

View 8 Replies

ActionScript 2.0 :: Unload/Load Movie Clips In Parent Movie From Buttons In Child Movie?

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

Professional :: Change Speed Of Symbol Without Changing Speed Of Entire Movie?

Aug 7, 2010

I want to add an animated .gif file to my movie.  So I created a new symbol and then imported the .gif file to the stage.  This created the symbol containing the animated .gif.I dragged the symbol onto the scene where I want it.  However, the animation seems to play at a different speed (fps) than normal.  So I changed the fps of the symbol (at bottom of Timeline where it says "fps").  But for some reason this changes the fps of the rest of the entire movie.

View 3 Replies







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