ActionScript :: ExternalInterface - Cannot Access MovieClips From Callback

Dec 4, 2010

Basically, I have some functions in my as file. Some of them play with a mc instance. The instance is not available when calling the function that uses it as callback.

AS
function B(){
ExternalInterface.call('console.log','ok')//OK!!!
} //italy is a MovieClip on the Main timeline
function A(){ B();
ExternalInterface.call('console.log',italy)//Error!
} ExternalInterface.addCallback('test',A);

JS
$('flash').test();//flash is my html swf object

The error I get trying to reference italy from A (only) whem called from javascript:
Uncaught exception: Error in Actionscript.
Basically, the italy movieclip is available through the AS functions. But it isn't available if I call an AS function from javascript. As you can see though, I see B from A. It's only Italy that I can't see. why?

View 1 Replies


Similar Posts:


Javascript :: ExternalInterface Callback Not Working

Oct 26, 2011

I'm trying to call a function in my ActionScript from my JavaScript, I've managed to successfully do this with another flash file but in the current one it's failing for some reason. I'm using jQuery SWFEmbed, this is my JS code:[code]The ExternalInterface.call work, and the trace outputs true, I have no idea what's going on.If you could also tell me how I can pass parameters to a ExternalInterface callback.

View 1 Replies

Javascript :: Flex ExternalInterface Callback?

Dec 5, 2011

Flex:

public function callFromJavaScript():String
{
test.label='dfdsfsdf';
return "1";
}
public function init():void {

[Code]...

I have no clue wich one are crossbrowser compatible (cant install IE to test out)I have tried multiple but i cant get them to work(in any browser), im probably using the wrong id, ive been trial & erroring for a couple of hours but i don't have anything working.(i heard there was a problem with ExternalInterface.addCallback on a local file system?, should i upload the swf? < is the flex code right& problem = javascript/html side?)

View 1 Replies

Javascript :: Error Accessing Class Variables Within An ExternalInterface Callback

Aug 28, 2011

Here's my actionscript (compiled with mxmlc, embedded into html, and the functions are called with js):

[Code]...

View 1 Replies

Flash :: Access ExternalInterface From QWebView?

Jan 2, 2012

Is it possible to access Flash's ExternalInterface from QWebView? If so, how can it be done?

View 1 Replies

ActionScript 3.0 :: AIR Use ExternalInterface To Access VBScript?

Jun 15, 2011

I've rarely used AIR in the past, but have call for it now and have a kind of odd situation. A lot of the functionality for the .swf I've made (which needs to be a standalone) exists in a VBScript which the client has provided. if the VBScript can be embedded in an AIR app rather than using an html wrapper?

View 2 Replies

Flash :: Forbid ExternalInterface Access To Loaded SWF?

Mar 5, 2012

We have a Flash app (AS3).This is a desktop application that runs in our own projector.No Air.The projector is written in C++.The projector gives Flash part an indirect access to Windows API via ExternalInterface.Now we want to let our community to create plugins.Just to let them make a small animated picture with a bit of Action Script 3.A plugin is going to be loaded as external .swf file at runtime.And, of course, we would like our users to distribute the plugins on the net.But, we have a security concern.What if some bad person would take advantage of the indirect access to Win API?I have made a small test.A child .swf loaded into the program tries to call ExternalInterface methods.It turned out the child.swf was able to do this.So every .swf file loaded into our program will automatically has an access to Win API.Downloading plugins for our program becomes as dangerous as an .exe file.Can we forbid ExternalInterface access to the loaded .swf?If not - how would you implement plugin system in AS3 with security in mind

View 3 Replies

Javascript :: ExternalInterface.addCallback, Access Of Undefined Property?

Sep 10, 2011

I am trying to use javascript to run AS3 functions. When I attempt to compile I'm getting an "Access of undefined property" error message. I've read a few things online about this but I'm still not understanding it. I want to have the flash file always listening for javascript.

[Code]...

View 2 Replies

ActionScript 3.0 :: Access Built-in Functions Not Exported With ExternalInterface.addCallback()?

Sep 23, 2010

I am trying to write C++ code to interface to arbitrary instances of flash player 10 contained in arbitrary web pages from IE. All I need to be able to do is:

1) determine if the player is playing,

