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. Objects

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. S

Re: [flexcoders] Re: Cairngorm proper usage

2009-01-04 Thread Paul Andrews
says whether a room is open or closed) and I thing the view can do this using BindingUtils and the bindSetter() method to invoke a function to manipulate that Tabnavigator child containers according to changes in the model. It is going to require some work. Paul > > Thanks > > -

Re: [flexcoders] Re: Cairngorm proper usage

2009-01-04 Thread Paul Andrews
- Original Message - From: "someguy7_7" To: 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 that the > first tab the list of rooms never goes away? I can't just set it to a > arraycollec

Re: [flexcoders] Any Developers on a Mac?

2009-01-02 Thread Paul Andrews
Arghh.. I should have never said anything - daughter drops ipod and it's now rather unhappy - three weeks out of warranty... :-( - Original Message - From: Paul Andrews To: flexcoders@yahoogroups.com Sent: Thursday, January 01, 2009 12:37 PM Subject: Re: [flexcoders

Re: [flexcoders] Any Developers on a Mac?

2009-01-01 Thread Paul Andrews
It just goes to show you can't generalise about these things. We have an inspiron 8200 still going strong and my son was skeptical that the ipod classic that we bought our daughter would last long since his friends had had experiences. Her ipod is going strong, his MP3player is pretty useless no

Re: [flexcoders] Re: Display only part of a canvas??

2008-12-24 Thread Paul Andrews
- Original Message - From: "jmfillman" To: Sent: Tuesday, December 23, 2008 11:22 PM Subject: [flexcoders] Re: Display only part of a canvas?? > Hi Tracy, > > This may work, I'd have to try it, and may be my best option. I was > hoping to be able to reset the scrollBar so that it appea

Re: [flexcoders] Display only part of a canvas??

2008-12-22 Thread Paul Andrews
- Original Message - From: "jmfillman" To: Sent: Tuesday, December 23, 2008 12:11 AM Subject: [flexcoders] Display only part of a canvas?? >I have a Canvas that with a height of 3000. For some users, I only want > them to be able to view and scroll a portion of the height of the > canv

Re: [flexcoders] Re: Help with Panel Container layout

2008-12-19 Thread Paul Andrews
- Original Message - From: "brucewhealton" To: Sent: Saturday, December 20, 2008 2:33 AM Subject: [flexcoders] Re: Help with Panel Container layout >I think you might be right. But, it seems like there is a way to > click on the handles and then set them to either anchor, unanchored o

Re: [flexcoders] Rounding error

2008-12-17 Thread Paul Andrews
Jules, For financial applications, it's far more problematic than testing for equality. For example, if you are applying a discount to a price the resulting price must have exact two digit decimal accuracy, otherwise by the time you have discounted a few items you have an invoice whose total do

Re: [flexcoders] Re: Parsley MVC :: some thoughts

2008-12-10 Thread Paul Andrews
- Original Message - From: "Ralf Bokelberg" <[EMAIL PROTECTED]> To: Sent: Wednesday, December 10, 2008 7:50 AM Subject: Re: [flexcoders] Re: Parsley MVC :: some thoughts > Haha Amy, that's a good one. Maybe it should :) > > But seriously, dispatchEvent is nothing more than a function ca

Re: [flexcoders] Best practice for calling asynchronous functions?

2008-12-10 Thread Paul Andrews
- Original Message - From: "Mark Carter" <[EMAIL PROTECTED]> To: Sent: Wednesday, December 10, 2008 8:34 AM Subject: [flexcoders] Best practice for calling asynchronous functions? > > In my app, I make a wide variety of XML-RPC calls. Now, to avoid having to > add/remove listeners all o

Re: [flexcoders] Re: Parsley MVC :: some thoughts

2008-12-09 Thread Paul Andrews
Here is a trivial example using dispatchEvent to show the synchronous invocation of listeners that could (if badly written) interfere with innocuous code. Normally when the "click to count" button is pressed, the count goes from 1 to 10. If the button to enable despatching the event is pressed,

Re: [flexcoders] Re: Parsley MVC :: some thoughts

2008-12-09 Thread Paul Andrews
- Original Message - From: "Ralf Bokelberg" <[EMAIL PROTECTED]> To: Sent: Tuesday, December 09, 2008 3:00 PM Subject: Re: [flexcoders] Re: Parsley MVC :: some thoughts > Hi Amy > > Afaik this is not possible in Flashplayer. A block of code is always > running through without any interu

Re: [flexcoders] Re: interface layout help

