Flash :: Load One SWF With Attached .as Into Another?
May 25, 2011
I'm trying to set up a proof-of-concept of loading one SWF into another SWF for skinning. The set-up is this: app.fla, which has an attached ActionScript class, AppMain.as skin.fla, which contains UI components AppMain.as will obviously contain all of the application's logic; I then want to be able to affect the UI components contained within the loaded skin file based on instance names defined in that particular skin.
So for example, if I have a TextField with an instance name of myTextField I'd like to be able to set the text property of that text field programmatically in AppMain.as. The exported app.swf to load a skin file based on a flashvar parameter would be loaded into an HTML document that looked like this:
[Code]...
View 1 Replies
Similar Posts:
Apr 21, 2009
I have a full browser scrollbar I found from here, that has class of 'ScrollExample'.as, but I have a difficult time adding it my website.I used a UIloader on my main site with the instance name of 'loadit' and placed it on top left corner of my site.I have a button on my main site with the code:
Code:
btn_1.addEventListener(MouseEvent.CLICK, ContactClick);
function ContactClick(event:MouseEvent) {
var loadit = new Loader();
[code]....
but when I click on btn_1 I get this error:
Code:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at ScrollExample/initStage()
at ScrollExample()
View 5 Replies
Dec 11, 2010
I've created a simple class that defines a scrollbar to scroll content. I've applied this class (ScrollBox.as) to a movieclip in the library as the Base Class.
Now, I'd like to add this movieclip to the stage with AS3. So for the Linkage, I've given the movieclip a class name of 'AboutBox'. This is the code I've written to add it to the display list[code]...
View 5 Replies
Dec 10, 2010
I've created a simple class that defines a scrollbar to scroll content.I've applied this class (ScrollBox.as) to a movieclip in the library as the Base Class.Now, I'd like to add this movieclip to the stage with AS3.So for the Linkage, I've given the movieclip a class name of 'AboutBox'.This is the code I've written to add it to the display list:[code]
View 1 Replies
Sep 23, 2008
about making a Flash application that sticks to the bottom of a web page, even when scrolling?
View 1 Replies
Feb 4, 2010
I'm trying to create a video player in AS3 that displays the player controls when the user hovers over the video, however I'm having a hard time getting the MOUSE_OVER event to fire. I've made sure that the video's index is at the top, so that's not the issue. Is there something I'm missing? Is there any reason why this event listener wouldn't work on a video object? video.addEventListener(MouseEvent.MOUSE_OVER, doThis);
View 2 Replies
Oct 4, 2011
I use attachMovie to call movie clips succesively on the stage. I use a forward button to slide them in progression but when I want to go back in the same order everything gets messed up. You can see the swf playing here, [URL]..I numbered each frame so you can see when clicking on back button it gets messed up.
// Each of the button functions here call the add_page() function and pass the Identifier of the page that they will display b_0.onRelease = function() {
[Code]...
View 1 Replies
Mar 24, 2011
I am trying to create a video feed screen that pulls in from 4 different usb cameras attached to my computer. As of now my file only pulls in the feed from the built in camera on my macbook pro. Here's the code I'm using to find the cameras. Anyone know how to find the external usb cameras? You can check it out and running at [URL] or grab the fla and see what's up.
ActionScript Code:
// Set up some new entries on the context menu for changing video capture size
var newMenu = new ContextMenu();
newMenu.hideBuiltInItems();
[Code]....
View 0 Replies
Jun 3, 2010
I have a button, when you push it I want:
1. Flash to take a screen shot of the current Flash window
2. Open up the computer's default mailing client and automaically attached the screenshot that I took
View 3 Replies
Jul 26, 2009
I need to remove some movieclips that are attached dynamically so they do not show up underneath the new movieclips that will be attached when a user clicks the next button. I've tried removeMovieClip with little success. I am able to remove one or two of them, but not all. I need all of the previously attached movies gone.
Here is the as2 for it.
PHP Code:
//Set functions
function show_movie() {
menu_mc._visible = true;
buttons_mc._visible = false;
teacherinfo_mc._visible = false;
} function displayInfo() {
[Code] .....
View 4 Replies
Jun 6, 2007
I have 25 instances of a movieclip "star", duplicated and assigned variables using the following code:
Code:
for(n = 0; n < 25; n++) {
star.duplicateMovieClip("star"+n, n+1000);
with(eval("star"+n)) {
startype = random(3);
}};
I now have it so that when I click on any instance of "star", I'm taken to another frame, and in that frame I'd like to be able to look up the variable "startype" for that particular instance only. How exactly can I do this?
View 3 Replies
Aug 12, 2011
I'd been working on a side-scrolling shooter game in AS2 for a while and it was going great, but for whatever reason, it scrolls all choppy and the framerate is inconsistent on faster machines. I would have expected the opposite, but it is what is is, I guess. So I'm trying to finally learn AS3, and I found some tutorials that got me started towards remaking what I had, but now I'm stuck.I'm trying to make one of those rotating cannons that shoots projectiles towards the mouse cursor. I have the rotation part working, but I'm having trouble with attaching the projectiles to the stage with enterFrame actions on them.I feel like I'm pretty close to a solution, but I don't understand where to put the functions to move the clips to make them work properly. In AS2, I just put something like this on the cannon clip:
Code:
bullet = _root.attachMovie("bullet", "bullet"+_root.bullets, _root.getNextHighestDepth(), {_x:nozzledot.pointx, _y:nozzledot.pointy});
[code].....
View 1 Replies
Feb 29, 2012
I created a movie clip (mcPopup), deleted it from the stage, and set it to export for ActionScript. I then set up the movie to attatch the clip to the stage and then load a JPEG image into it. Now, I need to be able to let the viewer dismiss the popup, but I cannot figure out how to add an event listener to the movie clip. I tried several different ways, but the popup doesn't seem to be clickable and doesn't respond to clicks (perhaps the image is in the way?) Here is what I have for the code for the thumbnail the visitor clicks to open the popup:
on (release)
{
_root.attachMovie("mcPopup", "popup_mc", _root.getNextHighestDepth());
[code].....
View 3 Replies
Jun 19, 2006
I'm trying to create rows of information in Flash using createTextField in a dynamically attached movieclip. I have the autoSize property set to "center" to account for varying lengths of text. However when I try to obtain the height of the current textbox so I can set the _y property of my next record, Flash doesn't seem to be recognizing the autoSize property and returns the same height for each record.
I added a second frame in the movieclip I'm attaching with a "trace(this._height)"... The correct height property is shown.
how I can get the height property right away after creating the textbox?
View 3 Replies
Mar 22, 2008
I'm starting work on a midi piano game in flash. I have my midi keyboard hooked in through the USB. Now I've been told that there is some way to get flash to read any kind of input but I am not sure on how. Basically all that will happen is that u hit a key on the piano and a box shows up of random color. Longer u hold a key bigger it gets. Each key will have different box assigned to it. I think I could handle everything but I'm stuck on the first step and that is getting flash to read the Piano key presses.
View 5 Replies
May 1, 2011
I have purchased a flash cursor (.fla) with nice sparkling effects while a cursor is being moved. I would like to make similar/same sparkles playing around a cursor ALSO while a mouse is not being moved. but only stackoverflow.com has the experience in flash, I do lack of it. i use adobe flash cs5 and tried to find a solution for a hell of hours, but unsucessfully. zipped cursor file .fla can be downloaded here: [URL]
View 1 Replies
Aug 18, 2009
How to find out whether camera is attached or not in AS3.0. It can be installed or not.
View 2 Replies
Jul 4, 2009
I just moved to AS3 and I learnt how to attach a movieclip.
ActionScript Code:
var attachedMC = new (getDefinitionByName(PageName) as Class)();
holder.addChild(attachedMC);
Where PageName is the string containing the Class of the movieclip in the library and holder is the instance name of the MC to be attached to.
But what instance name do I use to refer to the movieclip that got attached?
In AS2, the code would have gone like this
ActionScript Code:
holder.attachMovie(PageName, "instanceName", 1);
The instance name part of the code seems to be missing in AS3. SO how do I refer the the attached MC or "child"?
View 5 Replies
Mar 28, 2004
I'm in a hurry to finish off this movie and I'm having trouble loading the attached swf into another swf! It loads but then I can't move the man! This is the script in the swf
_root.createEmptyMovieClip("container", 1);
loadMovie("isoRooms.swf", "container");
container._x = 150;
container._y = 20;
View 4 Replies
Aug 31, 2004
How do you address a mc attached to another mc?I have an array of movie clips some of which I have attached additional movie clips to. Now I need to alter scale/alpha etc of those additional movie clips.[code]How do I now manipulate the "ExtraMC" movie clips? I know I can use parent to get at the parent mc but how do I get at the "child" when names are dynamically created as above?
View 2 Replies
Oct 2, 2004
In the code I am working on I am attaching MCs to other MCs. However, when I remove the second MC the first one gets removed too. HexStore contains a load of game hex MCs. LastLocation is the last hex MC clicked. myBrigade is the extra MC that needs to be removed from the LastLocation MC.[code]...
View 4 Replies
May 11, 2006
I have a mc in the library, with an ID = dada.I use this code to attach it to a mc, and I want to run an animation inside the attached MC. It does not work, and I don't understand what I am doing wrong.
Code:
this.createEmptyMovieClip("holder", 2);
holder.attachMovie("dada", "dada_mc", 3);
[code]....
View 1 Replies
Jul 6, 2007
I have stage elements in my site showing up where they are supposed to with a FLUID Layout using the following code. Though there seems to be this strange gap all the way around my site in the html page. I want the horizontal bar to be attached to the top likeps. the shinny black band in the attached pic is called "topstretch" in the code below.
// ***Stage aligned top left
Stage.align = "TL";
// *** Stop the stage from scaling with the browser window.
[code]....
View 6 Replies
Jul 22, 2003
Is it possible to control a MC that is attached to another MC?
Example:
-------------------------------------------------
on (release) {
_root.loader.play();
}
*loader* is the blank MC.... and I want to control the MC that is attached to it called *movie1*.
View 6 Replies
Aug 31, 2004
How do you address a mc attached to another mc?
I have an array of movie clips some of which I have attached additional movie clips to. Now I need to alter scale/alpha etc of those additional movie clips.
ie.
for (i=0;i<BasicMCArray.length;i++) {
_root.BasicMCArray[i].attachMovie("myExtraMc","ExtraMC" + i,depth++);
}
How do I now manipulate the "ExtraMC" movie clips? I know I can use _parent to get at the parent mc but how do I get at the "child" when names are dynamically created as above?
View 2 Replies
Sep 28, 2004
is there a way to keep the content of a mc (attached content) when I duplicate it? I know that duplicate remembers size, position, rotation etc. But I want to get the attached content too.
[Code]...
// Now I want to duplicate the Container to get a copy of it (Container2_mc) Countainer1_mc.duplicateMovieClip("Container2_mc", 10)
View 3 Replies
Oct 2, 2004
In the code I am working on I am attaching MCs to other MCs. However, when I remove the second MC the first one gets removed too. HexStore contains a load of game hex MCs.LastLocation is the last hex MC clicked. myBrigade is the extra MC that needs to be removed from the LastLocation MC. Here is the code:
_root.HexStore[_root.LastLocation].removeMovieClip(_root.HexStore[_root.LastLocation]["myBrigade"]);
View 4 Replies
Nov 19, 2009
An IE issue has me completely stumped. I have a coldfusion page that uses JQuery's AJAX .load function to load in a new flash file that is generated by coldFusion's cfchart tag. This works completely fine in firefox: the new flash file and new html elements load. However in IE: all of the html elements that are geneated with the flash object are loaded, except the flash object and embed tags do not show up at all after running an ajax call in IE. After looking in Fiddler, the flash application type response data doesnt even show up for IE. It does however for Firefox.I thought maybe it has to do with any kind of media, so i changed the chart type to output as a jpg file instead of flash. And it loads completely fine in IE. So something is preventing IE from receiving the flash response data.Here's what i've done so far - and no luck so far:
Added to the HTML header: <META
HTTP-EQUIV="CACHE-CONTROL"
CONTENT="NO-CACHE"><META
[code]....
View 2 Replies
Jun 11, 2009
I need to put a mask on an action script 2 attached movie clip, is it possible? and if it is, how can I do it?
View 2 Replies
Aug 17, 2009
I wasn't sure if I were to put this in the Actionscript forum or in here, so I put it in here. I'm making a small test for a game so I made two attached movieclips to the stage. I got them to move at each other, but when they hit, it doesn't detect it. Is there anyway i can make them hit eachother? Heres the code
[Code]...
View 3 Replies