Hi,

I have a mxml component page

<mx:Panel
        xmlns:mx="http://www.adobe.com/2006/mxml";            
         creationComplete="init()"
         show = "init()">  
         
 <mx:Script>
        <![CDATA[
        
            
             private function init():void
             {
               objuserID = new uuid();
               userID = objuserID.createUUID();
              }  
]]>
</mx:Script>

...
....

createUUID() is like  a random function, but my problem is I get same
number when I try to access the page. It should get different page
when I access the page.

I do not know why this happen

Thanks for help

Mark

Reply via email to