Re: [flexcoders] Re: Cairngorm proper usage

2009-01-04 Thread Paul Andrews
--- In flexcoders@yahoogroups.com, Paul Andrews p...@... wrote: - Original Message - From: someguy7_7 mus...@... To: flexcoders@yahoogroups.com Sent: Sunday, January 04, 2009 6:23 PM Subject: [flexcoders] Re: Cairngorm proper usage But how would I setup the binding in the tabnavigator so

Re: [flexcoders] Generating Random Unique ID

2009-01-05 Thread Paul Andrews
- Original Message - From: Wally Kolcz To: flexcoders@yahoogroups.com Sent: Tuesday, January 06, 2009 2:02 AM Subject: [flexcoders] Generating Random Unique ID Anyone know a good way to generate a GUID or UUID with AS3? I found a nice AS2 version, but it blows up with AS3.

Re: [flexcoders] Re: Properly remove children

2009-01-06 Thread Paul Andrews
I think Sam is right. The garbage collector won't collect objects until there are no references to them. If you don't use weak references you'll have to remove every listener first before the object can be garbage collected. Removing an object from a container is only part of the story.

Re: [flexcoders]Scope issue - class variable not set

2009-01-07 Thread Paul Andrews
- Original Message - From: dorkie dork from dorktown To: flexcoders@yahoogroups.com Sent: Wednesday, January 07, 2009 8:08 AM Subject: [flexcoders]Scope issue - class variable not set Hi all, It seems setting a class variable is not happening until after all my code is

Re: [flexcoders] Re: Properly remove children

2009-01-07 Thread Paul Andrews
- Original Message - From: roopal_oswal roopal_os...@yahoo.co.in To: flexcoders@yahoogroups.com Sent: Wednesday, January 07, 2009 12:09 PM Subject: [flexcoders] Re: Properly remove children --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2...@... wrote: How do I remove

Re: [flexcoders] Re: Properly remove children

2009-01-07 Thread Paul Andrews
- Original Message - From: markgoldin_2000 markgoldin_2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wednesday, January 07, 2009 2:04 PM Subject: [flexcoders] Re: Properly remove children It is set to true. Did not help. Could there be something else pointing to the child/form?

Re: [flexcoders] Release a child .... again

2009-01-08 Thread Paul Andrews
- Original Message - From: markgoldin_2000 markgoldin_2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Thursday, January 08, 2009 7:12 PM Subject: [flexcoders] Release a child again Still cannot get it work. Here is my scenario: 1. Container adds child1 to itself. 2.

Re: [flexcoders] Re: Release a child .... again

2009-01-08 Thread Paul Andrews
is removeAllChildren. --- In flexcoders@yahoogroups.com, Paul Andrews p...@... wrote: - Original Message - From: markgoldin_2000 markgoldin_2...@... To: flexcoders@yahoogroups.com Sent: Thursday, January 08, 2009 7:12 PM Subject: [flexcoders] Release a child again Still cannot get

Re: [flexcoders] Creating mxml components within script block - but they don't appear in display

2009-01-08 Thread Paul Andrews
- Original Message - From: gpe_comp gpel...@f2s.com To: flexcoders@yahoogroups.com Sent: Thursday, January 08, 2009 10:24 PM Subject: [flexcoders] Creating mxml components within script block - but they don't appear in display I have a component defined in mxml and want to create many

Re: [flexcoders] Re: Release a child .... again

2009-01-09 Thread Paul Andrews
be child2.removeEventListener(remoteDateEvent, child2.remoteClickHandler); Paul --- In flexcoders@yahoogroups.com, Paul Andrews p...@... wrote: According to your original explanation the only event handler for remoteDateEvent is added to the parent container. All the forms do is issue events

Re: [flexcoders]How do I get the key of an Object?

2009-01-10 Thread Paul Andrews
- Original Message - From: dorkie dork from dorktown To: flexcoders@yahoogroups.com Sent: Saturday, January 10, 2009 5:54 AM Subject: [flexcoders]How do I get the key of an Object? Whilst I'm debugging I see this key or id in next to each instance name:

Re: [flexcoders]Need help creating a Singleton with MXML

2009-01-11 Thread Paul Andrews
- Original Message - From: dorkie dork from dorktown To: flexcoders@yahoogroups.com Sent: Sunday, January 11, 2009 5:05 AM Subject: Re: [flexcoders]Need help creating a Singleton with MXML Yay! That's the class I needed! :) To answer your question why. First I like to use

Re: [flexcoders]How do I know if a class is on the Application?

