Re: [flexcoders] not draggable TitleWindow

2006-11-30 Thread Roman Protsiuk
06 3:21 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] not draggable TitleWindow As far as I know the dragging functionality has nothing to do with TitleWindow vs. Panel, it's all about whether the Panel was created by the PopupManager. So if you use the PopupManager to add the Panel the

RE: [flexcoders] not draggable TitleWindow

2006-11-30 Thread Dustin Mercer
] not draggable TitleWindow As far as I know the dragging functionality has nothing to do with TitleWindow vs. Panel, it's all about whether the Panel was created by the PopupManager. So if you use the PopupManager to add the Panel then it will be draggable. The code that determines whether o

Re: [flexcoders] not draggable TitleWindow

2006-11-30 Thread Doug McCune
's advice is spot on. Dustin Mercer *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Roman Protsiuk *Sent:* Thursday, November 30, 2006 1:13 PM *To:* flexcoders@yahoogroups.com *Subjec

RE: [flexcoders] not draggable TitleWindow

2006-11-30 Thread Dustin Mercer
ercer From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Roman Protsiuk Sent: Thursday, November 30, 2006 1:13 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] not draggable TitleWindow Hi, Tracy. Maybe. But we needed the dialog to look

Re: [flexcoders] not draggable TitleWindow

2006-11-30 Thread Roman Protsiuk
Hi, Tracy. Maybe. But we needed the dialog to look like TitleWindow and what I know about TitleWindow is that it specially designed to be used as pop-up. Why to use Panel? By the way if dialog is Panel we'll have to include something like TitleBar or some kind of Label, FormHeader, etc in it to s

Re: [flexcoders] not draggable TitleWindow

2006-11-30 Thread Roman Protsiuk
Hello, Mike. Thanks a lot! This approach really helped me. Thanks for the help, R. On 11/30/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: Hi, Without getting into the mx_internal namespace, this is an option; http://www.adobe.com/2006/mxml"; layout="absolute" width="400" heigh

RE: [flexcoders] not draggable TitleWindow

2006-11-30 Thread Tracy Spratt
Are you committed to using TitleWindow? You can pop-up most any other component, like Panel, which would not be draggable by default. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Roman Protsiuk Sent: Thursday, November 30,

Re: [flexcoders] not draggable TitleWindow

2006-11-30 Thread Michael Schmalle
Hi, Without getting into the mx_internal namespace, this is an option; http://www.adobe.com/2006/mxml"; layout="absolute" width="400" height="300"> Other than the above for a custom mxml component, this is about the best you can get becasue the titleBar property is p

Re: [flexcoders] not draggable TitleWindow

2006-11-30 Thread Roman Protsiuk
Almost forgotten, TitleWindow is a pop up. :) I need it to be immovable. R. On 11/30/06, Roman Protsiuk <[EMAIL PROTECTED]> wrote: > Hi, everyone. > > I guess there is some way to make TitleWindow not draggable, isn't there? > Tried > titleBar.mouseEnabled = false; > that didn't help. > > Any