Tagged Questions
1
vote
0answers
22 views
Externalnterface calls not working in mobile browsers
I have an swf with a simple ExternalInterface call. The swf has been created using Flex.
ExternalInterface.call("alert","HelloWorld");
This runs fine on my machine (without localhost too).
But ...
0
votes
0answers
29 views
Calling a function on swf in facebook from javascript
I have a game on facebook which is talking to its javascript container. I am using ExternalInterface to pass parameters to the JS - this is working flawlessly. The problem starts when I want to pass ...
0
votes
2answers
35 views
ExternalInterface to call a function belongs to a JS object
I'm using ExternalInterface in my AS3 project to do some stuff via Javascript, but now I need to use it to call some function belong to an object.
Something like this (AS3):
...
-2
votes
1answer
87 views
Calling javascript function with Flash as3 [closed]
I've managed to add Google maps to my HTML using javascript and also layered my content so my flash swf file is 'under' my map.
Now all I need is to toggle the map on and off. Heres the code:
AS3
...
0
votes
1answer
94 views
getting TypeError: a.CallFlash is not a function when triggering AS3 externalinterface.addcallback function from JavaScript? [closed]
So im trying to call a flash function using JS..
here is the as3 code
package si
{
import flash.display.Sprite;
import flash.events.Event;
import flash.external.ExternalInterface;
public class Main ...
0
votes
1answer
45 views
Facebook App Error Showing Up For One User But Not Others
I have a Flash app set up in a Facebook canvas and it's using ExternalInterface to call a JavaScript function, then calling a Flash function from JavaScript when the first function completes:
Flash ...
1
vote
0answers
112 views
ExternalInterface.call() breaks .addCallback() functionality
I'm trying to establish simple JS to AS3 communication via the ExternalInterface class in ActionScript. The Flash is just visualising some data (fallback for browsers that cannot handle SVG) so I just ...
0
votes
2answers
229 views
ExternalInterface not working in AS3 with Flash 11 [closed]
I'm trying to create a button which will close a flash overlay using javascript and actionscript. I have found on many websites to use ExternalInterface however I cannot seem to get it to work. Any ...
0
votes
1answer
69 views
File dialog is not showing from flex function
I am trying to execute flex function from javascript with ExternalInterface and addCallback:
<s:Application
xmlns:fx="http://ns.adobe.com/mxml/2009"
...
1
vote
2answers
469 views
how to allow javascript to communicate with flash (Object #<HTMLObjectElement> has no method
I'm trying to send a simple test message from javascript to flash, but I'm getting the error:
Object #<HTMLObjectElement> has no method "listenToJS"
I've read a number of questions on this on ...
1
vote
2answers
173 views
javascript to flash communication without embedding
I am calling my Main.swf from localhost Xampp which contains a prompt button upon click of that button promptclick function is called
AS3 code
function promptClick(event:MouseEvent):void
{
var ...
0
votes
0answers
125 views
Dynamic FLV loaded externally, previous video flickers before new video plays
I have a Chromeless Flash Video Player built using AS3.
I am sending video URLs to that player dynamically in my JavaScript. All of this is working fine, but every time I play a new video, the last ...
8
votes
1answer
227 views
AS3 Flash - render html via ExternalInterface
This is my first question on Stack Overflow. It's not the first time I wanted to write one, but usually I find a solution using the search bar, this time I didn't. The problem I'm tackling is a ...
0
votes
0answers
146 views
externalinterface Control FLV Player Using Javascript
I have a index.html and inside I have 2 buttons,
Play and Pause, for connecting to the flashPlayer,I want to communicate between javascrip and flash player
would you please help me to implement this,
...
1
vote
1answer
156 views
Saving flash game state to server after window.onbeforeunload when swf is cross-domain
My facebook app is a flash game. I want the game swf to save its latest state to the server when the window unloads. Since I embed the swf with swfobject, I use its embed handler to add a ...
0
votes
2answers
155 views
ExternalInterface in ActionScript 3 not working in offline mode
i have problem. I make Flash Video Player with callback to JS, but have a problem when execute page from localdisk. Flash crash with error:
Error: Error #2067: ExternalInterface in this container ...
2
votes
1answer
214 views
Is it possible to debug ExternalInterface from Flash Builder?
I have a project written in ActionScript 3 using Adobe Flash Builder 4.5. It registers several functions in an ExternalInterface, so that they may be called from JavaScript.
If I access the Flash ...
0
votes
1answer
389 views
Handle ExternalInterface Call, comming from local swf file, in Adobe Air 3.4 Actionscript 3 application
So We got a playlist with various swf files, some old as2 animations, some newer.
We download them to a local folder, and can play them fullscreen. all with one AIR (actionscript) application. Now we ...
1
vote
0answers
160 views
Using ExternalInterface with xml prettyPhoto url
I've been trying to get to use the ExternalInterface through an xml file passing the variables for the info into Flash AS3 and can't work out how to get the data to change with each new selection ...
0
votes
1answer
122 views
ExternalInterface as3 and ajax (jQuery) not working in IE
this part of code works in all browsers but not in IE. Can you help me fix this?
function getData(userId, instrumentId, minStep) {
alert(1); // worked!
console.log(userId, instrumentId, ...
0
votes
1answer
152 views
Flash - ExternalInterface calling a JavaScript function inside an AMD/RequireJS module
Is there any way for Flash's ActionScript3 to communicate with a JavaScript function defined inside an AMD module - ie. not directly exposed to the global scope?
0
votes
2answers
3k views
AS3 ExternalInterface.call, why it doesn't work on Chrome or IE?
import flash.external.ExternalInterface;
var pageURL:String = ExternalInterface.call('window.location.href.toString');
The above code seems to work on Firefox, but when I try it with Chrome or IE it ...
0
votes
0answers
89 views
JavaScript code via ExternalInterface
I'm making a flash website using a 100% graphic interface, you can see it here.
How to insert a radio streaming player in the flash movie using the ExternalInterface method?
This is the radio ...
0
votes
1answer
156 views
AS3 File Reference from javascript
Is it possible to use Actionscript 3 file reference from javascript. I need to code an application that will use javascript to call the browse method of the fileReference.
I wanted to be sure this is ...
3
votes
1answer
96 views
ExternalInterface gives me an option of stopping the script when using multiple parameters. Why?
First version:
ExternalInterface.call("$(document).trigger", "opened_file_chooser");
Second version:
ExternalInterface.call("$(document).trigger('opened_file_chooser')");
If I use the first ...
0
votes
0answers
255 views
Javascript throws error when trying to send var to AS3 ExternalInterface
I know there have been tons of questions about this topic already but none of them have solved my issue, perhaps I am just missing something.
Anyways, here is the deal. I have a happy little html5 ...
1
vote
2answers
305 views
Javascript not returning data to AS3 flash
I am hoping someone can help me. I have the following function in FlashBuilder 4 using AS3:
protected function doIt():void
{
if (ExternalInterface.available) {
var ...
1
vote
1answer
467 views
How to pass binary data from javascript to actionscript (webpage to flash) without encoding or saving data?
Situation: I'm trying to replace Flash Socket communication (byte-range) with javascript, to avoid the flash socket security policy file restrictions.
Details: I have binary data from javascript, and ...
0
votes
1answer
176 views
externalinterface firefox bug
I cannot get ANY web-based examples of ExternalInferface to work in Firefox. Is there a bug with my player or Firebug? Take in mind i said NO examples work in FireFox 13.0.1 with FlashPlayer 11.3 on ...
0
votes
1answer
144 views
User Agent is not accessible in Internet Explorer 8 using ActionScript 3
I am using the code below to find the User Agent using ActionScript 3:
var userAgent:String = ExternalInterface.call("navigator.userAgent.toString");
The code is working in Firefox 13, Google ...
0
votes
0answers
126 views
FileReference browse in Flashplayer 10 with Externallinterface [closed]
as known since Flash Player 10 FileReference.browse () is only allowed by certain triggering events. But I would FileReference.browse () like to pass on an HTML element to the Flash via ...
0
votes
2answers
890 views
Getting External Interface to work with swf object, can't figure out what I'm doing wrong
I'm using swf object to embed a swf. I'm trying to user external interface to to call a flash function from JS, but having trouble. I've searched all the docs, read a ton of stuff, and I'm convinced ...
0
votes
2answers
130 views
calling java script in AS3
So i have this expandable banner. And everything is ok with it, but when i'm testing it on our system it's not expanding. And here is the problem. Because our system is using this java script for the ...
0
votes
1answer
625 views
ExternalInterface.callback not working
I'm trying to do a Facebook app that runs a .swf ion the canvas page. I need to get the Facebook user id, that I tried to do using AS3 Facebook Graph Api, but it didn't work, so I've been trying to ...
33
votes
3answers
10k views
Call Angular JS from legacy code
I'm using angular to build HTML controls that interact with a legacy Flex application. All callbacks from the Flex app must be attached to the DOM window.
For example (in AS3)
...
0
votes
3answers
334 views
calling actionscript method from javascript
I am trying to call a actionscript method from javascript, but it says flashObj.method() is not a function. I have declared this method inside a submodule of my flash object. So how to call methods of ...
1
vote
1answer
71 views
What happens if from JS I call SWF which already is busy handling another call from JS?
JS-to-AS3 callbacks work in kinda asynchronous way right? So for example if I ask SWF to download some file, which may take some time (depending on the size of that file), and while it downloads it, ...
0
votes
1answer
326 views
AS3 OSX's quirky scroll effect ruins mousewheel controls
I'm building a web app to design and animate simple 3d scenes using the Away3D library, but the design of the interface itself is built around a scrolling menu which takes up the whole height of the ...
0
votes
0answers
260 views
Actionscript 3, javascript not working in Firefox
I have an expanding banner which uses Actionscript 3 to talk to Javascript and back. It works fine in all browsers but Firefox. I get a variety of different errors in FF depending on the solutions I ...
0
votes
1answer
81 views
Linking SWF and html
Is something like this possible:
I have a flash animation of a glowing orb.
Orb should always be dark, but should glow when i hover over menu items.
SWF file is written using actionscript3.
And ...
1
vote
1answer
154 views
How to make a flash loaded check in Chrome?
I launch an Actionscript function through javascript via ExternalInterface.
<script type="text/javascript">
var flashvars = {};
var params = {};
params.allowscriptaccess = "always";
var ...
1
vote
2answers
434 views
Making sure a javascript object exists before calling it from Flash
I am developing a flash application for a website I have no direct access to. The flash application is supposed to call a javascript function on the website, defined by the website publisher. I got ...
0
votes
1answer
2k views
Flash ExternalInterface.addCallback error
So I have one function:
public function handleOnSave(e:MouseEvent):void
{
var ml:MultipartURLLoader = new MultipartURLLoader();
var bmData:BitmapData = ...
1
vote
1answer
2k views
jQuery swfobject AS3 ExternalInterface not working
As you can tell by the title, I am having some trouble with AS3 ExternalInterface and jQuery / swfobject.
ActionScript :
if (ExternalInterface.available) {
ExternalInterface.call('init');
...
0
votes
0answers
337 views
ExternalInterface.call issue
I have this weird issue with ExternalInterface.call (AS3). I have 2 different buttons. Once I clicked on each button it calls a function that fire ExternalInterface.call to JavaScript function. ...
0
votes
1answer
222 views
How do I get this function in ActionScript to return an array to JavaScript using ExternalInterface
I am very new to both JavaScript and ActionScript. I am trying to get javascript to call a function in ActionScript and store the returned array. I have looked everywhere for help and i cant seem to ...
1
vote
4answers
3k 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
300 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
1k 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 ...
0
votes
1answer
698 views
ExternalInterface callback not working
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 ...