2008-12-09 Thread Paul Andrews
acrobat.com is using transitions to ease the view from one state to another. There's nothing stopping you from doing the same. The real trick to making slick interfaces is skill and experience, so it takes time. I'm still working on it. You shouldn't be too hard on yourself. Some people make in

Re: [flexcoders] Re: interface layout help

2008-12-09 Thread Paul Andrews
It's a common thing inFlex apps to offer a switch between a textual datagrid and a tile view, so I'm not sure why this adds any complication. There are loads of ways to implement an interface for the application that you have - there is no one right way to make this interface. Paul - Origi

Re: [flexcoders] Re: interface layout help

2008-12-09 Thread Paul Andrews
There's no real difference between clicking on a tile and clicking on a row in a datagrid - they both work from the same dataprovider. - Original Message - From: "stinasius" <[EMAIL PROTECTED]> To: Sent: Tuesday, December 09, 2008 10:00 AM Subject: [flexcoders] Re: interface layout hel

Re: [flexcoders] Parsley MVC :: some thoughts

2008-12-09 Thread Paul Andrews
make that call and > return control to the code that dispatched the event, the next line of > code in your event producer object will *not* execute. > > I'm just freaked out that I never realised this. How have my > applications even been *usable* until now?!?!? Pure luck and

Re: [flexcoders] Parsley MVC :: some thoughts

2008-12-08 Thread Paul Andrews
een happily thinking the whole time that events really *are* > asynchronous, but that's obviously not true. Reality check... > > Thanks guys. I think I might have run out of reasons *not* to use Parsley > :) > > On Tue, Dec 9, 2008 at 01:06, Paul Andrews <[EMAIL PROTECTED]

Re: [flexcoders] Loading swf with flashvars into Flex

2008-12-08 Thread Paul Andrews
- Original Message - From: "ericbichara" <[EMAIL PROTECTED]> To: Sent: Monday, December 08, 2008 12:25 PM Subject: [flexcoders] Loading swf with flashvars into Flex > Hi, > > I have several widgets which use flashvars and i wanted to create a > gallery application to showcase them in

Re: [flexcoders] Parsley MVC :: some thoughts

2008-12-08 Thread Paul Andrews
- Original Message - From: "Jules Suggate" <[EMAIL PROTECTED]> To: Sent: Monday, December 08, 2008 6:49 AM Subject: [flexcoders] Parsley MVC :: some thoughts > Anyone used Parsley MVC? I'm a bit confused by it. > > There's the standard MVC FrontController class, which exposes a method >

Re: [flexcoders] Re: interface layout help

2008-12-08 Thread Paul Andrews
- Original Message - From: "stinasius" <[EMAIL PROTECTED]> To: Sent: Monday, December 08, 2008 6:49 AM Subject: [flexcoders] Re: interface layout help > OK this is the description of the usage pattern. the application is a > real estate portal where people can easily find housing. now w

Re: [flexcoders] interface layout help

2008-12-06 Thread Paul Andrews
- Original Message - From: "stinasius" <[EMAIL PROTECTED]> To: Sent: Saturday, December 06, 2008 12:43 PM Subject: [flexcoders] interface layout help > hi guys i am seeking opinions on how to layout an interface of an app > i am developing. the front is laid out as follows > 1) search b

Re: [flexcoders] Can a control be a child of more than one parent?

2008-12-04 Thread Paul Andrews
- Original Message - From: "simonjpalmer" <[EMAIL PROTECTED]> To: Sent: Thursday, December 04, 2008 2:50 PM Subject: [flexcoders] Can a control be a child of more than one parent? >I have a set of controls that I want to share between two different > containers, one ViewStack and one Re

Re: [flexcoders] Error 1189: Attempt to delete the fixed property.

2008-12-03 Thread Paul Andrews
- Original Message - From: "devenhariyani" <[EMAIL PROTECTED]> To: Sent: Thursday, December 04, 2008 1:21 AM Subject: [flexcoders] Error 1189: Attempt to delete the fixed property. > hello, > > I'm having some very confusing problems with memory leaks. in one > particular function, I d

Re: [flexcoders] What exactly is an "illegal cue point", how do I fix?

2008-12-01 Thread Paul Andrews
- Original Message - From: "stephendricketts" <[EMAIL PROTECTED]> To: Sent: Sunday, November 30, 2008 5:59 PM Subject: [flexcoders] What exactly is an "illegal cue point", how do I fix? > I'm getting an error that says: "illegal cue point: Time must be > number and/or name must not be

Re: [flexcoders] Re: How to get an object to delete itself?