2) start playback, and

3) stop playback.
 
I am searching for a way to so this programmatically, without resorting to simulating user input to the control.
 
I have played around with the IShockwaveFlash COM interface which works OK on some sites but not others (e.g. not on YouTube). I am wondering if it is possible to use IShockwaveFlash::CallFunction() with the appropriate XML string to invoke predefined functions in ActionScript that have not been explicitly exported using ExternalInterface.addCallback().
 
Or perhaps there is enough functionaly using accessibility and the IAccessible interface?

View 3 Replies

C# :: .net - Access Flex Application ActiveX / ExternalInterface In Separate Process?

Mar 5, 2010

I need to fetch a flex application from a process in C#.

How can i get access to the externalInterfaceAPI when the flex application is running as a Application?

EDIT: After further reading it looks like it is possible, as from what i understood, a flex stand alone application is a ActiveX "container", so what i need is to get access to the ActiveX container, and from there the externalInterface API.)

View 1 Replies

ActionScript 3.0 :: Access IK Structures Within MovieClips?

Jul 9, 2010

I have a good bit of knowledge regarding OOP underneath my belt, and working with AS3 has so far been pretty awesome. That being said I am having a little bit of trouble working with Inverse Kinematic structures and AS3.Here is my predicament:

So what I would like to have is a number of tentacles on the stage that reach out for the mouse cursor. Through all the tutorials and whatnot that I have sorted through thus far I have gotten it working, however I have only gotten it working when the armatures are placed in the main scene. I have made a tentacle movie clip that has an armature within it and placed a number of those within the scene. I can modify the positions of the endJoints of those tentacle movie clips by gaining reference to the respective armatures using the following [code]...

View 1 Replies

Use String Values To Access Movieclips?

Dec 24, 2010

I'm just wondering if it is possible to use a string values as a way to use the addEventlistener function.[code]...

View 5 Replies

ActionScript 3.0 :: Access Nested Movieclips?

Mar 12, 2011

How do you access a nested movieclip? how do you access stuff in mc2_mc or mc2_mc itself  from within mc1_mc or maintimeline?

View 2 Replies

Flex :: Access Movieclips From An Imported Swf?

May 5, 2010

What are the steps necessary to access movieclips from an imported swf within a Flex application?

View 1 Replies

Flash :: Access Movieclips Within An Imported Swf?

May 6, 2010

I have imported a swf (not created with Flex, i.e. non-framework) into a Flex application. Once loaded, I would like to access movieclips within that imported swf. [URL].. it seems straightforward; however, their examples are between a Flex app and an imported swf (created with Flex).

Like their example, I'm trying to use the SystemManager to access the imported swf's content; however, I receive the following error:

TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::MovieClip@58ca241 to mx.managers.SystemManager. Is this error occurring because I'm importing a non-framework swf into a framework swf?

[Code]...

View 2 Replies

Actionscript 3 :: Access Variables In Other Movieclips?

Aug 9, 2011

I'm new to actionscript 3 and I'm trying to get a few simple things going, such as setting variables in other movieclips... So let's say I have an "apple" movieclip on the root/stage, and I want to access other variables on the root, or in other movieclips. How would I do that? In actionscript 2, I would use something like

_root.thisVar = 1;
_parent.thisVar = 1;
and with other movie clips I would use

[code].....

View 1 Replies

ActionScript 3.0 :: Strings To Access Movieclips?

Feb 9, 2012

TypeError: Error #1034: Type Coercion failed: cannot convert "brick1" to flash.display.MovieClip.so I tried tracing e.target.name and it gave me the correct instance names for each movieclip, however when I try moving the object with then it gives me the above error.

