• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

problem regarding FlashVars

New Here ,
Apr 27, 2011 Apr 27, 2011

Copy link to clipboard

Copied

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
   
<head>
       
<title>flashVarsTests</title>
       
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
       
<style type="text/css" media="screen">
        html
, body { height:100%; background-color: #ffffff;}
        body
{ margin:0; padding:0; overflow:hidden; }
       
#flashContent { width:100%; height:100%; }
       
</style>
   
</head>
   
<body>
       
<div id="flashContent">
           
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="400" id="flashVarsTests" align="middle">
               
<param name="movie" value="flashVarsTests.swf" />
               
<param name="quality" value="high" />
               
<param name="bgcolor" value="#ffffff" />
               
<param name="play" value="true" />
               
<param name="loop" value="true" />
               
<param name="wmode" value="window" />
               
<param name="scale" value="showall" />
               
<param name="menu" value="true" />
               
<param name="devicefont" value="false" />
               
<param name="salign" value="" />
               
<param name="allowScriptAccess" value="sameDomain" />
               
<param name="flashvar" value="message1=HelloWorld" />
               
<!--[if !IE]>-->
               
<object type="application/x-shockwave-flash" data="flashVarsTests.swf" width="550" height="400">
                   
<param name="movie" value="flashVarsTests.swf" />
                   
<param name="quality" value="high" />
                   
<param name="bgcolor" value="#ffffff" />
                   
<param name="play" value="true" />
                   
<param name="loop" value="true" />
                   
<param name="wmode" value="window" />
                   
<param name="scale" value="showall" />
                   
<param name="menu" value="true" />
                   
<param name="devicefont" value="false" />
                   
<param name="salign" value="" />
                   
<param name="allowScriptAccess" value="sameDomain" />
                   
<param name="flashvar" value="message1=HelloWorld" />
               
<!--<![endif]-->
                   
<a href="http://www.adobe.com/go/getflash">
                       
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                   
</a>
               
<!--[if !IE]>-->
               
</object>
               
<!--<![endif]-->
           
</object>
       
</div>
   
</body>
</html>

above code is the generated html.

I use Flash Professional CS5 Actionscript 3.0

Here's the code in my Flash file

if(root.loaderInfo.parameters["flashvars"] != null){
    myText.text = root.loaderInfo.parameters["flashvars"];
}

Just trying to display the flashvars on to the stage with the text named myText

By the way this part <param name="flashvar" value="message1=HelloWorld" /> I only put this after generating the html file through flash.

Any response is greatly appreciated.

TOPICS
ActionScript

Views

964

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Apr 27, 2011 Apr 27, 2011

I don't think you are accessing/testing the correct things.  Try changing yourFlash code to...

var params:Object = LoaderInfo(root.loaderInfo).parameters;
if(params != null){
    myText.text += String(params["message1"]);
}

Votes

Translate

Translate
LEGEND ,
Apr 27, 2011 Apr 27, 2011

Copy link to clipboard

Copied

Just a quick noticing that you use both "flashvars" versus "flashvar"

  

<param name="flashvar" value="message1=HelloWorld" />

versus

  

if(root.loaderInfo.parameters["flashvars"] != null){
    myText.text = root.loaderInfo.parameters["flashvars"];
}

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 27, 2011 Apr 27, 2011

Copy link to clipboard

Copied

Ops! my fault...

I already fix that typo error still didn't work.

Thanks

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 27, 2011 Apr 27, 2011

Copy link to clipboard

Copied

By the way I use flash player 10.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 27, 2011 Apr 27, 2011

Copy link to clipboard

Copied

I don't think you are accessing/testing the correct things.  Try changing yourFlash code to...

var params:Object = LoaderInfo(root.loaderInfo).parameters;
if(params != null){
    myText.text += String(params["message1"]);
}

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 27, 2011 Apr 27, 2011

Copy link to clipboard

Copied

I already apply the code still didn't work. I used Flash Professional CS5 and flash player 10.

result is undefined.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 27, 2011 Apr 27, 2011

Copy link to clipboard

Copied

got it fixed.

Thanks.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 27, 2011 Apr 27, 2011

Copy link to clipboard

Copied

LATEST

You're welcome

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines