Ok...so i think I know what I was doing wrong. In my item Renderer I was setting the window size. As you can see I call centerPopUp before that.
I moved the centerPopUp(this) into the itemRenderer itself after I set the window sizes. Thanks again. --- In [email protected], "hammer995" <[EMAIL PROTECTED]> wrote: > > Thanks it still doesn't work. > > The top left corner is being centered...not the whole window. So my > picture is going off the viewable area....very strange. > > > > --- In [email protected], "Randy Martin" <randy@> wrote: > > > > Try this: > > > > var newPicWindow:TitleWindow = > > > TitleWindow(PopUpManager.createPopUp(UIComponent(this.parentApplication), > > TitleWindow, true)); > > > > ~randy > > > > > > _____ > > > > From: [email protected] [mailto:[EMAIL PROTECTED] On > > Behalf Of rueter007 > > Sent: Friday, December 21, 2007 4:26 PM > > To: [email protected] > > Subject: [flexcoders] Re: centerPopUp in F3B2 > > > > > > > > not sure if this works but have you tried this.parentApplicat-ion? > > > > - venkat > > HYPERLINK "http://www.venkatj.com"http://www.venkatj.-com > > > > --- In HYPERLINK > > "mailto:flexcoders%40yahoogroups.com"flexcoders@, > > "hammer995" <hammer995@> wrote: > > > > > > I am trying to center a popup window on the application from an > > > itemrenderer in a TileList. > > > > > > It looks like it centers it with the TileList but not with the > > > application itself. > > > > > > I've found different places on the interweb but none of them work. > > > > > > They reference: > DisplayObject(-Application.-application.-parentDocument)-, > > > this.parent, etc...and they give me the same results. > > > > > > Here is my code: > > > > > > private function showPic():void { > > > var author:String = data.author; > > > //var newPicWindow:-TitleWindow = > > > TitleWindow(-PopUpManager.-createPopUp(-this, bigPic, true)); > > > var newPicWindow:-TitleWindow = > > > > > > TitleWindow(-PopUpManager.-createPopUp(-Application.-application.-mainPanel, > > > bigPic, true)); > > > newPicWindow.-data = data; > > > if (author != null) { > > > newPicWindow.-title="Photo Courtesy of " + data.author; > > > } > > > newPicWindow.-setStyle(-"borderAlpha"-, 0.9); > > > newPicWindow.-showCloseButton=-true; > > > PopUpManager.-centerPopUp(-newPicWindow)-; > > > } > > > > > > Thanks, > > > Sonny > > > > > > > > > > > > > > > > > No virus found in this outgoing message. > > Checked by AVG. > > Version: 7.5.516 / Virus Database: 269.17.6/1192 - Release Date: > 12/21/2007 > > 1:17 PM > > >

