ActionScript 3.0 :: Access Button From Another Swf File?
Apr 22, 2012
I have a main.swf file. From that file I am accessing the external.swf file which is an external file.
Now, how can I write code on my main.swf file for the button which is on my external.swf file?
Activities.MainPanel.close_btn.addEventListener(Mo useEvent.CLICK, btnClickClose);
Activities.MainPanel.close_btn (This buttons is actually on external.swf file, but I want to write code on main.swf file to execute it on external.swf) how can I control one swf button on other swf file?
View 1 Replies
Similar Posts:
Jul 30, 2011
i created a button on the stage and made it a movie clip and called it's instance name "play_btn" then i made a document class "main.as" and a second class "play button.as".so what i want to do but can't figure out how is to access the instance name in the play button.as file like this...
public class login_page extends MovieClip {
public function login_page() {
play_btn.addEventListener(MouseEvent.MOUSE_DOWN, onPlayDown);[code]...
and then i want to call the function in the main.as.. but the general problem is that i want to access the instance name "play_btn" in the "playbutton.as" file...
View 3 Replies
Jul 31, 2011
i created a button on the stage and made it a movie clip and called it's instance name "play_btn" then i made a document class "main.as" and a second class "play button.as" what i want to do but can't figure out how is to access the instance name in the play button.as file like this...
[Code]...
View 9 Replies
Feb 17, 2009
i have a little issue, this is the script:
import flash.net.navigateToURL;
import flash.net.URLRequest;
button.addEventListener(MouseEvent.CLICK, action);
function action(e:MouseEvent):void
{ var request:URLRequest = new URLRequest("novosti.php");
navigateToURL( request, "_self");
}
button is instance name of symbol - button, and like that script doesnot work there is error 1009:cannot access.....but when i put symbol with instance name button in form of movie clip, script works.
View 2 Replies
Jan 20, 2010
I am wondering if it is possible to use random file access for reading and writing data to file in Actionscipt 3.0 similar to that what is in Visual Basic?
View 1 Replies
Mar 9, 2011
How to let my local running swf-file access a xml-file that is on a server?
I have been to the "Global Security Settings panel" but dont really understand.
View 2 Replies
Apr 1, 2009
I have basic knowledge of Flash and AS3.0. Suppose i have a flash swf file(main.swf). In this main.swf file, i loaded another swf file(sub.swf) by writing the following code snippet in main.swf file as shown below:
var textLdr:Loader=new Loader();
var noteUrl:String = "AddNote.swf";
var noteUrlReq:URLRequest=new URLRequest(noteUrl); textLdr.load(noteUrlReq);
addChild(textLdr);
Now, how to acess the data present in main.swf into sub.swf.Note: Here data represents values/data stored in variables/objects of main.swf file.
View 3 Replies
Nov 9, 2011
i have a function(initialize) inside the a.as File.i want to access the that Variable from aaa.fla file?.How Can i access the Variable?my main class is a.as file ,inside a.as file i load the aaa.swf file
public function initialize(parameters:Object, stage:Stage,
loaderInfo:LoaderInfo, pluginHostWhitelist:Array):void
{
sourceId=loaderInfo.parameters.src;
[code]....
My aaa.fla Its in Another place
import fl.motion.ColorMatrix;
import flash.filters.ColorMatrixFilter;
var sourceId:String// here i want to access the "sourceid" variable from a.as file
trace(sourceId)
View 3 Replies
Nov 9, 2011
i have a function inside the a.as File.i want to access the that Variable from a.fla file?Both are Different places.But i load the a.swf into a.as.How Can i access the Variable?
ActionScript Code:
function initialize(parameters:Object, stage:Stage, loaderInfo:LoaderInfo, pluginHostWhitelist:Array):void
{
[code]....
View 3 Replies
Feb 22, 2010
I have the need to change a variable in a child Flash file.
The setup is a parent Flash file, that has called a child Flash, and placed it in a movieClip.
I can send a variable using Javascript to the parent Flash file, but not directly to the child Flash file. Is there a way that I can access the child Flash file directly with Javascript?
Or do I need to send the variable to the parent Flash file, and then have the parent send the variable to the child Flash file? Is there a sort of dot notation that I can use with Javascript to get to the child Flash file without first accessing the parent, when the child is added to the parent using the loadClip function in flash?
View 2 Replies
May 26, 2009
in a class file used by my fla I have the code below. How do I access that variable so that I can display it in a textbox in my movie?
PHP Code:
var myBitrate:StringmyBitrate = String(_ds.currentStreamBitRate);trace("MYBITRATE " + myBitrate);
View 10 Replies
Apr 6, 2010
We have a swf file that we want to secure and make available only to authorized users.
I embedded the file in an aspx page and that works fine, since ASP.NET handles the aspx page, I can use ASP.NET authorization features and in the web.config restrict the access to roles="AllowedUsers" for example.
However smart users could still get to the file by accessing directly for example www.mysite/flash.swf. We want to make that kind of access secure.
View 2 Replies
Dec 14, 2009
i have gave this action on the timeline but i m getting this error (Access of undefined property)
close_btn.addEventListener(MouseEvent.CLICK,connection);
function connection(evt:MouseEvent):void
{
[code]......
View 1 Replies
Nov 18, 2011
I've created a few buttons (which are really movieClips) that all have instances named button1, button2, etc. So I created a For loop and put an addEventListener in it for a roll over. The problem is the function called in the listener tells the button to go to frame 2, but there's no way to call tot hat specific button.[code]...
View 3 Replies
Dec 8, 2011
A designer gave me an fla file with his design for a banner with some buttons and it is my job make those buttons do stuff. However, I can't seem to get a reference to any of them in actionscript. I am using CS5.5 fp9 and as3. The buttons in the design are instances of symbols (graphic) from a library. Through the 'edit symbols' menu in the top right corner of the window that displays the design, I can navigate to the different buttons and I managed to change them to type button or movieclip so that I could give them instance names. However, even with instance names, I still can't access them from actionscript.
I think it may have something to do with the way these symbols have been added to the stage. I can see them in the design view and when I run the project, so they must be on the stage right? However I cannot select them in the design by clicking on them. Only by using the 'edit symbols' menu can I select them.
It seems that if you 'lock' stuff in design view, you can't work with it in developer view either. Not even in actionscript! The buttons in the design I received were locked from the beginning, it didn't even occur to me that it could be something as silly as that!
View 1 Replies
Sep 14, 2009
In my timeline I have a button, with an instance name of view_only_button. On my actions layer, I have code that is attempting to add a listener for a MOUSE_DOWN event. The frame that has the button is the same as where the actionscript is going, but of course it is two different layers. When I try accessing the variable by the code below, I get the error:
Error #1009: Cannot access a property or method of a null object reference.
ActionScript Code:
view_only_button.addEventListener(MouseEvent.MOUSE_DOWN, viewOnlyDownHandler);
function viewOnlyDownHandler(event:MouseEvent):void{
//Code to execute inside of the event call
}
When commenting the addEventListener line out, the error goes away. I am unsure why this would issue an error
View 7 Replies
Jun 26, 2010
I'm trying to access a button through my subClass, the button I'm trying to access is located on timeline and this is the error I'm getting once I run the code:1120: Access of undefined property btn_Test., maybe someone could look at the following code and indicate what cause the error
[Code]....
View 4 Replies
Apr 23, 2011
I'm completly dumbfounded here, I even copied one of my previous projects and it still doesn't work... driving me up the wall.I can't access the button from the stage though my sub object class within the document class. Instances are set right, works when it's actually on the document class. I've passed a reference to the stage as well.I've been looking for hours on the net and can't find anything.
Document Class: (button works here)
Code:
SoundAccess = new soundload(stage);
[code].......
View 9 Replies
Sep 7, 2011
I'm stuck on this one :
I am developing a player in as2.
I 've got a clip, containing a button inside it.On this clip, I have 3 listeners, onRollOut, onRollOver, and onRelease.
Basically the clip is a line for a menu, and if it is a chapter, it has a arrow button, deploying or hiding the content (other line clips without arrow) of the chapter.
I hope i'm clear enought ^^
So the 3 listeners are for changing the color of the line if the mouse goes over (onRollOver and onRollOut) and the 3rd one is to redirect to the slide associated with the line.[code]...
View 0 Replies
Mar 1, 2009
I am learning how to create menu systems for a game and have a few different "screens" (movieclips with buttons and such).
I am getting Undefined Property errors when I try to access a button from the class file of a screen.
Example: I have a MainMenu screen. This has its own class MainMenu.as.
Inside the library MainMenu movieclip, I have a button, instance named start_button.
But inside the MainMenu.as file, I try to do start_button.addEventListener(...) and it says undefined property. I tried doing getChildByName("start_button"), that won't work either.
View 1 Replies
Jun 1, 2009
I am using a flvplayback component which I have attached to my own skin.
I want to be able to target the full screen toggle button since I can't get the fullscreen to work and others posts have led me to think that it might be better to code that bit myself.
For the skin fla the button that I want to get at has this written in the properties class box "fl.video.skin.FullScreenButtonOnOver"
I figured I might be able to get at this from my main timeline so I added the code below :
Code:
stop();
function edward(event:MouseEvent):void{
trace ("the button was pressed");
[Code].....
View 1 Replies
Oct 25, 2009
I made a button in the library. Then I made some text in the button. I wrote "myText" in Instance Name Box. The buttons are added in actionscript.I want to access and change the text in the button in ActionScript.
myButton.myText.text = "this isn't working";
But it tells me "A term is undefined and has no properties." as a runtime error. What the hell? How do I get to that textField?
View 2 Replies
Feb 11, 2010
I need a bit of assistance in a game making.Basically ve got the mysteryNumber inside thefunction working but I need functions in the other ActionScript files to access themysteryNumbe.So basically I have a:
Main.as (with the mysteryNumber function)
function init():void
{
[code].....
View 21 Replies
Apr 21, 2009
I wrote a custom class and I need it to change the attributes of movie clip for me, not sure how the syntax goes, this is what I thought was right, but om a newbie:
[Code]...
View 16 Replies
Jul 15, 2009
Say I'm using a URLLoader to access a PHP file.Is there some way to verify, from the PHP file, that it is Flash attempting to connect?Like, does Flash Player send some sort of unique data to the server when requesting the page that I can use to verify the integrety of the data (in order to prevent people sending data to the PHP file from any other souce)?
View 1 Replies
Dec 7, 2009
Typing either localhost or 127.0.0.1 in any browser on a Macintosh (os 10.5) does not give access to the host computer.The following Actionscript code generates the following error:
var XMLURL:URLRequest = new URLRequest("http://localhost/quoteRotator/quotes1.xml");
Error opening URL 'http://localhost/quoteRotator/quotes1.xml'
Error #2044: Unhandled io error . . .
[code].....
View 8 Replies
Feb 13, 2011
Got a public funtion within lights.as file called turnLightsOn.
Now I need to access this from the time line actions - I need to place it within an oncompletion function.[code]...
HOW do I paste an example of my code on this forum? It would be best for folks to see all the code?
View 1 Replies
Jun 8, 2011
I have two flash files myVideo1.swf and myVideo2.swf Each one contents FLVPLAYBack component . myVideo1.swf FLVPLAYBack component instance name is "video1" myVideo2.swf FLVPLAYBack component instance name is "video2" I want to be able to access myVideo2.swf from myVideo1.swf using as3. I want when I click play button on myVideo2.swf the myVideo1.swf would stopped. Bother flash files are in the same folder.
View 2 Replies
Nov 4, 2010
it's just not working for me I made a crossdomain.xml file that looks like this:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*" />
</cross-domain-policy>
i put that in the folder with the php file i want to access[URL]..
View 1 Replies
Oct 18, 2010
Having some issues accessing my param tags from within actionscript. Essentially I have the following tag:
<param name="config" value="config" />
But I am unable to access it. There are two issues that I have, and I've been searching the internet high and low for the answers.
1) How do I even access the parameter? I have some people saying use _root.config, LoaderInfo(this.root.loaderInfo).parameters["config"], and just config. None work, and searching for this stuff is so hard because it's so generic.
2) I assume that once I do find out how to access the param that is being passed, I'm going to have issues with accessing it from another file because I read somewhere during my searching that other files do not have access to global variables. If this is the case, how do I do that? I have seen _globals thrown around a couple of times and some people say it works, some don't.
View 1 Replies