ActionScript Code:
import flash.events.Event;
import flash.display.MovieClip;[code]........

View 6 Replies

ActionScript 3.0 :: Access A Button Within Multiple MovieClips?

Jul 20, 2011

I have the following code that loads MovieClips to the stage:

[Code]......

Let's say I have 18 MovieClips and on the 18th MovieClip I have a button that I need to access. How would I do that? The following doesn't work:

Actionscript Code:
sp.bm.Page18._homeBtn.addEventListener("mouseUp", goHome);

Gives error: Error #1010: A term is undefined and has no properties.

View 4 Replies

ActionScript 3.0 :: Access Buttons Or Movieclips In Animations?

Aug 3, 2009

I have a flash with animations playing one after another. Say animation 1 finishes and i have a button which says Play Next named as playNext when i add the below code playNext.addEventListener(MouseEvent.CLICK,functio  n(){gotoAndPlay("indexFade");}); on the last frame or the first frame ater stop it says ReferenceError: Error #1065: Variable btnChallange is not defined. at FB_index_fla::MainTimeline/FB_index_fla::frame1()

View 5 Replies

ActionScript 3.0 :: Can't Access MovieClips And Functions In Loaded SWF

Sep 28, 2011

I'm trying to simply access anything inside this loaded SWF and all I get is 'null'.
 
I have code in the parent SWF that needs to tell the child SWF movieclip what to do but nothing works. This was a piee of cake in AS2 and I can't seem to get anything to crossover in AS3.
 
Here's my code: 
 
import com.greensock.TweenMax;
import flash.display.MovieClip;
var myLoader:Loader = new Loader();

[Code]......
 
panel2 traces null and all the clips loaded within pull up undefined property errors.

View 1 Replies

Flash :: Embed Access Child Movieclips?

Sep 11, 2011

So I am using this code to embed my .swf file. I am creating classes for each asset in my library.

[Embed('assets/assets.swf', symbol='game.menu.levels')]
public static const LEVELS_MENU:Class;

It works just fine but how can I access a child element multiple depths down?

[Code]...

View 2 Replies

ActionScript 3.0 :: Access Library MovieClips From Class

Feb 26, 2009

I'm creating a card game and I need to use graphics from the library. All the movieclips have their linkage setup. How do I access the library movieclips from a class?

View 2 Replies

ActionScript 2.0 :: Access TextBox In Multiple MovieClips?

Aug 16, 2010

I am new to actionscript. I have a movie clip (mc)in my library. The Movieclip has a dynamic text whose instance is "dynamic_txt". I need to create copies of movieclip and each dynamic_txt within that mc, want to assign a value.

for (i=1 , i< 20, i++) {
mymc = mc add i;
duplicatemovieclip(mc, mymc,10);
_level0.mymc.dynamic_txt.text = i
}

However, "_level0.mymc.dynamic_txt.text = i " is giving me compilation error. Will it be
_level0.['mymc'].dynamic_txt.text = i
or
_level0.'mymc'.dynamic_txt.text = i
or anything else. I have tried few combination and either its compilation error or not working as required.

View 1 Replies

ActionScript 3.0 :: Dynamic Access Of Nested MovieClips?

Nov 21, 2011

Say we have a set of similar MovieClips in the library that all use the same base class, such as Car(). Each of these clips in the library contain nested clips, such as windows. Now, different cars can have a different number of windows (an SUV is larger than a smart car), and thus a different number of nested MovieClips. How would one create a list of all the nested MovieClips in a parent clip dynamically? In AS2, for...in was sufficient for this, like so:

