Tagged Questions
The externalinterface tag has no wiki summary.
10
votes
6answers
25k views
Cross Domain ExternalInterface “Error calling method on NPObject”
I am trying to enable communication between Javascript and Flash via ExternalInterface across domains. The Javascript works great when it is located on the same domain as the SWF. But in one case, the ...
8
votes
2answers
863 views
Returning a byte string to ExternalInterface.call throws an error
I am working on my open source project Downloadify, and up until now it simply handles returning Strings in response to ExternalInterface.call commands.
I am trying to put together a test case using ...
7
votes
2answers
813 views
Why does ExternalInterface breaks when I pass parameter with JSON like string?
I have a very odd problem with Flash 10 and ExternalInterface. I am currently using a homemade bridge to use RTMFP with Javascript and whenever I try to pass data that contains JSON, I get a wierd ...
7
votes
2answers
6k views
Javascript -> Flash throwing “Error calling method on NPObject”
I'm trying to call a Flash (AS3) function from Javascript. When the code runs, I get the error "Error: uncaught exception: Error calling method on NPObject!" From my day's worth of googling around, ...
6
votes
3answers
112 views
Can R cause a file to be opened by another program?
This is a bit of a strange question, but I thought people here might be interested.
Is it possible to have R cause a file to be opened in another program? For example, could you write a command line ...
5
votes
7answers
5k views
Functions registered with ExternalInterface.addCallback not available in Javascript
I'm working on a Flash game that needs to call some Javascript on the page and get data back from it. Calling Javascript from Flash works. Calling the Flash functions from Javascript (often) doesn't.
...
5
votes
4answers
7k views
Problem accessing ExternalInterface exposed method in Google Chrome
My simple ActionScript
I am trying to use Flash's ExternalInterface to setup a callback so that JavaScript can call a method on my Flash object. Everything works fine in Safari, Firefox and in IE, ...
5
votes
3answers
5k views
Send array from Flash (AS3) to JavaScript
Is it possible to send an array from Flash (AS3) to JavaScript using an ExternalInterface call?
I currently am calling a function multiple times from a 'for each' loop inside Flash but it goes too ...
5
votes
1answer
1k views
Javascript to Flash communication without SWFObject.js
Wondering if its possible to communication from javascript to flash without the use of SWFobject or any other extra javascript file.
Currently I am using the following guide:
...
5
votes
3answers
3k views
Actionscript3 to JavaScript communication: best practices
On a more abstract level then a previous question, in my experience there are 3 ways to call a javascript function on an html page from an embedded .swf using AS3: ExternalInterface, fscommand, and ...
3
votes
2answers
729 views
Adobe ExternalInterface not working in IE9
I am calling an Actionscript function from JavaScript and it works in all browsers except for IE9. I narrowed it down to the js function that retrieves the movie object:
<script ...
3
votes
1answer
122 views
What version of IE uses window[objectName] instead of window.document[objectName]?
I am trying to use a Javascript callback to a Flex application embedded in my page. Looking through some examples, I've seen this code used to get a reference to the Flex application:
// Get the ...
3
votes
2answers
749 views
Actionscript 3 Facebook API limitations
I'm creating a Flash-based (AS3) Facebook Connect site using the Actionscript 3 API and though I've got basic FB Connect functionality in place in terms of allowing users to login correctly, I'm ...
3
votes
2answers
347 views
Controlling the scope of a document.write call coming from a third party
I'm writing a webpage that relies on an external javascript file (that I have no control of), which returns data by using document.write's. Is there any way to dynamically call the function without it ...
3
votes
3answers
957 views
Flash SWF not initializing until visible - can I force them to initialize?
I have an application that needs to render about 100 flash graphs (as well as other DOM stuff) in a series of rows that vertically extend many times beyond the current visible window - in other words, ...
3
votes
2answers
668 views
How to get/obtain Variables from URL in Flash AS3
So I have a URL that I need my Flash movie to extract variables from:
example link:
http://www.example.com/example_xml.php?aID=1234&bID=5678
I need to get the aID and the bID numbers.
I'm able ...
3
votes
1answer
606 views
How to pass a reference to a JS function as an argument to an ExternalInterface call?
Summary
I want to be able to call a JavaScript function from a Flex app using ExternalInterface and pass a reference to a different JavaScript function as an argument.
Base Example
Given the ...
3
votes
1answer
703 views
C# Flash - ExternalInterface
We are hosting the ActiveX control in a WinForms application to embed flash.
Is there a good way to get the list of visible ExternalInterface functions that are available for any given swf file?
We ...
3
votes
4answers
448 views
Get ExternalInterface definitions in Javascript
Is there a way to get a list of the exposed functions from a Flash object? For example, you could get a list of all methods in an object by executing:
for (var i in object) {
if (typeof object[i] ...
3
votes
2answers
3k views
AS3 ExternalInterface call using jquery
I'm calling into a flash app embedded in a html page using the ExternalInterface.
The following code works fine (I'm using a button to test):
$(document).ready(function(){
...
3
votes
2answers
361 views
How to list available callbacks exposed by a flash element
Is there a way to query an embedded flash element to determine the available methods that can be executed on it via JavaScript?
Edit:
It appears that in IE it's as simple as
for ( i in flashNode ) ...
3
votes
4answers
14k views
as3 ExternalInterface.addCallback is not working right
I was trying to access swf from javascript, so this example in livedocs is what I'm trying to modify. ...
2
votes
0answers
54 views
Handle iPhone calling from external device (e.g. a car)
How does a car's system handle calls from an iPhone? The device is plugged through into the car's system using the dock connector at the bottom of the iPhone. Now when a call comes through the car ...
2
votes
2answers
96 views
R .call() interface and EXTPTRSXP: Understanding PROTECT/UNPROTECT with externally allocated objects
In the following code, object of type foo is created with a call to foo_new() and an external-pointer to the object is returned to R. Subsequent computations are performed by passing ptr_foo. The ...
2
votes
2answers
419 views
Accessing an ActionScript function via Javascript
Edit: I figured it out, see bellow.
Hey guys,
I'm trying to call a function in an action script using the ExternalInterface.addCallback API, but I can't seem to get it to work. Here's what I have:
...
2
votes
2answers
374 views
JavaScript talking to Flash via ExternalInterface
I have been trying to put together a proof of concept of JavaScript talking to Flash. I am using JQuery and Flash CS5, ActionScript 3.
I am not a Flash developer so apologies for the code, if I can ...
2
votes
1answer
455 views
how to pass value from java script to embedded flex object?
I am trying to figure how to pass string value(url) from html form to embedded flex object.
the only method i found so far is "addCallback" method described in ...
2
votes
1answer
264 views
ExternalInterface call from flash to function in OOP javascript
I can't call a javascript function from flash, when the flash object is added within an OOP structure in javascript. In short the code:
In flash:
if (ExternalInterface.available) {
...
2
votes
2answers
119 views
Is there a way to call a Javascript class method from ExternalInterface?
I can call JS functions with ExternalInterface.call('func_name',.args). OK
But what if I would like to call a js class instance method instead?
ExternalInterface.call('obj.method_name',.args) //this ...
2
votes
3answers
489 views
jQuery(this) and ExternalInterface
Hey Guys,
I've got ExternalInterface to call a javascript function. But how can I now use jQuery to target the .swf that called the function?
For example, I'm calling the "changeObject" function ...
2
votes
1answer
179 views
ExternalInterface. addcallback works locally, but not on server?
Confused by a problem with ExternalInterface.addcallback.
Mainly because I have it ALWAYS working locally, when I test in a browser, but the moment I deploy to a server it stops working.
I've added ...
2
votes
1answer
740 views
Is Flash ExternalInterface use possible in IE9 Beta?
I am trying to get our site to work in the Internet Explorer 9 Beta, and we make extensive use of Flash ExternalInterface, using Javascript to call functions exposed by our Flash movie with ...
2
votes
1answer
437 views
WiX 3.5.2030.0 CreateDatabase fails with 1603 with DTF external UI handler, works without external UI handler
I have a simple WiX (3.5.2030.0) installer on Windows 7 (Windows Installer 5.0.7600.16385 according to msiexec.exe's properties) that uses the supplied custom action for creating a SQL database. When ...
2
votes
1answer
328 views
FlashVars or ExternalInterface
I've been using ExternalInterface up until now in the rare cases I needed to communicate with HTML.
Is FlashVars considered a better/worse or newer/older practice?
or when do you use one or the ...
2
votes
1answer
563 views
How to call a FileReference.browse() from JavaScript?
I am trying to call the browse() method of the FileReference class from JavaScript (a user clicks on a text that uses the ExternalInterface to call a method in Flash).
Unfortunately, I receive an ...
2
votes
1answer
163 views
Is there any way to hide the variables that are being passed to Flash by swfobject when someone views source?
I have some Flash swfs that are embedded using swfobject and I pass them some vars like user id. How do I prevent people from reading these vars? If someone views the source of the php page that ...
2
votes
1answer
1k views
Security Error when trying to call ActionScript function from JS
I have a little test swf to test calling an ActionScript(3.0) function from JavaScript. I am using the Flash documentation as a reference:
...
2
votes
1answer
1k views
IE onbeforeunload not firing ExtenralInterface callback
I have a Flash movie embeded with swfobject in a html container.
Through ExternalInterface I have registered a javascript function to fire callback to my flash app.
...
2
votes
5answers
3k views
Getting current URL in Flash from JavaScript using ExternalInterface and IE
I'm trying to get the current URL that the Flash player is on. Not the URL of the .swf file, but the URL that the browser is pointing to. Thus far I've used:
var st:String = ...
2
votes
4answers
2k views
How can I call an Actionscript function when the .swf is referenced by jQuery?
I have an .swf that I am embedding into HTML using the jQuery SWF Object plugin (http://jquery.thewikies.com/swfobject). I have a number of functions within the .swf that I need to call from within ...
2
votes
3answers
1k views
C# and Flash communication
Is there any way for C# to get a list of the methods the swf exposes through ExternaInterface?
2
votes
1answer
2k views
Javascript to flash via ExternalInterface
I'm wondering if someone could look over my code. I'm trying to pass a dummy variable from javascript to actionscript 3 with the following code:
HTML:
<object ...
2
votes
2answers
6k views
Using ExternalInterface in Flash
I'm trying to edit some flash to make an external javascript function call, but with no success. Here's my actionscript 2.0 code:
//testing external .js calls
import ...
2
votes
1answer
867 views
Why does Flash's ExternalInterface *sometimes* not work?
I have a Flash movie which has a number of actionscript 2 functions which are exposed to Javascript via ExternalInterface. Normally this movie works fine and Javascript can communicate with it. But ...
2
votes
3answers
1k views
Is there a workaround for the missing ExternalInterface.objectID in ActionScript 2
I'm downporting some ActionScript 3 to ActionScript 2 (some ad agencies sadly still refuse to embrace the future) and I've run into the issue that in ActionScript 2 ExternalInterface has no objectID ...
1
vote
3answers
78 views
android- get data as it enters from external keyboard
I have a bluetooth bar code scanner connected to my tablet. Whenever i scan a barcode, and the focus is on the edit text box of my app, the scanned data appears in the edit text.
I want to take this ...
1
vote
4answers
104 views
external interface and swfobject.js issue
Several months ago for a project at work i developed a video player using flash, external interface and swfobject.js. I used external interface to facilitate communication between javascript and ...
1
vote
1answer
50 views
call javascript from flash as3 which is hosted by a different domain
there is a javascript function running on sub.website.com and a flash component hosted in website.com. I add flash object to sub.website.com using object and embed tag and in some point im expecting ...
1
vote
2answers
89 views
Calling AS3 fullscreen with javascript
I got two AS3 functions. One that toggles fullscreen and one that is called with javascript with ExternalInterface that only logs "Hello World".
Both works well in the browser, but if I try to call ...
1
vote
0answers
36 views
jpeg info from flash to javascript
I'm trying to transfer a jpeg from Flash to JavaScript. Is this even possible?
What I mean by that is: Flash is supplied an image from the user and performs some image manipulation. I then need to ...