2008-11-29 Thread Paul Andrews
: this.owner.removeChild(this); synonymous to: this.parent.removeChild(this); On Sat, Nov 29, 2008 at 4:04 PM, Amy <[EMAIL PROTECTED]> wrote: --- In flexcoders@yahoogroups.com, "Paul Andrews" <[EMAIL PROTECTED]> wrote: > > this.parent.removeC

Re: [flexcoders] How to get an object to delete itself?

2008-11-28 Thread Paul Andrews
aykel Ben Jemia Allmas Web & RIA Development http://www.allmas-tn.com On Fri, Nov 28, 2008 at 12:25 PM, Paul Andrews <[EMAIL PROTECTED]> wrote: Tom, Setting alpha=0 won't make the object available for garbage collection. If you don't want the oject any

Re: [flexcoders] How to get an object to delete itself?

2008-11-28 Thread Paul Andrews
Tom, Setting alpha=0 won't make the object available for garbage collection. If you don't want the oject any more you need to remove all references to it. This will require that you remove it from the Display list and remove any other references to it. You also need to remove the timer. So you

Re: [flexcoders] **View States Problem**

2008-11-27 Thread Paul Andrews
- Original Message - From: "malik_robinson" <[EMAIL PROTECTED]> To: Sent: Thursday, November 27, 2008 12:46 AM Subject: [flexcoders] **View States Problem** > Hi, > > I am using Flex 3 > > I am trying to use "view states" in my Flex application. My code seems > to work fine when I just

Re: [flexcoders] **View States Problem**

2008-11-27 Thread Paul Andrews
I think it's just a case of the OPs terminology - he expects to see components from the base state plus state2 when he switches to state3. I don't think he means being in three states at the same time.. - Original Message - From: Chet Haase To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Store local data

2008-11-22 Thread Paul Andrews
> The AIR has a SQL local data store. I'm looking foward to have the same > thing in > Flash Player. :) You probably don't need it. Paul > > On Sat, Nov 22, 2008 at 1:38 PM, Paul Andrews <[EMAIL PROTECTED]> wrote: >> >> - Original Message - >&g

Re: [flexcoders] Store local data

2008-11-22 Thread Paul Andrews
- Original Message - From: "Marco Catunda" <[EMAIL PROTECTED]> To: Sent: Saturday, November 22, 2008 3:00 PM Subject: [flexcoders] Store local data > Hi, > > Is there any way to store local data using Flash Player? Yes - shared objects (like cookies, really) http://livedocs.adobe.com

Re: [flexcoders] Re: How do they do that (Flex & video)

2008-11-19 Thread Paul Andrews
comfederation, You have a niche usage of the tools and while we would all love Adobe to provide a solution to your problem, few would regard it as essential. Beating a drum about this particular feature omission is unlikely to result in a mad clamour of support, as is dismissing respondents to

Re: [flexcoders] how to bring this transition

2008-11-16 Thread Paul Andrews
- Original Message - From: "arulmurugan" <[EMAIL PROTECTED]> To: Sent: Monday, November 17, 2008 2:22 AM Subject: [flexcoders] how to bring this transition > Hi, > > In the following > http://d-p.com/media/swf/amazon.swf > > when we search for a book say flex. > > a new panel comes and

Re: [flexcoders] Flex Rich Client Platform Framework??

2008-11-13 Thread Paul Andrews
- Original Message - From: "Paul Andrews" <[EMAIL PROTECTED]> To: Sent: Thursday, November 13, 2008 4:22 PM Subject: Re: [flexcoders] Flex Rich Client Platform Framework?? > - Original Message - > From: "lwsiv" <[EMAIL PROTECTED]> > T

Re: [flexcoders] Flex Rich Client Platform Framework??

2008-11-13 Thread Paul Andrews
- Original Message - From: "lwsiv" <[EMAIL PROTECTED]> To: Sent: Thursday, November 13, 2008 3:54 PM Subject: [flexcoders] Flex Rich Client Platform Framework?? >I am looking at Flex as a rich internet client framework, but am > wondering if there are any add-ons, extensions, libraries

Re: [flexcoders] Re: How do they do that (Flex & video) ?

2008-11-13 Thread Paul Andrews
- Original Message - From: "Tom Chiverton" <[EMAIL PROTECTED]> To: Sent: Thursday, November 13, 2008 3:53 PM Subject: Re: [flexcoders] Re: How do they do that (Flex & video) ? > On Thursday 13 Nov 2008, Paul Andrews wrote: >> > mxmlc. >> How wi

Re: [flexcoders] Re: How do they do that (Flex & video) ?

