[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.8

Getting a variable passed in FLASH using Javascript:

Asked by pborregg in Adobe Flash

I followed this example on the macromedia website and all I keep getting is:

Error:  window.document.movie is NULL or Not and Object.

Anyone have any thoughts on this?

Here's the link to Macromedia's site:

http://www.macromedia.com/support/flash/ts/documents/set_variables.htm#javascript

And this example:

http://www.flashkit.com/tutorials/Interactivity/How_to_a-Chris_Pe-577/index.php

Thanks for anyone who can help.

Peter



To create this sample, do the following: 1  Open a new Flash document.
2  Create a text field with variable name "text". (See above for steps)
3 Add an additional frame to the Flash movie so that it has at least two frames.
4  Save the document as "movie.fla" and publish your document (using the "Default" HTML template) to create the Flash movie ("movie.swf") and HTML page ("movie.html").
5  Open the "movie.html" file with a text editor such as SimpleText or Notepad.
6  Between the HEAD tags, insert this code. Be sure to copy it exactly:

<script language = "JavaScript">

<!--
function PassFlash(){
    window.document.movie.SetVariable("text", "hello");
}
//-->
</script>
 
7 In the EMBED tag, look for the HEIGHT and WIDTH parameters. Insert the following parameter (if it is not already in there):

NAME=movie
8 After this has been added, insert the follow code directly following this:

swLiveConnect=true  
9  Just above the closing body tag ("</body>"), insert this code:

<a href="#" onClick="PassFlash()">Pass The Variable</a>
10 Save the document as "movie.html", replacing the old version of this file.
11  Open "movie.html" in a browser. To pass the variable to the movie, click the text "Pass the Variable". The value of "text" becomes "hello", and the text field will display this new value.
 


Note: A complete description of JavaScript is beyond the scope of this TechNote. Complete technical documentation for JavaScript is available from DevEdge Online Documentation, as well as numerous third party JavaScript books and Web sites, such as Webmonkey's Programming JavaScript. If you use a JavaScript method to communicate with a Flash movie, additional logic may be necessary to make sure issues such as browser type, layers and such are considered when implementing a script.
[+][-]07/28/04 10:58 AM, ID: 11659667Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/28/04 12:47 PM, ID: 11660743Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Adobe Flash
Sign Up Now!
Solution Provided By: j3one
Participating Experts: 1
Solution Grade: A
 
 
Loading Advertisement...
20091021-EE-VQP-81