Code:
for(var i in this) {
trace(i); //If called at the beginning of a constructor, this would output only the nested

[code].....

View 2 Replies

ActionScript 3.0 :: Access Deeply Nested Movieclips On Stage?

Oct 14, 2008

As you can see on the image, ive created a 1-frame-timeline which has a movieclip called Main_mc (instancename is myMain_mc). Main_mc has 3 movieclips, one is called Intro_mc. These 3 movieclips are not present on the whole timeline. F.e. Intro_mc is just present at frame 2-19. All of these movieclips has instance-names, f.e. myIntro_mc.

Intro_mc is again a movieclip which has more movieclips,which are present on certain frames, f.e. one movieclip is just present at frame 12-20. All movieclips has instance-names. (I code into a seprated actionscript-file.

Problem is that i cant refer to moviceclips which are nested in the movieclip "myMain_mc" which is on the main timeline. I can just refer to movieclips which are on the main timeline (like myMain_mc), i cant go deeper.

View 1 Replies

Actionscript 3 :: Access Nested Movieclips In Flash File?

Dec 12, 2011

I have an application created in Flash Builder 4 that loads SWFs of flash files and I want to access movie clips within these flash files. I can access top level movie clips using:

var assetName:String = "example_mc";
this._graphics[assetName].addChild(this._customText);

However when I want to access nested movie clips I am unsuccessful, I have tried:

var assetName:String = "example_mc";
var assetName2:String = "example2_mc";
this._graphics[assetName][assetName2].addChild(this._customText);

and I have tried:

MovieClip(DisplayObjectContainer(this._graphics.getChildByName(assetName)).getChildByName(assetName2)).addChild(this._customText);

In addition I tried variants of the square brackets and "getChildByName" but still no success.All moviclips are instantiated in frame 1 of the Flash files?

Edit :I forgot to tweak my error handling so an error would be shown, plus all my tests where not showing text, late afternoon on a Mon is not my brightest hour! ;) I worked it out in the end, the solution was either (as above):

MovieClip(DisplayObjectContainer(this._graphics.getChildByName(assetName)).getChildByName(assetName2)).addChild(this._customText);

Or:

MovieClip(DisplayObjectContainer(this._graphics.getChildByName(assetName))[assetName2]).addChild(this._customText);

View 1 Replies

ActionScript 3.0 :: Access Relative Variables Of Movieclip Instances From Root Or Other Movieclips

Feb 1, 2010

In AS3, how can you access a relative variable within a specific movieclip on the stage?I have a test file that changes the variable "myVar" in one of the displayobject movieclips drawn on the stage. I want to simply trace the current value of this displayobject's myVar for additional purposes.In AS2, you would achieve this by calling the instance name and then the variable contained within.Assuming 3 movieclips existed on the stage named Container1¯, Container2¯ and Cotainer3¯trace(_root.myContainer2.myVar);// returns Hello which is value of variable "myVar" within the movieclip instance named "Container2".How would you do this in AS3?[code]

View 6 Replies

ActionScript 1/2 :: Callback For Xml-rpc Module

Feb 12, 2010

I am integrating a flash module with Drupal using XMLRPC module. I am currently calling a node.save on Drupal(which creates a page in drupal), using Actionscript 2.0. On a flash button click, I am currently calling the node.save function. But ideally, I would like the function to be called first and only after the success of node.save, forward to the confirmation url. Right now, I am being forwarded to the page even without node.save being completed. I then have to refresh the page in order to see the results.

[Code]...

View 3 Replies

ActionScript 3.0 :: Callback Functions Bug In OsX 10.7 Cs5

Aug 3, 2011

My as3 code ( build in cs5 osX 10.6 )  doesn't work in flash cs5 osX 10.7!
 
When I store a callback function in a parent class variable the refrence is weak and no more avaiable for other calls!
 
exemple:
 
parent class:
-----------------------------
 
public class Foo
{
protected var _fct:Function;
}

[Code]....

View 1 Replies

Actionscript 3 :: Using A Callback (instead Of An Event)?

Aug 30, 2010

how to write a callback instead of using an event to communicate between two classes (objects) in Actionscript 3.0?

View 2 Replies







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