2008-11-13 Thread Paul Andrews
- Original Message - From: "Tom Chiverton" <[EMAIL PROTECTED]> To: Sent: Thursday, November 13, 2008 9:46 AM Subject: Re: [flexcoders] Re: How do they do that (Flex & video) ? > On Wednesday 12 Nov 2008, comfederation wrote: >> Thanks Tom ... but what Flex related "piece" would I use on

Re: [flexcoders] Cloning Adobe Premiere Express

2008-11-12 Thread Paul Andrews
Problem is that the OP wants to build this functionality into the application as part of the application - so any user can generate that video.. - Original Message - From: Nate Beck To: flexcoders@yahoogroups.com Sent: Wednesday, November 12, 2008 10:14 PM Subject: Re: [flexco

Re: [flexcoders] udefined property error without function

2008-11-11 Thread Paul Andrews
't understand about having to use a function. > I'm sure I moved my eyes over the very document, but it just didn't stick. > > Thanks. > > John > > Paul Andrews wrote: >> >> >> I have a feeling t

Re: [flexcoders] udefined property error without function

2008-11-11 Thread Paul Andrews
- Original Message - From: "john fisher" <[EMAIL PROTECTED]> To: Sent: Tuesday, November 11, 2008 6:24 PM Subject: Re: [flexcoders] udefined property error without function >I am calling addChild inside the mx script section of a mxml file. If it > has to be called inside a method, the

Re: [flexcoders] udefined property error without function

2008-11-11 Thread Paul Andrews
asonable as a snippet may have the wrong context. Does your error have a line number and exactly which line does it refer to? I have a feeling this error may not be to do with these particular snippets. Paul > > Paul Andrews wrote: >> - >> >> You'll notice that in

Re: [flexcoders] Http Service Issue -Urgent

2008-11-11 Thread Paul Andrews
- Original Message - From: "harsha_galla" <[EMAIL PROTECTED]> To: Sent: Tuesday, November 11, 2008 2:52 PM Subject: [flexcoders] Http Service Issue -Urgent > Hi, Iam new Flex user. I have come across a peculiar problem.. > I wanted a flex UI for an already existing java project. So I we

Re: [flexcoders] Getting started with flex

2008-11-11 Thread Paul Andrews
- Original Message - From: Valerio Bruno To: flexcoders@yahoogroups.com Sent: Monday, November 10, 2008 10:47 PM Subject: [flexcoders] Getting started with flex Hi everybody ! I and my friends decided to develop a little web based card game and Flex seems to be the bes

Re: [flexcoders] Re: Flex Book wish :)

2008-11-11 Thread Paul Andrews
ight way' to do things and there sure are a lot more 'wrong ways' to do things! Paul > > --- In flexcoders@yahoogroups.com, "Paul Andrews" <[EMAIL PROTECTED]> wrote: >> >> Not exactly what you want, but worth a look: >> http://www.friendsofe

Re: [flexcoders] Flex Book wish :)

2008-11-11 Thread Paul Andrews
Not exactly what you want, but worth a look: http://www.friendsofed.com/book.html?isbn=9781430210276 Actionscript design patterns: http://www.amazon.com/Advanced-ActionScript-3-Design-Patterns/dp/0321426568 , http://www.amazon.com/ActionScript-3-0-Design-Patterns-Programming/dp/0596528469 Pau

Re: [flexcoders] udefined property error without function

2008-11-11 Thread Paul Andrews
- Original Message - From: "john fisher" <[EMAIL PROTECTED]> To: Sent: Tuesday, November 11, 2008 1:39 AM Subject: [flexcoders] udefined property error without function > context: an mxml app, with classes written by me ( Zdemos) and Flare > classes. "myCanvas" is the id of a canvas in

Re: [flexcoders] Re: removeEventListener

2008-11-07 Thread Paul Andrews
removeEventListener >> >> >> I will try to get a sample. >> But what exactly are you asking for? >> I am showing how I am adding a custom event listener to a form's >> parent. And how the form then processes remote event. >> >> --- In > flexc

Re: [flexcoders] Re: removeEventListener

2008-11-07 Thread Paul Andrews
t; df.formatString = > "MM/DD/"; > eventObj.runDate = > df.format(date.selectedDate); > dispatchEvent(eventObj); You've left out the most important part! The forms and the event handling.. Try and make a small example with the forms - it's

Re: [flexcoders] Adding data to a bubbling event