2009-01-11 Thread Paul Andrews
- Original Message - From: dorkie dork from dorktown To: flexcoders@yahoogroups.com Sent: Saturday, January 10, 2009 6:06 AM Subject: [flexcoders]How do I know if a class is on the Application? I have a class on the application like this: managers:MyClass / How do I

Re: [flexcoders] How to create universal event handler?

2009-01-12 Thread Paul Andrews
- Original Message - From: Dan danijel.arsenov...@gmail.com To: flexcoders@yahoogroups.com Sent: Monday, January 12, 2009 6:24 PM Subject: [flexcoders] How to create universal event handler? I have class MyEvent extends flash.events.Event. I also have a second class MyEventChild

Re: [flexcoders] Re: How to create universal event handler?

2009-01-13 Thread Paul Andrews
- Original Message - From: Dan danijel.arsenov...@gmail.com To: flexcoders@yahoogroups.com Sent: Monday, January 12, 2009 9:57 PM Subject: [flexcoders] Re: How to create universal event handler? Nope, I meant the process described here:

Re: [flexcoders] Re: How to create universal event handler?

2009-01-13 Thread Paul Andrews
- Original Message - From: Dan danijel.arsenov...@gmail.com To: flexcoders@yahoogroups.com Sent: Monday, January 12, 2009 9:57 PM Subject: [flexcoders] Re: How to create universal event handler? Nope, I meant the process described here:

Re: [flexcoders] Re: How to create universal event handler?

2009-01-13 Thread Paul Andrews
Dan, the concept for try and catch is quite different to error handling. In try/catch you provide a reference to an object that represents the kind of error you can expect to handle. Event handlers are not trying to catch a kind of event, they are catching a specific event. It's the differenc

Re: [flexcoders] Passing a function reference to an item renderer

2009-01-14 Thread Paul Andrews
Check out outerDocument: The mx:Component tag defines a new scope within an MXML file, where the local scope of the item renderer or item editor is defined by the MXML code block delimited by the mx:Component and /mx:Component tags. To access elements outside of the local scope of the item

Re: [flexcoders] How to call MXML from JSP

2009-01-14 Thread Paul Andrews
Just embed the swf in your JSP page and when the browser loads the JSP page, the swf should run. Paul - Original Message - From: sony antony pow_like_me...@yahoo.co.in To: flexcoders@yahoogroups.com Sent: Wednesday, January 14, 2009 12:49 PM Subject: [flexcoders] How to call MXML from

Re: [flexcoders]Change state without dispatching events

2009-01-14 Thread Paul Andrews
- Original Message - From: dorkie dork from dorktown To: flexcoders@yahoogroups.com Sent: Wednesday, January 14, 2009 10:34 PM Subject: Re: [flexcoders]Change state without dispatching events Do you have a code example you can show me? When I use this:

Re: [flexcoders]Change state without dispatching events

2009-01-14 Thread Paul Andrews
this useType2Functionality = true; Application.application.currentState = state 1; useType2Functionality = false; and then in the my state change listener i can check for this flag and either exit or add the code i want in there? On Wed, Jan 14, 2009 at 3:48 PM, Paul Andrews p...@ipauland.com wrote

Re: [flexcoders] Populating a Flex Container in Flash

2009-01-15 Thread Paul Andrews
Does anything get added to the display list? If nothing else I think you'll need addChild(fc), or something similar. - Original Message - From: specdout ratu...@shaw.ca To: flexcoders@yahoogroups.com Sent: Thursday, January 15, 2009 5:42 PM Subject: [flexcoders] Populating a Flex

Re: [flexcoders] Need some Help in implementing Log out functionality

2009-01-15 Thread Paul Andrews
When the user clicks logout, tell him that he is logged out, do any clearing up and after a short delay (so he can read the message), reload the application. - Original Message - From: anuj181 anuj...@gmail.com To: flexcoders@yahoogroups.com Sent: Thursday, January 15, 2009 11:46 PM

Re: [flexcoders] Need some Help in implementing Log out functionality

2009-01-15 Thread Paul Andrews
was thinking may be there is better way for achieving this. In which way would you want it to be better? Thanks for your help Anuj On Thu, Jan 15, 2009 at 4:22 PM, Paul Andrews p...@ipauland.com wrote: When the user clicks logout, tell him that he is logged out, do any clearing up

Re: [flexcoders] Need some Help in implementing Log out functionality

