On 9/6/05, digital_eyezed <[EMAIL PROTECTED]> wrote:

> How do I make a popUp TitleWindow non-draggable (i.e. fixed in
> position so that trying to drag it around the parent container is not
> allowed)

There's no documented way to do this, AFAIK.

[undocumented]

Here's a little hack:

 <TitleWindow>
   <Script>
     public function createChildren():Void
     {
       super.createChildren();

       back_mc.onPress = back_mc.onRelease = null;
     }
   </Script>
 </TitleWindow>

Remove the onPress and onRelease handlers.  Should work, I haven't tried.

[/undocumented]


------------------------ Yahoo! Groups Sponsor --------------------~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to