2008-11-07 Thread Paul Andrews
o reuse your 'inside' components elsewhere and this elsewhere 'forgets' (because its not really needed) to initialize the component... Maybe a solution would be to check if parentComp is set or not and if not set throw the event whithout the extra parameters? On Fri, Nov

Re: [flexcoders] removeEventListener

2008-11-07 Thread Paul Andrews
- Original Message - From: "markgoldin_2000" <[EMAIL PROTECTED]> To: Sent: Friday, November 07, 2008 4:26 PM Subject: [flexcoders] removeEventListener >I have spent some time trying to understand why removeEventListener > would not remove an event listener. I have a Vbox that at run tim

Re: [flexcoders] Adding data to a bubbling event

2008-11-07 Thread Paul Andrews
I'm beginning to wonder if the best solution is for the component to know all of the required information - it can be set up when it is instantiated. It seems to me that while in most scenarios extending the event payload may work it means that the order in which events are handled will be vital

Re: [flexcoders] Adding data to a bubbling event

2008-11-07 Thread Paul Andrews
I think it would be a better solution to stop the event bubbling and issue a new event - 'StoreProductEvent' or something. Then there's no question about how the event should be handled and the intent/purpose of the event is clearly understood, nether would you have to change your final event h

Re: [flexcoders] Objects are not Garbage Collected

2008-11-05 Thread Paul Andrews
Well spotted! - Original Message - From: Fotis Chatzinikos To: flexcoders@yahoogroups.com Sent: Wednesday, November 05, 2008 7:03 PM Subject: Re: [flexcoders] Objects are not Garbage Collected very quickly, objArrCollModelsVO seems like an arraycollection... are you sure

Re: [flexcoders] Re: my first flex website

2008-11-05 Thread Paul Andrews
A trick I have done in flash is to load the images - demanded or not - up front and either you can just throw them away or store them for use later. It might seem odd throwing the images away, but they should still be in the browser cache, so you get an instant load the second time around. Idea

Re: [flexcoders] Objects are not Garbage Collected

2008-11-05 Thread Paul Andrews
In order to be garbage collected there must not be any references to the object at all. If you have assigned another variable to the object and not set that to null, it won't be collected. If you have an event handler associated with an object, it won't be collected. When nothing at all is refer

Re: [flexcoders] Re: Getting all the fired events in flex application.

2008-11-04 Thread Paul Andrews
Here's a quick example. Every ten seconds the application checks to see if the button has been pressed. If it hasn't it times the application out. It takes at least ten seconds of non clicking for a timeout to occur and may take up to 20 seconds to trigger the timeout. This is a simple scheme -

Re: [flexcoders] Re: Getting all the fired events in flex application.

2008-11-04 Thread Paul Andrews
- Original Message - From: "jasbir_dadyal" <[EMAIL PROTECTED]> To: Sent: Tuesday, November 04, 2008 3:41 PM Subject: [flexcoders] Re: Getting all the fired events in flex application. > --- In flexcoders@yahoogroups.com, "Paul Andrews&qu

Re: [flexcoders] Getting all the fired events in flex application.

2008-11-04 Thread Paul Andrews
- Original Message - From: "jasbir_dadyal" <[EMAIL PROTECTED]> To: Sent: Tuesday, November 04, 2008 1:40 PM Subject: [flexcoders] Getting all the fired events in flex application. > Hi, >In my application I am working on session management.On session > timeout i want to get all fir

Re: [flexcoders] Re: MultipleEvents

2008-11-04 Thread Paul Andrews
- Original Message - From: "bisht_mech" <[EMAIL PROTECTED]> To: Sent: Tuesday, November 04, 2008 5:36 AM Subject: [flexcoders] Re: MultipleEvents > Thanks a lott paul. Really got a good learning from this. :) You're welcome. Paul

Re: [flexcoders] MultipleEvents

2008-11-03 Thread Paul Andrews
- Original Message - From: Parkash To: flexcoders@yahoogroups.com Sent: Monday, November 03, 2008 5:13 PM Subject: [flexcoders] MultipleEvents Hi every one i have one simple textfiled with focusout event and button with click event. Now when i entered some text in tex

Re: [flexcoders] flex label printing...

2008-11-03 Thread Paul Andrews
They seem to have windows drivers, so there shouldn't be a problem, should there? My post about this subject was for a printer that had no windows drivers - this looks rather different. Paul - Original Message - From: "Tom Chiverton" <[EMAIL PROTECTED]> To: Sent: Monday, November 03,

Re: [flexcoders] Re: palin text printing in flex without dialogue box.

