ActionScript 1/2 :: Loading MC From Library In MC Holder
Feb 8, 2010
I searched previous posts last week about this and learned that I can load a movie clip from the library in a blank mc holder similar to how I load an exernal swf. But so far that code is not working for me. I also need a way to close/make invisible the clip on user clicking an X. I have a page with about 6 key words over which I will place invisible buttons. First button instance is named compworkBtn. I have a blank mc on the stage, name of mcLoadertop. My mc I want to play is in the library and named compworkMC. I read that I need to set the properties to export and I have done this (picture attached for compworkMC).
[Code]....
Then I want the user to click on the X or close button and it goes away. I thought the easiest thing for this work be to program the Close button itself to drive the MC to a frame that had no content. It will still be there, of course, but not be visible. Then the user would click on the next key word and the next MC will load. Not sure that is a good solution though, because they will both still be there. So, I'd like a suggestion for another solution to unload the first mc and load the second one. I have done a similar thing with external swfs, but I will need a close button instance for each of the unloads, right?
View 8 Replies
Similar Posts:
Jan 18, 2007
I've used MovieClipLoader to load a movieclip into my holder. Everything works out fine, the mc loads and it's all good. But then, inside the loaded mc I use attachMovie to attach a movieclip from the library of the holder. It won't attach, but it will attach if I re-create the specific mc in the loaded mc's library. Does anyone know how to get around this?
View 1 Replies
Jan 3, 2010
I want to create a page for viewing JPEGs and SWFs. There will be a holder and underneath this there will be a row of thumbnails. On release of a thumbnail the JPEG or SWF will load into the holder. The files need to be updateable.
View 7 Replies
Jan 6, 2011
note I have to change some file names and urls for company privacy.I am working on an online banner ad which tight size requirements. In order to stay under the file size, I want to load an external swf housed on our server into an empty movie clip on a button press. I have this working with the following code on a button:
on (release) {
loader_mc.loadMovie("location where swf file is housed");
}
I then want to unload this movie if a different button is pressed. However I am receiving the following error.
*** Security Sandbox Violation ***
Connection to file: XXXXXXXX halted - not permitted from "location where swf file is housed"
-- Remote SWFs may not access local files.
How can I unload this external swf file from my move? Again the external swf file is housed on our sever and the main swf file will be housed with the place we are advertising.
View 0 Replies
Nov 29, 2009
I am trying to load an array of web_thumbs into an array of thumb "holders" I've got the holders loading in a grid but then the way I have it, all of the web_thumbs load into each of the holders instead of one web_thumb per holder - I've tried it every which way and this is as close as I can get it without help... Can someone tell me what i need to do to have one web_thumb load into each thumb holder? This is what i have in place:
var dataLoader:URLLoader = new URLLoader();
dataLoader.load(new URLRequest("web_thumbs.xml"));
dataLoader.addEventListener(Event.COMPLETE, onDataLoaded);[code]..........
View 4 Replies
Aug 30, 2007
I'm trying to load a bitmap using this: [URL]. It seems like the preload is working fine. I'm just having trouble loading the bitmap from here. it works without the preloader but I can't figure out what's not making it load when it's done.
Code:
function loadTransBitmap(id){
this.createEmptyMovieClip("holder_img", this.getNextHighestDepth());
var mcl:MovieClipLoader = new MovieClipLoader();
preload = new Object();
mcl.addListener(preload);
[Code] .....
I noticed after the load is complete, I traced the width for targetMC, which is where the image should be preloaded..and it comes up as 0. So it seems like there's nothing in the holder_img container. But it preloads something so I don't know what the problem is.
Also: 'id' from the function is just the image (images/1.jpg)
View 1 Replies
Apr 5, 2011
im loading photos of different aspect ratios with a loader onto a child holder frame_mc. I wanted to know what AS3 commands do i need to work on to get the frame_mc to resize to the new childs dimensions and centerize itself on the main stage? (as in event listeners, functions, vars etc)
View 3 Replies
Jan 24, 2006
I am attaching a movieclip to the stage called "polaroid", then dynamically loading a jpeg into it "polaroid.holder".But it doesn't work.It seems that if I dynamically set the instance name of the polaroid clip from attachmovie it won't wor
Code:
i=1
function loader(){
choice = Math.round(Math.random()*5);
containernew = "container"+i[code].....
View 14 Replies
Jun 10, 2009
I've been quite frustrated over a very simple flash program I have, where I try to use code to add an item from the library to the stage. I've attached the .fla file. The errors I'm getting are: 1046: Type was not found or was not a compile-time constant: playerShip. 1180: Call to a possibly undefined method playerShip.
View 3 Replies
May 27, 2003
I want to load a mc's with a button click from the library.
View 14 Replies
Nov 9, 2009
i used this code with linkage to load a movieclip from library using flash action script 3
btn.addEventListener(MouseEvent.MOUSE_UP,goLayersS ite);
function goLayersSite(Event)
{
var myMovieClip:MovieClip = new Tree();
empty.addChild(myMovieClip);
}
i want to know how am i able to load a flash movie clip from my current library into my stage with using a button via flash action script 2.
since im using other codes in action script 2 i can not cancel them and i really need to load a movie clip in my AS2 FLA.
View 1 Replies
Feb 5, 2009
I'll do my best to keep this question as short as possible:
I've made 5 'fruit' movieclips and they're in my library.
And using so.addVariable("getNumber", "003"); in my HTML code, I'd like those particular fruit movieclips to play one after the other (and then loop).
I've had a look around for something similar, without luck, so I'm trying to make it from scratch. I got as far as getting it to load the first number and then the first type and url, but I'm stuck on getting to go onto the next type, also being able to define (with addVariable) which number's nodes gets played.
Here's an example of my XML to show the structure.
Code:
<?xml version="1.0" encoding="utf-8"?>
<list>
<number="001" >
[Code].....
View 1 Replies
Jan 17, 2011
I need to load a movie clip to the stage from the library. I also need that movie clip to load with a certain string of actionscript code in it. To load the movie clip, i checked the "export for actionscript" thing in the "linkage" section of the movie clip info, and i named the class "sol1"
I then used this code on the first (and only) frame: Code: _root.attachMovie("sol1", "NewInstanceName", {_x: 50, _y: 100}); It seems to work, but the question is, how do i load the movie clip with code in it?
View 3 Replies
Nov 29, 2009
I have built a flash animation (for a web site) that requires a number of decent quality JPG images. I don't display all of these at the start, so I don't want to wait for them all to load before starting the animation. Thus I want to be able to load these images in the background - the obvious process would involve MovieClipLoader.loadClip() method. This works fine if I am loading into an INSTANCE of a moveclip (either existing on the stage or one that I creat in actionscript) - but I really want to load into a library movieclip.
The problem is that I end up using these images in two different movies on the stage - each pulls from a movieclip in the library (that contains the image I want). So my original thought was simply to load (using loadClip()) into the library movie - which in turn would show up in the two stage movieclips that have this library clip in the timeline. However, I cannot seem to get loadClip() to work with a library object.
I tried exporting the library movieclip to actionscript (giving it a name) - but loadClip() doesn't seem to want to load into it. I can only get loadClip() to load into an instance that exists on the stage.Sorry if I am asking a stupid question - I don't do a lot of flash programming - although I have extensive programming experience in other languages.
[Code]...
View 3 Replies
Feb 25, 2010
I have several buttons that on mouse over will load a library movie clip. I want that movieclip to load on top of everything then once it's played allow me to either replay that movieclip by hovering over the button again or play a different movieclip by hovering over another button etc etc. with the ability to repeat this.
My code below currently loads my movieclip on top in hte corerct place however wont allow me to hover over another button and only plays once: var my_packages_mc:MovieClip = new packages_mc();var my_treatments_mc:MovieClip = new treatments_mc();
[Code]...
View 1 Replies
Mar 27, 2009
I'm learning AS3. There are two buttons converted to MC inthe library. Their class linkage names are: next_bt1 and back-bt1.I have a PesticideEducation.fla and PesticideEducation.as onthe same folder.Here is my code, which doesn't report any error but thebuttons don't show on stage.me find the error on myscript.
package {
import flash.display.MovieClip;
public class PesticideEducation extends MovieClip
[code].......
View 3 Replies
Feb 5, 2009
I've made 5 'fruit' movieclips and they're in my library.And using so.addVariable("getNumber", "003"); in my HTML code, I'd like those particular fruit movieclips to play one after the other (and then loop).I've had a look around for something similar, without luck, so I'm trying to make it from scratch. I got as far as getting it to load the first number and then the first type and url, but I'm stuck on getting to go onto the next type, also being able to define (with addVariable) which number's nodes gets played.[Code]....
View 4 Replies
May 11, 2010
Have buttons on the stage that when clicked, load a mc from the library into an empty mc on the stage. If another button is clicked, the loaded mc fades out, then a new mc from the library fades in. I've got it working for external .swf's loading, but I'd like to use mc's from the library.I think I need to use a attachMovie in there, but not sure how.
ActionScript Code:
var LoadMe = "";// this is just a var to store the page you want to load
// --- >> EXAMPLE FRAME CODING FOR A MC BTN
_root.homeBtn.onRelease = function() {
[code]....
View 9 Replies
Jul 13, 2010
I'm currently having trouble with the file size of my latest project. This due to the file size of certain movie clips in my library. This obviously causes a long preloading time.
To get round this I thought I could load these movie cilps when I need them so the user can proceed normally until they appear. These movie clips have a linkage with 'Export for Actionscript' selected but I haven't selected 'Export in first frame' because I want to export it later when they're needed.
how to ignore loading these movie clips until I tell Flash I want them loading. Bearing in mind these aren't external .swf's.
View 4 Replies
Dec 4, 2010
i am trying to load movieclips from the library using an array. I have manage to load a single movieclip using
var myArray:Array=[];
myArray[1]=imagex1;
var mc:MovieClip = new myArray[1];
addChild(mc);
but now I've tried using a loop by doing
var myArray:Array=[];
for(var i:uint = 0; i < 8; i++){
myArray[i]="imagex"+i;
var mc:MovieClip = new myArray[i];
addChild(mc);
}
and i get the error:
TypeError: Error #1007: Instantiation attempted on a non-constructor.
at usethis4_fla::MainTimeline/frame1()
View 4 Replies
Feb 14, 2009
I am having a bit of a problem. I have my document class (documentClass.as) and a class for functions (functions.as).How would I go about importing functions.as so that I can use the functions in it?
View 2 Replies
Apr 2, 2003
I am pretty new to Flash and am using FlashMX. My question is 'How to you dynamically extract an image from the library onto a movie clip?
View 6 Replies
May 17, 2003
I am trying to load and duplicate a movie contained in the Library. I would like to be able to do so without dragging an instance of it into the desktop. I have gone ahead and made the linkage to javascript under the properties.
View 8 Replies
Feb 11, 2009
I've been learning AS3 for a while now, and it's my first Actionscript language, but not my first coding language. I've learned a lot so far, but I started off doing things in the not so efficient, or correct ways. I was putting all of my actionscript on frames. I'm trying to get in the habit of doing it the right way now. But I'm having a basic problem. I can't figure out how to load a bitmap from the library in AS3.
View 6 Replies
May 21, 2002
I am basing my site layout all one this one actionscript thingy...when you press a button, a window pops up. The window is from the library. It's called "ContactWindow" and its linkage is "contact".
View 14 Replies
Jul 9, 2009
getting a external class package to load and custom library item?
package {
import flash.display.MovieClip;
public class Ball extends MovieClip {
public var radius:Number;
[Code]...
View 1 Replies
Dec 4, 2010
i am trying to load movieclips from the library using an array. I have manage to load a single movieclip using [code]I new at this so i don't really understand what that means, can someone help with this?
View 4 Replies
Feb 5, 2011
I have a series of movies in my library (called page1, page2, page3... page87) and I'm looking to load the first one into a blank movie (called pageHolder).Using 'next' and 'previous' buttons, I then want to unload and load the next in the series of 'pages'. I'm trying to work out the best way to do this using addChild and removeChild, but not having much luck. I've read that the best way to do this entire sequence is to set up an array, but I have no previous experience with arrays.
View 2 Replies
Mar 16, 2011
I have 5 movies in my library, called question0, question1, question2, question3, question4. I linked them with export for actionscript. I have an Array, called questions. Then I have a button that calls the getQuestion function. But I get the following error:
[Code]....
View 2 Replies
Jun 8, 2011
I am trying to call in images dynamically from my Library in a more efficient manner.
With an bitmap image in the Library set up for actionscript with the class name of 'itemFromLib', i tried:
Code:
function placeImage():void {
var _img:itemFromLib = new itemFromLib();
var _bitName:Bitmap = new Bitmap(_img);
[Code].....
Both with the results of an error that "1067: Implicit coercion of a value of type Class to an unrelated type flash.display:BitmapData."
View 7 Replies