Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6572749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:02:44+00:00 2026-05-25T15:02:44+00:00

I’m trying to create a swfPanel for Flash CS5.5 using JSFL. I created my

  • 0

I’m trying to create a swfPanel for Flash CS5.5 using JSFL.
I created my interface in flash and try to communicate with a JSFL command.
So, in my .fla file, I use an ExternalInterface with callBack to call a specific function in JSFL, and then swfPanel.call() for the return.
The problem I encounter is that I can’t pass an Array as argument for the call function (after the AS3 function name). Here’s the code :

In AS3 :

function init():void{
    ExternalInterface.addCallback("callBackPanel", JsflCallback);
    MMExecute("fl.runScript( fl.configURI + \"AirMobileFramework/AirMobileFrameworkPanel.jsfl\", \"checkSettings\" );");
}

function JsflCallback(... args):void{
    jsTrace("callback");
}

function jsTrace(str:String):void{
    MMExecute("fl.trace(\"" + str + "\");");
}

In JSFL :

function checkSettings(){   
    var fileSettingsUrl = fl.configURI + "AirMobileFramework/settings.fwk";
    var exist = FLfile.exists(fileSettingsUrl);
    var result = new Array("settings", exist);

    if(!exist){
        FLfile.write(fileSettingsUrl, "");
    } else {
        result.push(FLfile.read(fileSettingsUrl));
    }

    callPanelBack(result);
}

function callPanelBack(result){
    fl.trace("result: " + result.length + " > " + typeof result + " >> " + result[0]);
    var panel;
    if(fl.swfPanels.length > 0){ 
        for(x = 0; x < fl.swfPanels.length; x++){
            if(fl.swfPanels[x].name == "AirMobileFramework"){ 
                panel = fl.swfPanels[x];
                panel.call("callBackPanel", result); 
                break; 
            } 
        }
    } else {
        fl.trace("No existing panel");
    }
}

When calling panel.call(“callBackPanel”, result[0], result[1]); there is no problem, my callback is well called, but when using panel.call(“callBackPanel”, result); I’ve an error :
La ou les erreurs JavaScript suivantes se sont produites lors de l’exécution de AirMobileFramework :
La ou les erreur(s) JavaScript suivantes se sont produites :

Any idea ??

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T15:02:44+00:00Added an answer on May 25, 2026 at 3:02 pm

    I would guess that it’s because JSFL can’t parse an array. In the example you give, with result[0], result[1] you have seperate values (probably strigns or numbers), and that should give no problem.

    What I would do is this:

    panel.call("callBackPanel", result.join("@*$");
    

    and in the as3 function simply just arg.split(“@*$”)

    if your input could have the string “@*$”, then you could simply make a call to the SWF for each item in result, and when you’re done with the loop there, tell the SWF to gather the things – like this:

    function callPanelBack(result){
        fl.trace("result: " + result.length + " > " + typeof result + " >> " + result[0]);
        var panel;
        if(fl.swfPanels.length > 0){ 
            for(x = 0; x < fl.swfPanels.length; x++){
                if(fl.swfPanels[x].name == "AirMobileFramework"){ 
                    panel = fl.swfPanels[x];
                    panel.call("callBackPanelStart"); 
                    for(var i=0; i < result.length; i++){
                        panel.call("callBackPanelArgument", result[i])
                    }
                    panel.call("callBackPanelEnd"); 
                    break; 
                } 
            }
        } else {
            fl.trace("No existing panel");
        }
    }
    

    and then in AS3:

    function callBackPanelStart():void
    {
        jsflArray = [];
    }
    
    function callBackPanelArgument(argument:*):void
    {
        jsflArray.push(argument);
    }
    
    function callBackPanelEnd():void
    {
        // execute whatever you must on the result
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically, what I'm trying to create is a page of div tags, each has
We are using XSLT to translate a RIXML file to XML. Our RIXML contains
I'm trying to create an if statement in PHP that prevents a single post
I am trying to understand how to use SyndicationItem to display feed which is
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I want use html5's new tag to play a wav file (currently only supported
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.