2008-11-03 Thread Paul Andrews
I haven't needed to solve this problem in Flex, but it was a problem (in another life) with some other software that I used. I know that if we were building the system using Flex, our solution would work just as well. In essence we had an intranet based environment with networked printers (dot

Re: [flexcoders] Re:How to pass data to popup window?

2008-11-01 Thread Paul Andrews
You can send a custom event and use that to transport your data.. - Original Message - From: Louise Rains To: flexcoders@yahoogroups.com Sent: Saturday, November 01, 2008 3:16 PM Subject: [flexcoders] Re:How to pass data to popup window? Oh, never mind about passing data ba

Re: [flexcoders] How to pass data to popup window?

2008-11-01 Thread Paul Andrews
- Original Message - From: "markflex2007" <[EMAIL PROTECTED]> To: Sent: Saturday, November 01, 2008 3:27 AM Subject: [flexcoders] How to pass data to popup window? > Hi , > > I need pass data from main window to popup > window(mx:titlewindow).Please give me a idea how to do this. > > Pl

Re: [flexcoders] Custom log

2008-10-31 Thread Paul Andrews
If you just want to write messages to a server log, couldn't you just make your own standalone class rather than bother extending anything else? Paul - Original Message - From: "templeavenue" <[EMAIL PROTECTED]> To: Sent: Friday, October 31, 2008 3:22 PM Subject: [flexcoders] Custom lo

Re: [flexcoders] web compiler

2008-10-31 Thread Paul Andrews
- Original Message - From: Paul Andrews To: flexcoders@yahoogroups.com Sent: Friday, October 31, 2008 1:37 PM Subject: Re: [flexcoders] web compiler  - Original Message - From: jitendra jain To: flexcoders@yahoogroups.com Sent: Friday, October 31

Re: [flexcoders] web compiler

2008-10-31 Thread Paul Andrews
Jitendra Jain -- From: Paul Andrews <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, 31 October, 2008 4:42:46 PM Subject: Re: [flexcoders] web compiler  Thanks Jitendra. It's not an article I'd lo

Re: [flexcoders] web compiler

2008-10-31 Thread Paul Andrews
rds, Jitendra Jain ------ From: Paul Andrews <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, 31 October, 2008 2:54:05 PM Subject: Re: [flexcoders] web compiler  Jitendra, What specifically is it about dynamic compilation that makes this

Re: [flexcoders] web compiler

2008-10-31 Thread Paul Andrews
bject: Re: [flexcoders] web compiler Paul, Sorry for late reply. I'm using this for load testing. Thanks, with Regards, Jitendra Jain -- From: Paul Andrews <[EMAIL PROTECTED]> To: flexcoders

Re: [flexcoders] Re: Do you use a Mac?

2008-10-28 Thread Paul Andrews
I have to say that I'm with Dmitri on this one - I can't remember the last time my win XP laptop crashed. Paul - Original Message - From: "Dmitri Girski" <[EMAIL PROTECTED]> To: Sent: Wednesday, October 29, 2008 2:06 AM Subject: [flexcoders] Re: Do you use a Mac? > > --- In flexcoders

Re: [flexcoders] Flex Facebook 5000 Fan Contest

