And on frame on first form (named: application) i use code:
[b]myTxt.text = _root.varvalue+ "-" + _level0.varvalue+ "-" + varvalue;[/b]
And I got: undefined-endefined-undefined. Why nothnig of this don't work?
[b]But when I create normal Flash Project, it works fine! ????[/b]
--------------------------------------------------------------------------------
---------
Sorry for my english. I dont know it so good. THANKS!
--
Dave -
Head Developer
http://www.blurredistinction.com
Adobe Community Expert
http://www.adobe.com/communities/experts/
I publish for AS2 and if i choose ASC i got message: Screen-based documents
must target ActionScript 2.0.
Also I found this articile:
TITLE: How to get FLASHVARS to work with a Forms application
URL: http://flashmove.com/forum/showthread.php?t=14154
But this isn't good solution for me...
Is this some bug in Flash or I need to use some other way when I create Flash
From Application, where Flash Form Application declare this variables from
FlashVars?
The thing is you're tracing the _same_ variable... If anything is wrong
tracing the same thing, three different ways, doesn't matter... See what I
mean?
Sorry, but I have never used the screens feature, or the forms thing. I make
any forms from scratch, using the plain as2 file. Why is the article not a
good solution? By the title it sounds perfect.
AC_FL_RunContent(
'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
version=9,0,28,0','width','762','height','502','class','flashBdr','src','flash/s
tudent?userID=9','quality','high','pluginspage','http://www.adobe.com/shockwave/
download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie',[b]'mymovie?varval
ue=somevalue'[/b] ); //end AC
and in object tag i used this, but it works also with FlashVars:
<param name="movie" value="mymovie.swf?varvalue=somevalue" />
<embed src="mymovie.swf?varvalue=somevalue"...
I don't know why this is not in flash documentation... But now works perfect.