This content has been marked as final.
Show 2 replies
-
1. Re: 1151: A conflict exists with definition browseH in namespace internal
Andrei1 Apr 17, 2011 8:31 AM (in response to barpos)Variable names MUST BE UNIQUE. You cannot declare variable with the same name twice in the same scope. Use:
var browserH:uint;
if ((myStage.stageHeight / swfH) > (myStage.stageWidth / swfW))
{
browserH:uint = myStage.stageHeight * (myStage.stageWidth / swfW);
}
else
{
browserH:uint = swfH; ( *** line triggering the error *** )
} -
2. Re: 1151: A conflict exists with definition browseH in namespace internal
barpos Apr 17, 2011 8:44 AM (in response to Andrei1)Thanks!