2008-10-28 Thread Paul Andrews
It is. :-( - Original Message - From: Gregor Kiddie To: flexcoders@yahoogroups.com Sent: Tuesday, October 28, 2008 1:45 PM Subject: RE: [flexcoders] Flex Facebook 5000 Fan Contest I presume the usual guff about the prize only applying to certain parts of North America is

Re: [flexcoders] Re: Do you use a Mac?

2008-10-28 Thread Paul Andrews
- Original Message - From: "ross_w_henderson" <[EMAIL PROTECTED]> To: Sent: Tuesday, October 28, 2008 1:39 PM Subject: [flexcoders] Re: Do you use a Mac? >I switched about 10 months ago, and I'll still tell anyone who is > interested how happy I am about it. I do all of my work, comfor

Re: [flexcoders] Flex Facebook 5000 Fan Contest

2008-10-28 Thread Paul Andrews
- Original Message - From: "agangji_con" <[EMAIL PROTECTED]> To: Sent: Tuesday, October 28, 2008 1:33 PM Subject: [flexcoders] Flex Facebook 5000 Fan Contest Hey guys, My name is Areez, and I work for Adobe as part of the product marketing team for Adobe Flex. Just wanted to let you g

Re: [flexcoders] Re: Gosh what a state to be in..

2008-10-28 Thread Paul Andrews
up? IE you can only push if the context is "this" and you can only pop if the context is "that" This would definitely allow sub-sub states very easily and allow restriction in these sub states. I use this algorithm in an as3 parser. Mike On Tue, Oct 28,

Re: [flexcoders] Re: Gosh what a state to be in..

2008-10-28 Thread Paul Andrews
t having a state C. By just hiding the components I can preserve their context. This strategy just wont work if there are too many states involved. Paul - Original Message - From: "Paul Andrews" <[EMAIL PROTECTED]> To: Sent: Tuesday, October 28, 2008 12:05 PM Subject: Re: [f

Re: [flexcoders] Re: Gosh what a state to be in..

2008-10-28 Thread Paul Andrews
tly there, but it's not to do with the view components themselves - it's about preserving context between state changes - I'm not suggesting that's a function of the view, it's a controller issue. > Or i just didn't get your intention right... Mostly right. Thanks

[flexcoders] Gosh what a state to be in..

2008-10-28 Thread Paul Andrews
I think I know the answer to this, but here goes.. Lets suppose I have an application with states A, B and C, plus the default. There are buttons in states A, B and default to switch the application to state C. That would be all fine and dandy, but once I have entered state C, I can press a bu

Re: [flexcoders] Flex connection to Oracle 10g PL/SQL

2008-10-28 Thread Paul Andrews
- Original Message - From: "Tom Chiverton" <[EMAIL PROTECTED]> To: Sent: Wednesday, October 22, 2008 2:31 PM Subject: Re: [flexcoders] Flex connection to Oracle 10g PL/SQL > On Wednesday 22 Oct 2008, Juliano Mendes wrote: >> No need server side language. > ... >> Oracle using a HTTP Ser

Re: [flexcoders] web compiler

2008-10-25 Thread Paul Andrews
f web compiler Simply i have to add my library source path in the flex-config files. user_classes Thanks, with Regards, Jitendra Jain -- From: Paul Andrews <[EMAIL PROTECTE

Re: [flexcoders] Do you use a Mac?

2008-10-23 Thread Paul Andrews
There's a split between the media/creative industry and those who do a real job, err I mean everybody else (that's a joke BTW). Generally speaking Macs are to be found with media/creative/trendy types, but rarely outside that circle. I've lived in a development environment and until I switched

Re: Re[flexcoders] versing an ArrayCollection

2008-10-23 Thread Paul Andrews
- Original Message - From: "Sceneshift" <[EMAIL PROTECTED]> To: Sent: Thursday, October 23, 2008 5:12 PM Subject: Re[flexcoders] versing an ArrayCollection > > Hey guys, > > I have an array collection which I populate from a web service. It > consists > of a bunch of objects which I ac

Re: [flexcoders] Re: need a flash developer / location of flash developers

2008-10-23 Thread Paul Andrews
- Original Message - From: "tchredeemed" <[EMAIL PROTECTED]> To: Sent: Thursday, October 23, 2008 4:31 PM Subject: [flexcoders] Re: need a flash developer / location of flash developers > nope, i mean flash flex is to flexcoders as flash is to ... It's not that hard, flash tiger.

Re: [flexcoders] Is this possible?

2008-10-23 Thread Paul Andrews
- Original Message - From: "donvoltz" <[EMAIL PROTECTED]> To: Sent: Thursday, October 23, 2008 2:19 PM Subject: [flexcoders] Is this possible? > Hello, > > I am working on a large app using Cairngorm and am trying to develop > a sort of copmplex component amd am curious if this is a wo

Re: [flexcoders] web compiler

2008-10-23 Thread Paul Andrews
- Original Message - From: Michael Schmalle To: flexcoders@yahoogroups.com Sent: Friday, October 17, 2008 7:00 PM Subject: Re: [flexcoders] web compiler Ok, I had this in my plans to investigate in a couple months for my server. So is there something that caches swf o

Re: [flexcoders] web compiler

2008-10-23 Thread Paul Andrews
- Original Message - From: jitendra jain To: flex group flex Sent: Thursday, October 23, 2008 8:15 AM Subject: [flexcoders] web compiler Iam using Flex 3 and I have configured webtier.war for my application . My application works fine if I use main.html or main..swf. But whe

Re: [flexcoders] ARGH shared object array -- getting data

2008-10-22 Thread Paul Andrews
var ob:Object = arr[Number(ln)] should be var ob:Object = arr[ln-1] You don't need to cast the ln variable and arrays are indexed from 0 so the last value is at length -1. paul - Original Message - From: grimmwerks To: flexcoders@yahoogroups.com Sent: Thursday, October 23, 20

Re: [flexcoders] Re: How to keep Tree control synchronized with the database. Please Help

2008-10-22 Thread Paul Andrews
ay! Paul Tracy -- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Andrews Sent: Wednesday, October 22, 2008 6:51 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: How to keep Tree control synchr

Re: [flexcoders] Re: How to keep Tree control synchronized with the database. Please Help

2008-10-22 Thread Paul Andrews
quest hasn't yet completed. Bit harder than at first sight, isn't it? Paul - Original Message - From: Paul Andrews To: flexcoders@yahoogroups.com Sent: Wednesday, October 22, 2008 11:39 PM Subject: Re: [flexcoders] Re: How to keep Tree control synchronized with the d

Re: [flexcoders] Re: How to keep Tree control synchronized with the database. Please Help

2008-10-22 Thread Paul Andrews
A word of caution Anuj. I don't know if your timer works once a second or once a minute, or once every two minutes. If you have only one online user, it's not too huge a deal either way. If you have a hundred users you can cause big problems for your server. The timer technique just makes the b

Re: [flexcoders] Re: createChildren(): adding 20 identical buttons to panel?

2008-10-22 Thread Paul Andrews
- Original Message - From: "Mic" <[EMAIL PROTECTED]> To: Sent: Wednesday, October 22, 2008 10:28 PM Subject: [flexcoders] Re: createChildren(): adding 20 identical buttons to panel? > Thanks for all the help I was trying to > > b1 = new Button; > this.addChild(b1); > this.addChil

Re: [flexcoders] parent styles ( was Re: Still no one knows ? Please help.)

2008-10-22 Thread Paul Andrews
This might be an interesting thread for some people - it might be an idea to change the thread name for the saga.. - Original Message - From: Michael Schmalle To: flexcoders@yahoogroups.com Sent: Wednesday, October 22, 2008 2:52 PM Subject: Re: [flexcoders] Re: Still no one kn

Re: [flexcoders] How to keep Tree control synchronized with the database. Please Help

2008-10-22 Thread Paul Andrews
Anuj, You will already have seen a few comments about this problem. If the user is updating the database inside the application you can use an event to signal to the application that the trees dataprovider should be refreshed, that would cause your tree to be updated. Of course, if your tree

Re: [flexcoders] How to keep Tree control synchronized with the database. Please Help

2008-10-21 Thread Paul Andrews
Isn't this simply a problem that multiple calls are required to poll the database for change? I think the OP really needs a push type service. There's no way to know that the database table has changed without polling the database.. - Original Message - From: Tracy Spratt To: fle

Re: [flexcoders] Re: Hide columns from a datagrid

2008-10-21 Thread Paul Andrews
- Original Message - From: "guillaumeracine" <[EMAIL PROTECTED]> To: Sent: Tuesday, October 21, 2008 6:15 PM Subject: [flexcoders] Re: Hide columns from a datagrid > Hehehe yes but this is the context of my application... > I have to convert an existing catalog of products in flex and >

Re: [flexcoders] Hide columns from a datagrid

2008-10-21 Thread Paul Andrews
- Original Message - From: "guillaumeracine" <[EMAIL PROTECTED]> To: Sent: Tuesday, October 21, 2008 5:59 PM Subject: [flexcoders] Hide columns from a datagrid >I have a datagrid in a mxml file that contains some hard coded > mx:column objects. > I want to hide the mx:columns that does

Re: [flexcoders] Temporarily block tabbing into a Container

2008-10-21 Thread Paul Andrews
Besides the mechanics of this, you should change the appearance of the tab to indicate that it's not available for use, otherwise the user may think there's a fault with the application if there's no clear indicator. Paul - Original Message - From: "reflexactions" <[EMAIL PROTECTED]> To

Re: [flexcoders] Re: Still no one knows ? Please help.

2008-10-20 Thread Paul Andrews
Build a very small example, then post it here. Paul - Original Message - From: "itdanny2002" <[EMAIL PROTECTED]> To: Sent: Tuesday, October 21, 2008 4:21 AM Subject: [flexcoders] Re: Still no one knows ? Please help. >I have tried but not success. > > Please note that it is bullet, rad

Re: [flexcoders] Re: Resizing a class file

2008-10-20 Thread Paul Andrews
- Original Message - From: "flexaustin" <[EMAIL PROTECTED]> To: Sent: Monday, October 20, 2008 8:53 PM Subject: [flexcoders] Re: Resizing a class file >I am embedding a swf, which I believe requires a type of Class. Yes, but classes aren't objects. Assign your class as the source of a

<    1   2   3   4   5   6   7   8   9   >