[flexcoders] Re: Using modules and remote objects

2010-09-06 Thread ZIONIST
so hw do i solve the problem while still using modules?

Re: [flexcoders] Find in Files in Flash Builder 4

2010-09-06 Thread claudiu ursica
ctrl + shift + f or under eclipse ctrl + h C From: markflex2007 markflex2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Mon, September 6, 2010 6:39:20 AM Subject: [flexcoders] Find in Files in Flash Builder 4 Hi I use Flex Builder 3 before . I can

Re: [flexcoders] Find in Files in Flash Builder 4

2010-09-06 Thread Haykel BEN JEMIA
It's now under the 'Search' menu. Le 2010 9 6 05:50, markflex2007 markflex2...@yahoo.com a écrit : Hi I use Flex Builder 3 before . I can search string cross my files by using Find in Files (under Edit menu),but I can not do this with FB4. Please help me how to search my files by a string.

RE: [flexcoders] how do you guys read flexcoders

2010-09-06 Thread Gregor Kiddie
In Outlook using the conversation view. Plus it means I've got lovely Flexcoders archives dating back to 2005 ;)

[flexcoders] Setting a custom Air app version/ release number

2010-09-06 Thread Nick Middleweek
Hi, When I install the Air app that I've just created using Export Release Build I can see a version number in the installation window but it's always set to the same value... How can I change this? Are there any rules or gotchas around it as well? Other Air apps I've installed have custom

Re: [flexcoders] File Upload with php on Mac

2010-09-06 Thread meaglith
FileType? --- Blog: http://douhua.im Twitter: http://twitter.com/genedna Website: http://douhua.im --- On Sun, Sep 5, 2010 at 9:09 PM, Christophe christophe_jacque...@yahoo.frwrote: Hello,

Re: [flexcoders] Setting a custom Air app version/ release number

2010-09-06 Thread Rob Parkhill
There is a version number section in the XML for the application. Same place where you can enter app name and such. Rob From: Nick Middleweek n...@middleweek.co.uk To: flexcoders@yahoogroups.com Sent: Mon, September 6, 2010 5:22:17 AM Subject: [flexcoders]

Re: [flexcoders] Setting a custom Air app version/ release number

2010-09-06 Thread Nick Middleweek
ah nice one Rob, thank you. On 6 September 2010 14:09, Rob Parkhill rob_parkh...@yahoo.com wrote: There is a version number section in the XML for the application. Same place where you can enter app name and such. Rob -- *From:* Nick Middleweek

Re: [flexcoders] Find in Files in Flash Builder 4

2010-09-06 Thread chenrijano
Mungkin ditelp aja yul, emailnya bounce NOT® -Original Message- From: markflex2007 markflex2...@yahoo.com Sender: flexcoders@yahoogroups.com Date: Mon, 06 Sep 2010 04:39:20 To: flexcoders@yahoogroups.com Reply-To: flexcoders@yahoogroups.com Subject: [flexcoders] Find in Files in Flash

RE: [flexcoders] Find in Files in Flash Builder 4

2010-09-06 Thread Pearl Fernandes
Use the shortcut key Ctrl+Shift+F. It opens the Find in Files dialog. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of markflex2007 Sent: Monday, September 06, 2010 10:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

[flexcoders] I don't know if I need Flex (please help me to decide)

2010-09-06 Thread enridp
Hi! I will try to explain my situation: I'm a Flash developer (not a good one, just one more...), I know AS3, OOP, I can read MXML and I've read a lot about Flex in the last days, although I have never used it. And there's a reason for that, the SWF size, I'm from Argentina, and here internet

[flexcoders] Question about using [RemoteClass(alias=...)]

2010-09-06 Thread John Mesheimer
I have an ActionScript class that creates a custom Review object, like so: / Review.as / Taken from one of Adobe's online samples package samples.restaurant { import mx.formatters.DateFormatter; // [RemoteClass(alias=samples.restaurant.Review)] [Bindable] public class Review {

Re: [flexcoders] I don't know if I need Flex (please help me to decide)

2010-09-06 Thread claudiu ursica
You know that RemoteObject is built on top of NetConnection. What you ultimately do is make remote procedure calls. You don't need flex but then you need to do the work yourself. Serialization and de-serialization on the server side. On the other hand flex is open source so If you don't need

[flexcoders] Line Chart, I have a X value, how can I find the Y value?

2010-09-06 Thread napearson99
I have a line chart with time on the bottom and a linear axis for Y. I have the user click on the graph and I get my X value, but I have to calculate the Y value since the user might click anywhere on the Y axis. Any ideas how I could do this? Thanks! -Nate

[flexcoders] Re: Question about using [RemoteClass(alias=...)]

2010-09-06 Thread John Mesheimer
Forgive me, I be a dingbat... By setting the [RemoteClass(alias=...)] line, the thing I got back from the server was not an ArrayCollection of generic Objects, but of strongly typed Review (AS) objects, which didn't need any casting. All solved now. Nothing to see here... On Mon, Sep 6, 2010

Re: [flexcoders] Re: Using modules and remote objects

2010-09-06 Thread Alex Harui
It depends. Folks who have a large application crunching a single source of data are more likely to put the data classes in the main app and just use the modules to late-load UI and business logic. Folks building portals probably should require 10.1 and use Marshall Plan configurations. It