Re: [flexcoders] Added image/s in TileList is/are not shown

2005-07-09 Thread P Trisnadi
Wow, that works so smoothly! :D Thanks, Matt. - ptrisnadi - Original Message From: Matt Chotin <[EMAIL PROTECTED]>To: flexcoders@yahoogroups.comSent: Thu Jul 7 22:08:00 2005Subject: RE: [flexcoders] Added image/s in TileList is/are not shown You’re using the List addItemA

Re: [flexcoders] HTTPService useProxy question...

2005-07-09 Thread JesterXL
Sent at 3:21pm You have to use a proxy, not Flex, but any proxy. The Flash Player is a client-side technology, and as such, it can only retreive data from sources within it's domain. So, if the XML you are looking for is outside your site, no dice without a proxy. I use PHP, for example, to

[flexcoders] popupmanager . . . position the window?

2005-07-09 Thread chris.alvarado
good afternoon everyone, i have a but that loads a popup window with a form in it. i need to position that window the in center of my app. what is the best way to go about this? my popup function looks like this: private function showPopup(modal) { var popup = mx.managers.PopUpManag

flexcoders@yahoogroups.com

2005-07-09 Thread Jeremy Rottman
I am working on getting flex setup in a different enviroment so I can fully test it's deploy speed. I have a test server setup, with an exttremly light install of mdk 10.2. With that I have apache 2.0.54 installed and fired up. I also have coldfusionmx 7 installed. I have followed the steps exactly

[flexcoders] Extend or build from scratch?

2005-07-09 Thread delaquae
I need to create a slightly modified version of a PieChart where each wedge has an outerRadius (instead of the whole pie). In effect, I want to add another dimension similar to the radiusField on a BubbleChart. I'm wondering if this will require a completely new component (i.e. from scratch)

Re: [flexcoders] application flow, logic question . . .

2005-07-09 Thread JesterXL
Sent at 12:43 pm EST/ GMT -5 You can still use loadMovie, although, I recommend against that even in Flash. Basically, you can have 3(or more) components: - Login.mxml - Interface1.mxml - Interface2.mxml Your Login MXML is just that, a coponent that shows the username & password fields, dispat

RE: [flexcoders] Re: application flow, logic question . . .

2005-07-09 Thread Steven Webster
Chris, I'd also recommend that you do a search in the docs for "creationPolicy" and read about deferred instantiation. Try and forget everything you know about splitting a flash movie up into separate movies and loading them on demand, and relinquish that responsibility to Flex. With clever use

RE: [flexcoders] Re: HTTPService useProxy question...

2005-07-09 Thread Theodore E Patrick
> First thanks for the response! Clears a lot of things up. > > But...if I read this correctly, then all the sites that I am > requesting FROM have to have a crossdomain.xml file in their root web > directory? Exactly. The Flash client works same as Java or JS in regards to security, cross domai

[flexcoders] Re: HTTPService useProxy question...

2005-07-09 Thread heybluez
Hey Guys, Thanks! I will just built an alternative proxy with PHP or something. It should not be too complicated :) -Michael --- In flexcoders@yahoogroups.com, "JesterXL" <[EMAIL PROTECTED]> wrote: > Sent at 3:21pm > > You have to use a proxy, not Flex, but any proxy. The Flash Player is a

Re: [flexcoders] popupmanager . . . position the window?

2005-07-09 Thread Daniel Cascais
I haven't tried this out, but maybe if you append this to your code: popup.move(Stage.width * .5 - popup.width * .5, Stage.height * .5 - popup.height * .5); On 7/8/05, chris.alvarado <[EMAIL PROTECTED]> wrote: > good afternoon everyone, > > i have a but that loads a popup window with a form in i

flexcoders@yahoogroups.com

2005-07-09 Thread Jeff Steiner
Did you add the mxml and swf file extensions to the AddHandler tag?   And – it goes in your WEB-INF folder.  I extract it for JRun, but YMMV.   Jeff Founder Flex Authority http://www.flexauthority.com   We are actively seeking contributors for the site.  Have a sample that you

Re: [flexcoders] Gartner's Take on Rich Internet Applications

2005-07-09 Thread Jeppe N. Madsen
On Fri, 08 Jul 2005, Sjors Pals wrote: > Its funny that these kind of products are considered as RIA's since > the only Internet thing about it that you run a plugin in a browser > window :-\ You mean, in the same way you run Flex apps :-) /Jeppe -- Flexcoders Mailing List FAQ: http://gro

[flexcoders] Re: popupmanager . . . position the window?

2005-07-09 Thread Eric Raymond
Here are two utility functions that I use to handle popups. One will center the popup, the other will align it to the top, right edge. It was a lot of trial and error to get something which worked all the time in Flex. Not sure why such an simple, common task was so painful. Note that Flex has

RE: [flexcoders] Reorder tree via dragging

2005-07-09 Thread Matt Chotin
Right, source should not be a copy, it should be the original002E   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sean McKibben Sent: Friday, July 08, 2005 9:09 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Reorder tree via dragg