Tagged Questions
0
votes
1answer
16 views
Facebook JS SDK - Does photo album exist? - create album only once
I've got a Flash App using JS in HTML to communicate with Facebook. I want to occasionally add photos to a single album so, I would like to know how to detect if a Facebook Photo Album exists so I ...
0
votes
1answer
39 views
HTML to embedded Flash - ExternalInterface callback won't work
I'm an HTML novice so I'd really appreciate some help.
I want to communicate between my HTML JS and my embedded SWF.
I can call my JS functions in my html from Flash which works. But I can't ...
1
vote
0answers
15 views
How to translate AS3 urlrequest.data POST request to javascript XHttpRequest (formdata)
I have a piece of AS code that must be translated to javascript. Most of the things work okay now but only uploading (in chunks) fail. I get a message back from the server "Different file size". I ...
1
vote
1answer
31 views
how to close web page in the flash
i want to close the web page when user click the button in the flash.this is the code i used
public static function close():void{
// ExternalInterface.call("window.close()");
...
-2
votes
0answers
43 views
linking trouble with as3 code
This as3 code :
private function showLinks():void
{
var url:String = ExternalInterface.call("window.location.href.toString");
url += url.indexOf("?") == -1 ? "?" : "&";
...
0
votes
1answer
35 views
as3/javascript loan formula to calculate principle from weekly rate
I have an AS3 function to calculate weekly repayment value provided I have values of loan amount, interest rate & term in years.
private function calculateRepayment(_loanAmount, _years, ...
0
votes
1answer
40 views
Boolean is true in Flash, but false in Javascript
I have this function in Flash:
public function checkFile(file:String):Boolean{
var b:Boolean;
var responder:Responder = new Responder(function(reply:Boolean):void{
...
0
votes
1answer
43 views
Custom export pdf DataTables TableTools
I tried to customize my pdf export to make a good look pdf export table but i'm with some problems.
Once i'm not good with AS programming i don't understand how i customize my export file.
The ...
-4
votes
0answers
27 views
Load image in AS3 with a reference that is in a Java Script
I am trying to create a flashMovie were i want to load images that i get form facebook accounts. i have set up the javascript which works perfect !
However i would like to load the image in AS3, i ...
2
votes
0answers
53 views
Chrome Notification/Permission Bar - Detect if visible
Chrome displays the following notification bar when flash requests access to the camera or microphone...
Is there any JavaScript or AS3 way to be detect if this is/isn't visible?
-2
votes
2answers
85 views
Loading Javascript in Flash (picture reference)
I need help! i want to load a picture url in Flash AS3 i have the following code in javascript that shows the picture. however i want to load the same reference in Flash..
...
0
votes
0answers
29 views
Universal Analytics tracking for embedded Flash content
We have a Flash (Flex) application embedded on a webpage. The webpage already has our Universal Analytics JavaScript code, and now we want to also track the application's events using Universal ...
0
votes
2answers
54 views
Access variables like a text?
Let's say i got a variable Var123;
var x = "Var";
var VariableMixLOL = x + "123";
//so VariableMixLOL should be equal to Var123, ex. Var123 = "Abc", VariableMixLOL should be "Abc" too
How can I do ...
-3
votes
4answers
77 views
How to track variable's value with chrome debugger tools as it run
Is there way to track the value of a certain variable with chrome debugger meanwhile it run?
I'm debugging a javascript code witch contain some variables related to sound, these variables change ...
0
votes
0answers
20 views
The same swf plugin has different performance when loaded by different JS
The JS code loading the swf plugin is the same, But one is written in a very simple html page A, the other is embedded into a website production B.
I used the swf to collect audio data.
...