2009-01-15 Thread Paul Andrews
sense but if not please let me know Thanks Anuj On Thu, Jan 15, 2009 at 5:29 PM, Paul Andrews p...@ipauland.com wrote: - Original Message - From: anuj sharma To: flexcoders@yahoogroups.com Sent: Friday, January 16, 2009 1:30 AM Subject: Re: [flexcoders

Re: [flexcoders] Need some Help in implementing Log out functionality

2009-01-16 Thread Paul Andrews
with my deadline, So I guess I will end up challenging that feedback thing, but thanks for ur help Anuj On Thu, Jan 15, 2009 at 6:04 PM, Paul Andrews p...@ipauland.com wrote: I think that displaying a login page is a pretty good clue that the user is logged out. - Original

Re: [flexcoders] model locator population too late

2009-01-16 Thread Paul Andrews
Surely the progress bar is bound to the model, not part of the model itself? - Original Message - From: dnk d.k.emailli...@gmail.com To: Flexcoder List flexcoders@yahoogroups.com Sent: Friday, January 16, 2009 11:14 PM Subject: [flexcoders] model locator population too late Hi there,

Re: [flexcoders] Get file type before upload

2009-01-17 Thread Paul Andrews
- Original Message - From: oneworld95 oneworl...@yahoo.com To: flexcoders@yahoogroups.com Sent: Friday, January 16, 2009 9:21 PM Subject: [flexcoders] Get file type before upload Hi. Is there a way to discover the file type before you do an upload on a FileReference object? I know we

Re: [flexcoders] Flashlite development evnironment?

2009-01-17 Thread Paul Andrews
Doesn't have much to do with Flex, does it? http://groups.yahoo.com/group/FlashLite/ http://www.friendsofed.com/book.html?isbn=1590595580 Paul - Original Message - From: Pankaj Chawla To: flexcoders@yahoogroups.com Sent: Saturday, January 17, 2009 7:30 PM Subject:

Re: [flexcoders] flex not seeing method - update

2009-01-18 Thread Paul Andrews
- Original Message - From: dnk d.k.emailli...@gmail.com To: Flexcoder List flexcoders@yahoogroups.com Sent: Sunday, January 18, 2009 5:47 PM Subject: [flexcoders] flex not seeing method - update Ok, I found one additional piece of info that when I sent this I thought was not

Re: [flexcoders] flex not seeing method - update

2009-01-18 Thread Paul Andrews
- update Tried that, and same issue. d On 18-Jan-09, at 10:54 AM, Paul Andrews wrote: Try making the handler public..

Re: [flexcoders] Re: Roles Based UI

2009-01-20 Thread Paul Andrews
UIs implement features and Roles encapsulate features pertinent to a role. Implement the UI in terms of permitted features and assign feature sets to a given role. Paul - Original Message - From: ilikeflex ilikef...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tuesday, January 20,

Re: [flexcoders] Re: Roles Based UI

2009-01-21 Thread Paul Andrews
I think mx:Button id=deleteItem visible={UserModel.getUserCapability(ItemTasks.DELETE)} / would be better. There should be no need for code such as if ( _activities.include( _taskMapping[ task ] ) configuration.taskAllowed( task ) ) { . The user capabilities should be assigned by the role -

Re: [flexcoders] Re: Roles Based UI

2009-01-21 Thread Paul Andrews
-- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Paul Andrews Sent: 21 January 2009 09:03 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Roles Based UI I think mx:Button id=deleteItem visible={UserModel.getUserCapability(ItemTasks.DELETE

Re: [flexcoders] Re: Roles Based UI

2009-01-21 Thread Paul Andrews
for that system. It was a great system (if I say so myself!). Paul - Original Message - From: Paul Andrews To: flexcoders@yahoogroups.com Sent: Wednesday, January 21, 2009 9:18 AM Subject: Re: [flexcoders] Re: Roles Based UI The user capabilities should sit and be changeable

Re: [flexcoders] Re: Roles Based UI

2009-01-21 Thread Paul Andrews
- Original Message - From: Amy amyblankens...@bellsouth.net To: flexcoders@yahoogroups.com Sent: Wednesday, January 21, 2009 8:50 PM Subject: [flexcoders] Re: Roles Based UI --- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote: No, I decline. I prefer to see the context

Re: [flexcoders] Re: Roles Based UI

2009-01-22 Thread Paul Andrews
Actually on reflection the customer in question required a presentation/demo/proof of concept six weeks into the body of work, plus final testing/integration/handover at the end, giving something like three months for main development, so in reality the full development cycle was about six

Re: [flexcoders] New Web 2.0 Company looking for Chalnging work (www.dacoders.com)

2009-01-23 Thread Paul Andrews
So, should we all be submitting adverts here? ;-) I'll prepare my 2GB PDF right now..

Re: [flexcoders] Re: New Web 2.0 Company looking for Chalnging work (www.dacoders.com)

2009-01-23 Thread Paul Andrews
- Original Message - From: Amy amyblankens...@bellsouth.net To: flexcoders@yahoogroups.com Sent: Friday, January 23, 2009 8:36 PM Subject: [flexcoders] Re: New Web 2.0 Company looking for Chalnging work (www.dacoders.com) snip I think that flexJobs is failing, because it seems to queue

Re: [flexcoders] Re: New Web 2.0 Company looking for Chalnging work (www.dacoders.com)

2009-01-23 Thread Paul Andrews
, it was already posted earlier today.. On Fri, Jan 23, 2009 at 10:47 PM, Paul Andrews p...@ipauland.com wrote: - Original Message - From: Amy amyblankens...@bellsouth.net To: flexcoders@yahoogroups.com Sent: Friday, January 23, 2009 8:36 PM Subject: [flexcoders] Re

Re: [flexcoders] Flex. AIR and IPhone

2009-01-26 Thread Paul Andrews
LOL, yes - the iphone only supports two gestures for flex, flash and air and they involve the use of one or two fingers.. - Original Message - From: Sebastien ARBOGAST To: flexcoders@yahoogroups.com Sent: Monday, January 26, 2009 11:28 AM Subject: Re: [flexcoders] Flex. AIR

Re: [flexcoders] Base one mxml component on another from Library

2009-01-26 Thread Paul Andrews
- Original Message - From: markgoldin_2000 markgoldin_2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, January 26, 2009 5:26 PM Subject: [flexcoders] Base one mxml component on another from Library I have a project with a common component library added to it as SWC. I am

Re: [flexcoders] Re: Base one mxml component on another from Library

2009-01-26 Thread Paul Andrews
is the error? Paul --- In flexcoders@yahoogroups.com, Paul Andrews p...@... wrote: - Original Message - From: markgoldin_2000 markgoldin_2...@... To: flexcoders@yahoogroups.com Sent: Monday, January 26, 2009 5:26 PM Subject: [flexcoders] Base one mxml component on another from

Re: [flexcoders] Re: Base one mxml component on another from Library

2009-01-26 Thread Paul Andrews
the / characters for . . Paul --- In flexcoders@yahoogroups.com, Paul Andrews p...@... wrote: - Original Message - From: markgoldin_2000 markgoldin_2...@... To: flexcoders@yahoogroups.com Sent: Monday, January 26, 2009 5:35 PM Subject: [flexcoders] Re: Base one mxml component

Re: [flexcoders] Flex. AIR and IPhone

2009-01-27 Thread Paul Andrews
Good post Hervé. Paul - Original Message - From: Hervé Crespel crespel.he...@wanadoo.fr To: flexcoders@yahoogroups.com Sent: Tuesday, January 27, 2009 9:29 AM Subject: Re: [flexcoders] Flex. AIR and IPhone Thank you everybody for this discussion about SVG. snip I am not working for

Re: [flexcoders] Flex in a week tutorial problem

2009-01-27 Thread Paul Andrews
- Original Message - From: rbross77 ro...@cswllc.com To: flexcoders@yahoogroups.com Sent: Tuesday, January 27, 2009 2:49 PM Subject: [flexcoders] Flex in a week tutorial problem Hello, Working my way through this tutorial and I hit a wall. I looked at the sample code and cannot

Re: [flexcoders] Re: newbie question - call to actionscript class

2009-01-29 Thread Paul Andrews
The usual reason for things not appearing is that the component that should appear hasn't been added to the display list - just using new doesn't add an object to the display list. Maybe addChild(notes) will help. Paul - Original Message - From: annelie2008 annelie.karls...@gmail.com

Re: [flexcoders] Login/Registration Page ?

2009-01-30 Thread Paul Andrews
Consider using a ViewStack or States as a starting point. Paul - Original Message - From: Verdell dasle...@yahoo.com To: flexcoders@yahoogroups.com Sent: Friday, January 30, 2009 1:59 AM Subject: [flexcoders] Login/Registration Page ? I have been searching all over the internet for

[flexcoders] Encrypted html

2009-02-01 Thread Paul Andrews
In an ideal world, I'd have an AIR app displaying HTML pages sourced from encrypted data installed on the same machine. Seems to me that the only way to keep the data encrypted would be to install a web server which decrypts the pages on the fly. Am I missing a something simple? Paul

Re: [flexcoders] This is kind of Wonderfl

2009-02-02 Thread Paul Andrews
I think the word for this is SPAM. Don't waste your time. - Original Message - From: Steve Mathews To: azf...@googlegroups.com ; flexcoders@yahoogroups.com ; Flash Coders List Sent: Monday, February 02, 2009 3:57 PM Subject: [flexcoders] This is kind of Wonderfl

Re: [flexcoders] Encrypted html

2009-02-02 Thread Paul Andrews
html No reason why you couldn't do it locally without the web server. Open a file, decrypt it, display it, no need for http as it ultimately is a file servlet. K From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Paul Andrews Sent: Sunday, February

[flexcoders] Air/Flex/Html roundtrip?

2009-02-02 Thread Paul Andrews
If this were an ideal world I'd be able to specify a function in my flex/AIR app as an html link in an html page rendered by the application. Any ideas about how I might achieve this? Paul

Re: [flexcoders] Are flex events really thread safe?

2009-02-03 Thread Paul Andrews
- Original Message - From: Shyam shyammohan.sugat...@devicedriven.com To: flexcoders@yahoogroups.com Sent: Tuesday, February 03, 2009 10:29 AM Subject: [flexcoders] Are flex events really thread safe? Consider this scenario. i have issued some 5 network calls form the flex client

Re: [flexcoders] Multiple views of same data

2009-02-05 Thread Paul Andrews
- Original Message - From: Annette Spooner To: flexcoders@yahoogroups.com Sent: Thursday, February 05, 2009 11:18 PM Subject: [flexcoders] Multiple views of same data Hi, I have an application that requires multiple views of the same data. Thus, in practice, I would

Re: [flexcoders] Global variable

2009-02-11 Thread Paul Andrews
If you must have a global variable, consider using a static class or a singleton class instance. This saves passing references all over the place in your application. Treat global variables with care though - you are building dependencies between components. Paul - Original Message

Re: [flexcoders] Re: portlets in Flex

2009-02-12 Thread Paul Andrews
I think you're right Gregor, but I think that the OP raises an interesting question - how can I use an external swf and sandbox it so that it cannot possibly bring my application down? I really wonder when the player will go multi-threaded and be able to take advantage of multi-core

Re: [flexcoders] Re: Flas 10 on mobile is a go

2009-02-16 Thread Paul Andrews
- Original Message - From: Carlos Rovira To: flexcoders@yahoogroups.com Sent: Monday, February 16, 2009 11:55 PM Subject: Re: [flexcoders] Re: Flas 10 on mobile is a go Hope Apple will see that other phones like this Palm Pre, with features like FP10, can make the iPhone

Re: [flexcoders] Re: Flex server language

2009-02-19 Thread Paul Andrews
- Original Message - From: Don Kerr fusionp...@yahoo.com To: flexcoders@yahoogroups.com Sent: Thursday, February 19, 2009 9:25 AM Subject: [flexcoders] Re: Flex server language I recommend you take a serious look at ColdFusion . Here is an Adobe site that talks the features and

Re: [flexcoders] Problem accessing data of an XML file

2009-02-20 Thread Paul Andrews
- Original Message - From: christophe_jacquelin christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Friday, February 20, 2009 11:01 AM Subject: [flexcoders] Problem accessing data of an XML file Hello, I have an XML file with points inside : root Point x0343/x0

Re: [flexcoders] cropping image under mask

2009-02-23 Thread Paul Andrews
- Original Message - From: Mayur Bais To: flexcoders@yahoogroups.com Sent: Monday, February 23, 2009 10:23 AM Subject: [flexcoders] cropping image under mask I am trying to crop image in different different shape, for this , I am trying to use the technique of masking snip

Re: [flexcoders] design time array vs. run time array

2009-02-26 Thread Paul Andrews
- Original Message - From: markgoldin_2000 markgoldin_2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Thursday, February 26, 2009 3:28 PM Subject: [flexcoders] design time array vs. run time array Design: mx:Array id=arr mx:Object label=Accordion

Re: [flexcoders] Architecture / Design question...

2009-03-09 Thread Paul Andrews
Having one component with different states or a viewstack with all of the options may be attractive for a few variants, but I'd probably go for instantiating a specific UI interface once it's known which is required. You could either base the UI variants off a common ancestor, or use a common

Re: [flexcoders] Re: Write to an XML file

2009-03-11 Thread Paul Andrews
- Original Message - From: christophe_jacquelin christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Wednesday, March 11, 2009 2:34 PM Subject: [flexcoders] Re: Write to an XML file Hello, It is OK to modify my XML file in the folder source/assets. I think you mean

Re: [flexcoders] Number of connexions

2009-03-11 Thread Paul Andrews
- Original Message - From: christophe_jacquelin christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Wednesday, March 11, 2009 3:52 PM Subject: [flexcoders] Number of connexions Hello, How did we know the max number of connexions (users) that are possible on my flex

Re: [flexcoders] Re: Number of connexions

2009-03-11 Thread Paul Andrews
- Original Message - From: christophe_jacquelin christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Wednesday, March 11, 2009 4:14 PM Subject: [flexcoders] Re: Number of connexions So, an unlimited number of users can use my flex application worldwide in the same time

Re: [flexcoders] Array of objects

2009-03-13 Thread Paul Andrews
- Original Message - From: christophe_jacquelin christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Friday, March 13, 2009 8:46 AM Subject: [flexcoders] Array of objects Hello, How to declare an array of n Objects of the class myClass ? How did we indicates the type

Re: [flexcoders] Array of objects

2009-03-13 Thread Paul Andrews
LOL, I should be doing the tutorials! http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Partsfile=metadata_141_05.html Paul - Original Message - From: Paul Andrews p...@ipauland.com To: flexcoders@yahoogroups.com Sent: Friday, March 13

Re: [flexcoders] Simple actionscript that I cannot understand! Please help. Thanks

2009-03-16 Thread Paul Andrews
- Original Message - From: fred44455 fred44...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, March 16, 2009 3:01 AM Subject: [flexcoders] Simple actionscript that I cannot understand! Please help. Thanks ?xml version=1.0? Can somebody explain into details what that code

Re: [flexcoders] problem with XML in flex

2009-03-20 Thread Paul Andrews
Vikram, you may have heard of google. Flex + PHP First result: http://www.adobe.com/devnet/flex/flex_php.html Paul - Original Message - From: Vikram Singh To: flexcoders@yahoogroups.com Sent: Friday, March 20, 2009 5:48 AM Subject: [flexcoders] problem with XML in flex

Re: [flexcoders] Flex 3 Image on Data Grid

2009-03-21 Thread Paul Andrews
- Original Message - From: sk8bmx099 sk8bmx...@yahoo.com To: flexcoders@yahoogroups.com Sent: Saturday, March 21, 2009 7:00 AM Subject: [flexcoders] Flex 3 Image on Data Grid http://img25.imageshack.us/img25/5109/datagrid.png I want it to show the IMAGE Skill_Name Like instead of

Re: [flexcoders] How much actionscript 3 do you need to know in order to develop in Flex 3

2009-03-23 Thread Paul Andrews
- Original Message - From: fred44455 fred44...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, March 23, 2009 5:05 PM Subject: [flexcoders] How much actionscript 3 do you need to know in order to develop in Flex 3 Flex is a mix of mxml and actionscript 3. Now my questions is

Re: [flexcoders] Do you guys consider Lynda .com Flexs tutorials a must to learn the material?

2009-03-23 Thread Paul Andrews
- Original Message - From: fred44455 fred44...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, March 23, 2009 9:36 PM Subject: [flexcoders] Do you guys consider Lynda .com Flexs tutorials a must to learn the material? I am extremely lazy , have been all my life. I have troubles

Re: [flexcoders] Which mobile device can run flash ?

2009-03-25 Thread Paul Andrews
I can't see Apple releasing it's sticky fingers on AppStore revenue too easily. Maybe we'll have a 'special' flash player that only runs AppStore registered applications (no, I have no insider knowledge). - Original Message - From: Carlos Rovira To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Here's a Flash Video browser plugin for jailbroken iPhones

2009-03-26 Thread Paul Andrews
The title is pretty missleading too.. - Original Message - From: oneworld95 oneworl...@yahoo.com To: flexcoders@yahoogroups.com Sent: Thursday, March 26, 2009 2:15 PM Subject: [flexcoders] Re: Here's a Flash plugin for iPhone Sigh. Got my hopes up too quickly :) - Alex C --- In

Re: [flexcoders] Stumped - End of a test error

2009-03-29 Thread Paul Andrews
q ++; is the culprit. When you get to the last one you advance one too far. Put that at the end. You are probably missing the first question! Paul - Original Message - From: Wally Kolcz To: flexcoders@yahoogroups.com Sent: Sunday, March 29, 2009 5:15 PM Subject:

Re: [flexcoders] VSlider direction?

2009-03-30 Thread Paul Andrews
You've already had a suggestion to rotate the control; most users would expect the control to operate in the usual way, so what's the exception in this case? Paul - Original Message - From: gwangdesign gwangdes...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, March 30, 2009

Re: [flexcoders] VSlider direction?

2009-03-30 Thread Paul Andrews
@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Paul Andrews Sent: Monday, March 30, 2009 8:03 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] VSlider direction? You've already had a suggestion to rotate the control; most users would expect the control to operate

Re: [flexcoders] SWF in the server side

2009-03-31 Thread Paul Andrews
- Original Message - From: christophe_jacquelin christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Tuesday, March 31, 2009 10:06 AM Subject: [flexcoders] SWF in the server side Hello, Is it possible to put a part of an application in the side of the server instead

Re: [flexcoders] How on earth do I lose the LineChart LineSeries drop shadow?

2009-04-02 Thread Paul Andrews
seriesFilters=[] - Original Message - From: Josh McDonald To: flexcoders@yahoogroups.com Sent: Thursday, April 02, 2009 8:52 AM Subject: [flexcoders] How on earth do I lose the LineChart LineSeries drop shadow? I'm pulling my hair out trying to ditch the lineSeries

Re: [flexcoders] Print existing documents in Flex

2009-04-02 Thread Paul Andrews
PrintJob won't print external files. The only way to do it with Flex would be to read each file and add it's contents to a container to be rendered using Printjob. Unfortunately Flex isn't a printspooler! You might have some luck trying to navigate to the document url by popping up a new

Re: [flexcoders] Re: Print existing documents in Flex

2009-04-03 Thread Paul Andrews
- Original Message - From: Amy amyblankens...@bellsouth.net To: flexcoders@yahoogroups.com Sent: Friday, April 03, 2009 10:57 PM Subject: [flexcoders] Re: Print existing documents in Flex --- In flexcoders@yahoogroups.com, Paul Andrews p...@... wrote: PrintJob won't print external

Re: [flexcoders] Re: Print existing documents in Flex

2009-04-05 Thread Paul Andrews
- Original Message - From: Amy amyblankens...@bellsouth.net To: flexcoders@yahoogroups.com Sent: Sunday, April 05, 2009 6:03 AM Subject: [flexcoders] Re: Print existing documents in Flex --- In flexcoders@yahoogroups.com, Paul Andrews p...@... wrote: snip Interesting suggestion

Re: [flexcoders] Flex, SharePoint and SQLServer

2009-04-05 Thread Paul Andrews
- Original Message - From: Tracy Spratt To: flexcoders@yahoogroups.com Sent: Sunday, April 05, 2009 5:01 AM Subject: RE: [flexcoders] Flex, SharePoint and SQLServer snip Flex can't really talk directly to a database. Supposedly, the later SQL Server versions support

Re: [flexcoders] Loading AS2 SWF in Flex 3

2009-04-05 Thread Paul Andrews
- Original Message - From: Hyder hyder_...@hotmail.com To: flexcoders@yahoogroups.com Sent: Sunday, April 05, 2009 5:47 PM Subject: [flexcoders] Loading AS2 SWF in Flex 3 I'm trying to load an AS2 swf using SWFLoader (Embedded) in a TitleWindow. The SWF file plays fine in a

Re: [flexcoders] How can I call a function from a class?

2009-04-06 Thread Paul Andrews
Declare a class instance, or make the function static. It's customary to name classes with a capital letter at the start, instances with a lower case. private function callClassFunction():void { var test:Layout = new Layout(); test.traceTest(); } Paul - Original Message - From:

Re: [flexcoders] How can I call a function from a class?

2009-04-06 Thread Paul Andrews
LOL Tim got there first! - Original Message - From: Paul Andrews p...@ipauland.com To: flexcoders@yahoogroups.com Sent: Monday, April 06, 2009 6:52 PM Subject: Re: [flexcoders] How can I call a function from a class? Declare a class instance, or make the function static. It's

Re: [flexcoders] Re: How can I call a function from a class?

2009-04-06 Thread Paul Andrews
LOL. How about the other way around, how can I access a variable in my main mxml from my class package? Well, the real answer is you shouldn't do it. You really don't want to build dependencies between your classes (unless there's a really good reason) or between a class and your application.

Re: [flexcoders] Adobe's stimulus package!!!! FREE FLEX BUILDER!!!!

2009-04-08 Thread Paul Andrews
How would anybody ever know? (Before you ask I've already donated many $$ to Adobe for Flex). Paul - Original Message - From: Tom Chiverton To: flexcoders@yahoogroups.com Cc: Guy Morton Sent: Wednesday, April 08, 2009 3:42 PM Subject: Re: [flexcoders] Adobe's stimulus

Re: [flexcoders] Adobe's stimulus package!!!! FREE FLEX BUILDER!!!!

2009-04-08 Thread Paul Andrews
of bunnies saying Silly Rabbit, you must pay for Flex Builder to deploy your app! It's all very complicated and proprietary :-) Matt On 4/8/09 8:22 AM, Paul Andrews p...@ipauland.com wrote: How would anybody ever know? (Before you ask I've already donated many

Re: [flexcoders] Flex alternative to Microsoft's Seadragon

2009-04-12 Thread Paul Andrews
- Original Message - From: Hyder hyder_...@hotmail.com To: flexcoders@yahoogroups.com Sent: Sunday, April 12, 2009 8:26 PM Subject: [flexcoders] Flex alternative to Microsoft's Seadragon Is it possible to do this flex? http://livelabs.com/seadragon/ As I understand it, seadragon is

Re: [flexcoders] Re: Flash speed test - please participate - only 1 click required !

2009-04-13 Thread Paul Andrews
How did you find the trojan Cato - AVG reports nothing. What trojan is it? Paul - Original Message - From: Cato Paus ca...@brannsikring.no To: flexcoders@yahoogroups.com Sent: Monday, April 13, 2009 11:58 AM Subject: [flexcoders] Re: Flash speed test - please participate - only 1 click

Re: [flexcoders] Re: Flash speed test - please participate - only 1 click required !

2009-04-13 Thread Paul Andrews
.. here is the link to the Trojan http://securityresponse.symantec.com/security_response/writeup.jsp?docid=2004-021914-2822-99 --- In flexcoders@yahoogroups.com, Paul Andrews p...@... wrote: How did you find the trojan Cato - AVG reports nothing. What trojan is it? Paul - Original

Re: [flexcoders] Is it better easier to learn Flex3 AS3 via a book or videos?

2009-04-14 Thread Paul Andrews
Depends on you really. Most people would do well with a mixture of both. It's free to check out some sample videos on lynda.com. Flex in a week is to be recommended: http://www.adobe.com/devnet/flex/videotraining/ and is free. Did you expect some definitive answer? Paul

Re: [flexcoders] I need to set a label...???

2009-04-15 Thread Paul Andrews
- Original Message - From: sailorsea21 sailorse...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wednesday, April 15, 2009 1:26 PM Subject: [flexcoders] I need to set a label...??? Hi everyone, I need to set a label... The actual label is in a ArrayCollection. I can access is like

Re: [flexcoders] employees.xml

2009-04-15 Thread Paul Andrews
Isn't there a download for the assets for that lesson? Paul - Original Message - From: Greg Morphis gmorp...@gmail.com To: flexcoders@yahoogroups.com Sent: Wednesday, April 15, 2009 4:58 PM Subject: [flexcoders] employees.xml Anyone know where I can get a copy of the employees.xml

Re: [flexcoders] employees.xml

2009-04-15 Thread Paul Andrews
... ... But no employees.xml On Wed, Apr 15, 2009 at 11:14 AM, Paul Andrews p...@ipauland.com wrote: Isn't there a download for the assets for that lesson? Paul -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] How can I receive the smallest value within an Array?

2009-04-16 Thread Paul Andrews
Just for the future, most people would do this: for ( var i:int =1; iarray.length; i++) - Original Message - From: - - To: flexcoders@yahoogroups.com Sent: Thursday, April 16, 2009 5:06 PM Subject: Re: [flexcoders] How can I receive the smallest value within an Array?

Re: [flexcoders] dynamic GUI

2009-04-17 Thread Paul Andrews
- Original Message - From: freeman_vu freeman...@yahoo.com To: flexcoders@yahoogroups.com Sent: Thursday, April 16, 2009 11:17 PM Subject: [flexcoders] dynamic GUI Hi All, I am wondering that is there a way to make a dynamic GUI which means that every time loaded, the GUI might be

[flexcoders] OT: TV anyone?

2009-04-20 Thread Paul Andrews
Yay! http://news.bbc.co.uk/1/hi/technology/8008070.stm

Re: [flexcoders] flex builder's message?

2009-04-26 Thread Paul Andrews
- Original Message - From: markflex2007 markflex2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Sunday, April 26, 2009 6:50 AM Subject: [flexcoders] flex builder's message? Hi, I just create a new Flex project with FB 3. I get following message when I switch the mxml to Design

<    2   3   4   5   6   7   8   9   >