Re: [flexcoders] Terminating a function

2008-02-19 Thread Paul Andrews
return; Paul - Original Message - From: "ghus32" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 19, 2008 4:56 PM Subject: [flexcoders] Terminating a function > How do you terminate or stop a function in Flex 2.0? > > Thanks > > > > -- > Flexcoders Mailing List > FAQ: http://groups.yah

[flexcoders] Any ArrayCollection tricks?

2008-02-19 Thread Paul Andrews
Unsurprisingly, my Flex applications tend to have a common theme - many components driven from the same data, but with different filter functions. With ArrayCollections having one filter function and needing to trigger Binding events, the obvious solution seems to be to duplicate the ArrayColle

Re: [flexcoders] Re: Any ArrayCollection tricks?

2008-02-19 Thread Paul Andrews
PROTECTED]> wrote: ListCollectionView and separate filter functions --- In flexcoders@yahoogroups.com, "Paul Andrews" <[EMAIL PROTECTED]> wrote: > > Unsurprisingly, my Flex applications tend to have a common theme - many > components driven from the same

Re: [flexcoders] Re: do you need CS Degree to get a job?

2008-02-20 Thread Paul Andrews
- Original Message - From: "b_alen" <[EMAIL PROTECTED]> To: Sent: Wednesday, February 20, 2008 7:41 AM Subject: [flexcoders] Re: do you need CS Degree to get a job? > No matter what everybody's saying, I'm finding a huge difference > between developers with formal education and those se

Re: [flexcoders] do you need CS Degree to get a job?

2008-02-20 Thread Paul Andrews
I think the original question tends to ignore the fact that no two employers are indeed the same. So there's no yes or no to be had, just maybe.. Paul - Original Message - From: Daniel Freiman To: flexcoders@yahoogroups.com Sent: Wednesday, February 20, 2008 3:09 PM Subject:

Re: [flexcoders] How to turn off exception messages in release version.

2008-02-22 Thread Paul Andrews
- Original Message - From: "lytvynyuk" <[EMAIL PROTECTED]> To: Sent: Friday, February 22, 2008 5:40 PM Subject: [flexcoders] How to turn off exception messages in release version. > How to turn off exception messages ( e.g. ActionScript errors ) in > release version? Fix the errors?

Re: [flexcoders] as3 global variables - no more

2008-02-22 Thread Paul Andrews
- Original Message - From: "dsds99" <[EMAIL PROTECTED]> To: Sent: Friday, February 22, 2008 6:41 PM Subject: [flexcoders] as3 global variables - no more > Yes, using global variables was easy solution to referencing > movieclips from anywhere. > > I'm trying to link up my play button to

Re: [flexcoders] Where did the value go?

2008-02-24 Thread Paul Andrews
Steve, I think Alex has already pointed out the reason you have a problem: selectedItem="{selectedSlide}" Remove this line. If you have a panel that contains fields that should be bound to the selected item, you need to have the binding there, not as above. Paul - Original Message -

Re: [flexcoders] array.length

2008-02-24 Thread Paul Andrews
Try myMap.push(a); myMap.push(b); myMap.push(c); I'm not sure if you really mean: myMap.push("A"); myMap.push("B"); myMap.push("C"); Don't be afraid to use the flex help! Paul - Original Message - From: "annouss79" <[EMAIL PROTECTED]> To: Sent: Saturday, February 23, 2008 10:06 PM S

Re: [flexcoders] Flex Open Source

2008-02-24 Thread Paul Andrews
- Original Message - From: "moelshimy" <[EMAIL PROTECTED]> To: Sent: Sunday, February 24, 2008 4:12 PM Subject: [flexcoders] Flex Open Source > Hi,I want to decompil SWF File to Flex Files > what can i do What has that to do with Open Source? Is there ever a legitimate reason for doi

Re: [flexcoders] Flex Open Source

2008-02-24 Thread Paul Andrews
#x27;m noy sure if the OP is expecting mxml files! On Sun, Feb 24, 2008 at 12:23 PM, Sherif Abdou <[EMAIL PROTECTED]> wrote: you can't do that, SWF file for Flex/AIR will not be decompiled. - Original Message From: Paul Andrews <[EMAIL PROTECTED]> To:

Re: [flexcoders] Flex Open Source

2008-02-24 Thread Paul Andrews
is compiled down to actionscript in a precompile mechanism (before the swf compilation even begins) Yes, you and I know that, but the OP? That's why I asked what a flex file was! On Sun, Feb 24, 2008 at 12:45 PM, Paul Andrews <[EMAIL PROTECTED]> wrote: - Origi

Re: [flexcoders] Where did the value go?

2008-02-24 Thread Paul Andrews
ack of explicit error when the typecast fails. Again...i'm in much appreciation for the feedback. It's clear that it's time to pick up unit testing. On 2/24/08, Paul Andrews <[EMAIL PROTECTED]> wrote: Steve, I think Alex has already pointed out the reason yo

Re: [flexcoders] CairngormEvent - Place to put the static variable that stores the name of the event

2008-02-25 Thread Paul Andrews
I always put the event name into the class - cairngorm event, or any event. I don't know why anyone wouldn't. This way around you can't have mismatched event class names (well not easily) and you have only one place to go to maintain your event. Paul - Original Message - From: Fern

Re: [flexcoders] Help-files as PDF-documents?

2008-02-26 Thread Paul Andrews
- Original Message - From: "hyes3mn3" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 26, 2008 1:32 PM Subject: [flexcoders] Help-files as PDF-documents? > Hi, > > When I'm trying to learn a new technology, in this case flex, I like > to sit in my comfortable chair and read old fashione

Re: [flexcoders] New files in project not compiled?

2008-02-26 Thread Paul Andrews
In Flex 2 the only time that happens to me is when I mess up the package names.. Paul - Original Message - From: "Barnaby Jones" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 26, 2008 8:35 PM Subject: [flexcoders] New files in project not compiled? > My flex project (using flex buil

Re: [flexcoders] Re: New files in project not compiled?

2008-02-26 Thread Paul Andrews
Look for a binding with a missing closing brace.. Paul - Original Message - From: "Barnaby Jones" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 26, 2008 8:46 PM Subject: [flexcoders] Re: New files in project not compiled? >I have cleaned the project( many times actually ). I also ch

Re: [flexcoders] missing results in datagrid

2008-02-26 Thread Paul Andrews
Try dataProvider="{form1.lastResult.accountCouponRow}"> Paul - Original Message - From: "vr6stress" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 26, 2008 11:18 PM Subject: [flexcoders] missing results in datagrid > [newbie] > it seems fairly straight forward, i use the httpservice

Re: [flexcoders] Re: missing results in datagrid

2008-02-27 Thread Paul Andrews
se dubbing > warning: unable to bind to property 'accountCouponRow' on class 'XML' > (class is not an IEventDispatcher) > > if i leave it the way it was i get 2 lines. > > --- In flexcoders@yahoogroups.com, "Paul Andrews" <[EMAIL PROTECT

Re: [flexcoders] Programmatically know if property is a Getter or Setter?

2008-02-27 Thread Paul Andrews
It could be either, both or none of those. How would knowing which it is help? Paul - Original Message - From: <[EMAIL PROTECTED]> To: "FlexCoders" Sent: Wednesday, February 27, 2008 5:41 PM Subject: [flexcoders] Programmatically know if property is a Getter or Setter? > Is there a p

Re: [flexcoders] Flex 3 Upgrade

2008-02-27 Thread Paul Andrews
There are two different Flex Builder 3 options - standard or professional. You can upgrade to either. If you choose professional then having an existing charting licence will make the upgrade cheaper. As for making it preferable, it depends on what you will use Flex for (and your circumstances)

Re: [flexcoders] Re: Flex Builder complaint

2008-03-03 Thread Paul Andrews
- Original Message - From: "Paul Decoursey" <[EMAIL PROTECTED]> To: Sent: Monday, March 03, 2008 4:27 PM Subject: Re: [flexcoders] Re: Flex Builder complaint > Did you read the thread... I had backups. It's a bug. When you > import any other project into eclipse or Flex builder it doe

Re: [flexcoders] Re: Praise for the Flex 3 Documentation

2008-03-03 Thread Paul Andrews
I've just ordered the printed Flex 3 documentation. Yay! Nows the chance for some UK Flexers to buy my Flex 2 docs at a good price.. ;-) I'd also like to give Adobe the thumbs-up on making the product dual platform - PC and Mac - I'm sure that's helped a lot of people. Paul - Original Mes

Re: [flexcoders] Access MySQL directly from Flex client

2008-03-03 Thread Paul Andrews
Maybe this will help: http://flexcubed.com/component_details.php?id=8d433f43055d5f0349cebb8501451da2 Paul - Original Message - From: "Shailesh Mangal" <[EMAIL PROTECTED]> To: Sent: Monday, March 03, 2008 11:57 PM Subject: [flexcoders] Access MySQL directly from Flex client >I need to

Re: [flexcoders] Re: Praise for the Flex 3 Documentation

2008-03-03 Thread Paul Andrews
- Original Message - From: "comfederation" <[EMAIL PROTECTED]> To: Sent: Tuesday, March 04, 2008 5:06 AM Subject: [flexcoders] Re: Praise for the Flex 3 Documentation > --- In flexcoders@yahoogroups.com, "Paul Andrews" <[EMAIL PROTECTED]> wrote: >&

Re: [flexcoders] item renderer flex 2

2008-03-03 Thread Paul Andrews
- Original Message - From: Rahul Kandari To: flexcoders@yahoogroups.com Sent: Tuesday, March 04, 2008 7:17 AM Subject: [flexcoders] item renderer flex 2 hi i m working with item renderers in flex 2 . i want to put the renderer inside a package but its not working i have to

Re: [flexcoders] How to reset a scrollbar - would really appreciate some assistance please

2008-03-04 Thread Paul Andrews
Check out the help docs! I'm not sure if you mean scroll the datagrid, or scrollbars on the hbox. DataGrid: scrollToIndex () method public function scrollToIndex(index:int):Boolean Ensures that the data provider item at the given index is visible. If the item is visible, the vertical

Re: [flexcoders] Flex Builder 3: *major* bug in deleting linked folders

2008-03-05 Thread Paul Andrews
- Original Message - From: "Troy Gilbert" <[EMAIL PROTECTED]> To: Sent: Wednesday, March 05, 2008 9:38 PM Subject: Re: [flexcoders] Flex Builder 3: *major* bug in deleting linked folders >> However, I think there is a reason for FB to change file permissions. I >> keep the output-bin

Re: [flexcoders] ArrayList Vs ArrayCollection

2008-03-06 Thread Paul Andrews
If you search in help, it's only mentioned as a C# class and does not appear to exist in the mx.collections package. Where have you seen it? Paul - Original Message - From: DannyT To: flexcoders@yahoogroups.com Sent: Thursday, March 06, 2008 11:29 PM Subject: [flexcoders] Ar

Re: [flexcoders] list within list within list data proviers

2008-03-06 Thread Paul Andrews
Sounds complicated! I think by data binding you mean getting at the extra data in the main list as you traverse the tree to it's leaves. If so instead of just having an array of strings you need to have an object that refers back to the entry (containing the extra information) in the original A

Re: [flexcoders] Measure Twice... upload once.

2008-03-12 Thread Paul Andrews
Seems fine now. - Original Message - From: Rick Winscot To: flexcoders@yahoogroups.com Sent: Wednesday, March 12, 2008 7:09 AM Subject: [flexcoders] Measure Twice... upload once. So. I was interested in getting a new economical car and stopped by the Toyota website to give

Re: [flexcoders] Measure Twice... upload once.

2008-03-12 Thread Paul Andrews
onal On Wed, Mar 12, 2008 at 8:12 AM, Paul Andrews <[EMAIL PROTECTED]> wrote: Seems fine now. - Original Message - From: Rick Winscot To: flexcoders@yahoogroups.com Sent: Wednesday, March 12, 2008 7:09 AM Subject: [flexcoders] Measure

Re: [flexcoders] best flex books

2008-03-12 Thread Paul Andrews
Do you mean to run them? Just open the file and run the application, or change the default application and then run. Paul - Original Message - From: [p e r c e p t i c o n] To: flexcoders@yahoogroups.com Sent: Wednesday, March 12, 2008 4:55 PM Subject: Re: [flexcoders] best

Re: [flexcoders] How to Create a File?

2008-03-21 Thread Paul Andrews
- Original Message - From: "moonrchand" <[EMAIL PROTECTED]> To: Sent: Friday, March 21, 2008 2:05 PM Subject: [flexcoders] How to Create a File? > Hi, > Please let me how can we create a file in another system or on some > web server through Flex/AIR. You ned to use whatever server si

Re: [flexcoders] Re: Average salary of a Flex Developer in the Silicon Valley

2008-03-23 Thread Paul Andrews
Is that $4,500 per day, per week, per month or per year? - Original Message - From: "heat_samurai" <[EMAIL PROTECTED]> To: Sent: Sunday, March 23, 2008 9:43 AM Subject: [flexcoders] Re: Average salary of a Flex Developer in the Silicon Valley > Its going to be a permenant job > > > --

Re: [flexcoders] Can a Listener return a value

2008-03-25 Thread Paul Andrews
- Original Message - From: Alex Harui To: flexcoders@yahoogroups.com Sent: Tuesday, March 25, 2008 6:49 PM Subject: RE: [flexcoders] Can a Listener return a value That works, but is considered a "hack" in the strictest sense. The W3C Events spec indicates that event propert

Re: [flexcoders] Re: Can a Listener return a value

2008-03-25 Thread Paul Andrews
- Original Message - From: Mike Krotscheck To: flexcoders@yahoogroups.com Sent: Tuesday, March 25, 2008 8:24 PM Subject: RE: [flexcoders] Re: Can a Listener return a value That's probably because it's pseudocode, rather than real code. Every event listener is passed a

Re: [flexcoders] Re: How do I print in Flex?

2008-03-26 Thread Paul Andrews
- Original Message - From: "coolz22in" <[EMAIL PROTECTED]> To: Sent: Wednesday, March 26, 2008 6:42 AM Subject: [flexcoders] Re: How do I print in Flex? > Hi, > > I want to print only the data and not the UI. > But the FlexPrintJob.addObject() method takes only the UIComponent to > prin

Re: [flexcoders] Re: Flex Builder 3 debug builds broken, breakpoints all wrong

2008-03-29 Thread Paul Andrews
> On Fri, Mar 28, 2008 at 9:19 AM, Troy Gilbert <[EMAIL PROTECTED]> > wrote: >> >> I just encountered the issue again, and went through the process of >> deleting all the build stuff manually, caches, etc., and nothing >> helped. So this time I tried flushing the browser cache (actually, >> dis

Re: [flexcoders] UK rapid adressing web api

2008-03-30 Thread Paul Andrews
- Original Message - From: "Fidel Viegas" <[EMAIL PROTECTED]> To: Sent: Sunday, March 30, 2008 11:09 PM Subject: Re: [flexcoders] UK rapid adressing web api > On Sun, Mar 30, 2008 at 2:12 PM, Glenn Williams <[EMAIL PROTECTED]> > wrote: > >> Hi >> >> anyone know if there is a rapid add

Re: [flexcoders] UK rapid addressing web api

2008-03-31 Thread Paul Andrews
Excellent - thanks for the heads-up on this. Paul - Original Message - From: "Glenn Williams" <[EMAIL PROTECTED]> To: Sent: Monday, March 31, 2008 4:11 PM Subject: RE: [flexcoders] UK rapid addressing web api > I've found a great service. > > Works a treat and staff really helpful, Cos

Re: [flexcoders] Announcement: Join us in a Flex-Related Focus Group

2008-03-31 Thread Paul Andrews
One thing really does surprise me about this. Do you really have to pay someone $50 to get an opinion? I suspect most Flex developers would participate regardless. Paul - Original Message - From: Jeffry Houser To: flexcoders@yahoogroups.com Sent: Monday, March 31, 2008 6:17 PM

Re: [flexcoders] How to change the mouse scroll range of datagrid component?

2008-04-01 Thread Paul Andrews
- Original Message - From: "bigbb_kimo" <[EMAIL PROTECTED]> To: Sent: Tuesday, April 01, 2008 2:00 PM Subject: [flexcoders] How to change the mouse scroll range of datagrid component? > Hi dear all > > I have a datagrid with information from web service. Each row of the > datagrid fulf

Re: [flexcoders] Delay recursive function

2008-05-13 Thread Paul Andrews
If you move sort(a, l, i-1); sort(a, i+1, r); into the event handler, you should have what you want. Paul - Original Message - From: "Nicholas" <[EMAIL PROTECTED]> To: Sent: Tuesday, May 13, 2008 6:07 AM Subject: [flexcoders] Delay recursive function > I've looked for other t

Re: [flexcoders] a bit of information about Iframes

2008-05-14 Thread Paul Andrews
Gustavo, It often helps to make a small example to demonstrate the problem, then post the SMALL amount of code here. Paul - Original Message - From: Gustavo Duenas To: flexcoders@yahoogroups.com Sent: Wednesday, May 14, 2008 6:12 PM Subject: Re: [flexcoders] a bit of informa

Re: [flexcoders] a bit of information about Iframes

2008-05-14 Thread Paul Andrews
On May 14, 2008, at 1:15 PM, Paul Andrews wrote: Gustavo, � It often helps to make a small example to demonstrate the problem, then post the SMALL amount of code here. � Paul - Original Message - From:�Gustavo Duenas To:[EMAIL PROTECTED]

Re: [flexcoders] "Cannot install featurecom.adobe.flexbuilder.feature.standalone 3.0.194161"

2008-05-16 Thread Paul Andrews
SOE? Perhaps you could get your admin to come over, give you full admin rights, install FB3, then reduce your rights again? or is that E a B? ;-) Paul - Original Message - From: "barry.beattie" <[EMAIL PROTECTED]> To: Sent: Friday, May 16, 2008 5:59 AM Subject: [flexcoders] "Cannot i

Re: [flexcoders] logic code in another file

2008-05-16 Thread Paul Andrews
You need to use classes and put your logic there, just leave the use of the script tags to control the UI and communicate with the logic. I think it's time for you to introduce yourself to the concepts of Object-oriented design and class-based development. It'll be worth it, but the foothils ar

Re: [flexcoders] TabNavigator children

2008-05-17 Thread Paul Andrews
Why would you have a TabNavigator - something that supports the tabbed interface paradigm, showing only one tab at a time, then go ahead and try and make it behave like something else? Why don't you have a TabBar, then manage the displayed pages (containers) yourself? You can then dispose of th

Re: [flexcoders] custom event not added

2008-05-23 Thread Paul Andrews
addEventListener() does not return a value.. - Original Message - From: "dnk" <[EMAIL PROTECTED]> To: Sent: Friday, May 23, 2008 12:47 PM Subject: [flexcoders] custom event not added > Hi there, > > I have a controller that is adding my custom event listeners, but for > some reason my

Re: [flexcoders] Hi Guys Please help me

2008-05-28 Thread Paul Andrews
Rajendra, google is your friend, as is the Adobe website.. http://www.adobe.com/devnet/flex/flex_java.html Paul - Original Message - From: Rajendra Tammana To: flexcoders@yahoogroups.com Sent: Wednesday, May 28, 2008 10:47 AM Subject: [flexcoders] Hi Guys Please help me H

Re: [flexcoders] Re: The "High Score" Problem

2008-05-28 Thread Paul Andrews
Something that might help would be to ask high score candidates to type in the letters depicted on a garbled image - so at least then you know that the bot has to recognise characters. Paul - Original Message - From: Michel Scoz To: flexcoders@yahoogroups.com Sent: Wednesday,

Re: [flexcoders] the old caching problem... many answers no solution!!!

2008-05-29 Thread Paul Andrews
The browser caches files on the basis of their file signature. So if you ask for mySWF.swf repeatedly the file can be cached. There is a mechanism for passing parameters with requests to load files by adding information after the filename. If this is done and the appended information changes, th

Re: [flexcoders] News Item: Comparing the performance of Curl and Flex 3

2008-05-29 Thread Paul Andrews
Performance is only a very small part of what makes a development system successful and this focusses on a very small area. I'm not likely to uninstall Fex anytime soon.. Paul - Original Message - From: "Alan Gruskoff" <[EMAIL PROTECTED]> To: Sent: Thursday, May 29, 2008 2:34 PM Subje

Re: [flexcoders] REPORTING in FLEX 3

2008-05-29 Thread Paul Andrews
- Original Message - From: "gf_baggio" <[EMAIL PROTECTED]> To: Sent: Thursday, May 29, 2008 4:49 PM Subject: [flexcoders] REPORTING in FLEX 3 >I am very new in flex and I am trying to figure out how to print nice > reports. Oh dear.. > I am using crystal report right now in visual ba

Re: [flexcoders] REPORTING in FLEX 3

2008-05-29 Thread Paul Andrews
ClearBI Developer Edition - $799 per developer. Ouch! - Original Message - From: Vadim Melnik To: flexcoders@yahoogroups.com Sent: Thursday, May 29, 2008 5:14 PM Subject: Re: [flexcoders] REPORTING in FLEX 3 May be ClearBI will be interesting as well: http://tech.groups.

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-05-30 Thread Paul Andrews
Just for a moment I thought this was the flex coders forum rather than an extension of the MS marketing effort.. - Original Message - From: Scott Barnes To: flexcoders@yahoogroups.com Sent: Friday, May 30, 2008 4:29 AM Subject: Re: [flexcoders] The different between generial F

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-05-30 Thread Paul Andrews
I'm always nice and MS marketing never sleeps. It's good to see that even Microsoft management are coding in Flex these days.. ;-) Have a good weekend. Paul - Original Message - From: "Troy Gilbert" <[EMAIL PROTECTED]> To: Sent: Friday, May 30, 2008 4:36 PM Subject: Re: [flexcoders

Re: [flexcoders] How to convert a powerpoint to AS3 swf for loading in Flex?

2008-05-30 Thread Paul Andrews
- Original Message - From: "rdebled" <[EMAIL PROTECTED]> To: Sent: Friday, May 30, 2008 9:55 PM Subject: [flexcoders] How to convert a powerpoint to AS3 swf for loading in Flex? >I need to load a powerpoint file inside my Flex app. I planned to > just convert the ppt to a swf and load

Re: [flexcoders] How to convert a powerpoint to AS3 swf for loading in Flex?

2008-05-31 Thread Paul Andrews
m/products/flashpaper/ -- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Andrews Sent: Friday, May 30, 2008 2:27 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-05-31 Thread Paul Andrews
e record straght around some misconceptions around our products, do what you will with that. On Fri, May 30, 2008 at 9:11 AM, Paul Andrews <[EMAIL PROTECTED]> wrote: I'm always nice and MS marketing never sleeps. It's good to see that even Microsoft management are coding

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-05-31 Thread Paul Andrews
o lambast their writings and viewpoints? Damn, that's down right silly... From: Paul Andrews Sent: Saturday, May 31, 2008 7:06 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional? Microsoft could always avoi

Re: [flexcoders] How to convert a powerpoint to AS3 swf for loading in Flex?

2008-05-31 Thread Paul Andrews
? Launch the PowerPoint then have it record it. I really don't know but just a suggestion. - Original Message From: Paul Andrews <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, May 31, 2008 3:39:54 AM Subject: Re: [flexcoders] How to convert a po

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-05-31 Thread Paul Andrews
lot of work with Ruby lately. Are you saying it's wrong for him to talk to me about Ruby? I'm not grokking the basis of your argument. Paul Andrews wrote: I guess I'm the agressive one. I've seen other products where former practictioners of product A have mo

Re: [flexcoders] How to convert a powerpoint to AS3 swf for loading in Flex?

2008-05-31 Thread Paul Andrews
EMAIL PROTECTED] On Behalf Of Paul Andrews Sent: Saturday, May 31, 2008 1:40 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How to convert a powerpoint to AS3 swf for loading in Flex? Not if you want a swf that can be controlled from AS3. From the FAQ: What versi

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-05-31 Thread Paul Andrews
oops too much red wine. I was going to say "I wouldn't have been been bothered if it had been anyone but a senior MS guy". Don't worry about resurrecting this argument, I'm crawling back under my stone on this one. Paul - Original Message ----- From: Paul

Re: [flexcoders] yoyo Tween Function in Flex?

2008-06-01 Thread Paul Andrews
mx.effects.tween. In the function called at the end of the tween, use reverse(). Paul - Original Message - From: Sherif Abdou To: flexcoders@yahoogroups.com Sent: Sunday, June 01, 2008 2:38 AM Subject: [flexcoders] yoyo Tween Function in Flex? Is there a similiar functi

Re: [flexcoders] Re: What next after getting FLEX ?

2008-06-01 Thread Paul Andrews
I don't think anyone said you have to learn linux. Use Windows. If you're comfortable with IIS use that. Try and follow some basic tutorials - they often include installation instructions - and get small things working. Don't try and do everything at once. It's the road to disaster. Tackle the

Re: [flexcoders] yoyo Tween Function in Flex?

2008-06-01 Thread Paul Andrews
reat (easeInElastic == walk the dog). Rick Winscot From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Andrews Sent: Sunday, June 01, 2008 9:07 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] yoyo Tween Function in Flex? mx.effects.tw

Re: [flexcoders] Re: How to convert a powerpoint to AS3 swf for loading in Flex?

2008-06-01 Thread Paul Andrews
'm not sure exactly which forum you're referring to. Can you > provide a link or details of where I should look? > > Thanks. > > --- In flexcoders@yahoogroups.com, "Paul Andrews" <[EMAIL PROTECTED]> wrote: >>

Re: [flexcoders] Multiple filtered views on one source ArrayCollection

2008-06-01 Thread Paul Andrews
Check out ListCollectionView. I've been down that same road. (Feb Thread: any ArrayCollection tricks?) >From the thread: "I found a great example here, which is perfect: >http://viconflex.blogspot.com/2006/11/listcollectionview-different.html " Paul - Original Message - From: Josh

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-06-01 Thread Paul Andrews
re about your approach by seeing how others complete theirs. All the best and have another glass of wine! :) (if it's good, keep the flow going!). Scott Barnes Product Manager Microsoft. On Sat, May 31, 2008 at 4:27 PM, Paul Andrews <[EMAIL PROTECTED]> wrote: oops too

Re: [flexcoders] Re: How to convert a powerpoint to AS3 swf for loading in Flex?

2008-06-02 Thread Paul Andrews
- Original Message - From: "rdebled" <[EMAIL PROTECTED]> To: Sent: Sunday, June 01, 2008 11:16 PM Subject: [flexcoders] Re: How to convert a powerpoint to AS3 swf for loading in Flex? snip > Finally, and most successfully, I started playing with print2flash > which can convert a ppt

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-06-02 Thread Paul Andrews
denly cause a mass exodus from Flex? People's technology adoption behaviour is a lot more complex than a product fact placement in a random list?. Protect your community yes, but don't blind them as their ability to see will be that much more diminished. Scott. Product Manager Micro

Re: [flexcoders] Re: How to convert a powerpoint to AS3 swf for loading in Flex?

2008-06-02 Thread Paul Andrews
- Original Message - From: "Paul Andrews" <[EMAIL PROTECTED]> To: Sent: Monday, June 02, 2008 1:34 PM Subject: Re: [flexcoders] Re: How to convert a powerpoint to AS3 swf for loading in Flex? > - Original Message - > From: "rdebled" <[EMAI

Re: [flexcoders] Re: How to convert a powerpoint to AS3 swf for loading in Flex?

2008-06-02 Thread Paul Andrews
- Original Message - From: "Amy" <[EMAIL PROTECTED]> To: Sent: Monday, June 02, 2008 5:19 PM Subject: [flexcoders] Re: How to convert a powerpoint to AS3 swf for loading in Flex? snip > Connect (Breeze) does a pretty good translation of Powerpoint to > Flash, but doesn't handle it wel

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-06-03 Thread Paul Andrews
Troy, it's never been about stifling Flex users from knowing about or integrating silverlight. I've got the message I'm drumming to a different beat.. Paul - Original Message - From: "Troy Gilbert" <[EMAIL PROTECTED]> To: Sent: Tuesday, June 03, 2008 9:29 AM Subject: Re: [flexcoders] T

Re: [flexcoders] How should we access our Flex apps from the browser?

2008-06-06 Thread Paul Andrews
The swf file is what is run by the flash player plugin, it's not usual to run this directly in the browser. The mxm file is the source used within your application - it won't be usefull to look at this in a browser. The html file checks the users environment for the flash player and calls your .

Re: [flexcoders] Re: How should we access our Flex apps from the browser?

2008-06-06 Thread Paul Andrews
n I access the .mxml file through my browser, it doesn't serve up > the source. Instead, it serves up a functioning Flex application. > > Per your advice however, I'll focus on accessing the application via > it's "HTML wrapper". > > --Dan > > --- In fle

Re: [flexcoders] Re: How should we access our Flex apps from the browser?

2008-06-06 Thread Paul Andrews
ld we access our Flex apps from the browser? > Nope, Flex 3. > > --- In flexcoders@yahoogroups.com, "Paul Andrews" <[EMAIL PROTECTED]> wrote: >> >> It's not Flex 1.5 is it? >> >> Paul >> - Original Message - >> Fr

Re: [flexcoders] Blocking Dialog In Felx

2008-06-11 Thread Paul Andrews
The problem is not really in handling blocking dialogs, but the way that you are approaching the problem. If you have ten records to delete and MUST have confirmation for each one, delete them one by one and ask for each one, but don't try to delete a record until the previous one has been conf

Re: [flexcoders] Re: OOP and Work for Hire

2008-06-11 Thread Paul Andrews
I think the real problem is that many people build up class libraries over time that get incorporated into various projects. The sticky question is where does work-for-hire leave that code (particularly if most of the library code used for a particular project was created beforehand). It may be

Re: [flexcoders] Moderator

2007-09-05 Thread Paul Andrews
>From the yahoo group page: [EMAIL PROTECTED] should get to the right person. Paul - Original Message - From: Paul Tunnicliffe {mdm} To: flexcoders@yahoogroups.com Sent: Wednesday, September 05, 2007 2:28 PM Subject: [flexcoders] Moderator Hi, Does anyone know wh

Re: [flexcoders] Re: Flex and SQL

2007-09-07 Thread Paul Andrews
- Original Message - From: "Tom Chiverton" <[EMAIL PROTECTED]> To: Sent: Friday, September 07, 2007 4:48 PM Subject: [flexcoders] Re: Flex and SQL > On Friday 07 Sep 2007, [EMAIL PROTECTED] wrote: >> Don't know where you heard that. Flex runs inside the Flash Player, >> which has no ab

Re: [flexcoders] What do this error mean? 1195

2007-09-07 Thread Paul Andrews
Try rdo.group = rdoGroup; Your syntax is a method call. Paul - Original Message - From: Troy Simpson To: flexcoders@yahoogroups.com Sent: Friday, September 07, 2007 7:09 PM Subject: [flexcoders] What do this error mean? 1195 I am attempting to use ActionScript to create

Re: [flexcoders] Global variable - Best Practice

2007-09-08 Thread Paul Andrews
You could use a static Class/Singleton to give you a single variable accessible from anywhere. Paul - Original Message - From: "Ben Marchbanks" <[EMAIL PROTECTED]> To: Sent: Saturday, September 08, 2007 11:01 PM Subject: [flexcoders] Global variable - Best Practice >I have an applicat

Re: [flexcoders] caching in Flex

2007-09-17 Thread Paul Andrews
- Original Message - From: "seemaherein" <[EMAIL PROTECTED]> To: Sent: Friday, September 14, 2007 10:33 AM Subject: [flexcoders] caching in Flex > hi, > I have a flex application which is making http service calls to java > code. Which is executing queries on oracle database and fetchin

Re: [flexcoders] web cam live feed

2007-09-17 Thread Paul Andrews
The subject line alone almost made me delete the post without opening it.. - Original Message - From: "flashcrow2000" <[EMAIL PROTECTED]> To: Sent: Monday, September 17, 2007 8:49 AM Subject: [flexcoders] web cam live feed > Hello all, > > I know this is quite large, but can someone pl

Re: [flexcoders] Re: web cam live feed

2007-09-17 Thread Paul Andrews
TED]> To: Sent: Monday, September 17, 2007 11:59 AM Subject: [flexcoders] Re: web cam live feed > can i ask why? > > --- In flexcoders@yahoogroups.com, "Paul Andrews" <[EMAIL PROTECTED]> wrote: >> >> The subject line alone almost made me delete the post wit

Re: [flexcoders] Re: caching in Flex

2007-09-18 Thread Paul Andrews
Remember to have a way to turn the cache on and off - then you can measure how effective it is. Naturally, it takes time to fill a cache with enough results before it becomes effective. A server side cache is effectively saving you the time involved in a database query (for all clients), but n

Re: [flexcoders] Use two DataBase tables values in a Datagrid

2007-09-19 Thread Paul Andrews
- Original Message - From: "jack4sol" <[EMAIL PROTECTED]> To: Sent: Wednesday, September 19, 2007 10:18 AM Subject: [flexcoders] Use two DataBase tables values in a Datagrid > The issue is I need to populate values from 2 tables, one needs to be > a list of names(from 1 table) and the o

Re: [flexcoders] Could people watch their subject lines ?

2007-09-19 Thread Paul Andrews
It's just you.. ;-) - Original Message - From: "Paul Steven" <[EMAIL PROTECTED]> To: Sent: Wednesday, September 19, 2007 3:40 PM Subject: RE: [flexcoders] Could people watch their subject lines ? > Sorry - I think I am a culprit! > > Is it just me or does the flexcoders emails always h

Re: [flexcoders] Re: caching in Flex

2007-09-19 Thread Paul Andrews
r 19, 2007 2:25 PM Subject: [flexcoders] Re: caching in Flex > sure, i'll let you know. > I am a starter with all this. and really thankful to you for your > valuable suggestions > > --- In flexcoders@yahoogroups.com, "Paul Andrews" <[EMAIL PROTECTED]> wrote: > >

Re: [flexcoders] Flash and ColdFusion Time Differences

2007-09-20 Thread Paul Andrews
- Original Message - From: "Ben" <[EMAIL PROTECTED]> To: Sent: Thursday, September 20, 2007 4:15 AM Subject: [flexcoders] Flash and ColdFusion Time Differences > In Flash, the hour portion of a time value is stored in the range 0 to > 23. An example of a time I have stored in my MySQL

Re: [flexcoders] need advice - html to mxml

2007-09-20 Thread Paul Andrews
- Original Message - From: "seemaherein" <[EMAIL PROTECTED]> To: Sent: Thursday, September 20, 2007 11:52 AM Subject: [flexcoders] need advice - html to mxml > Hi, > > the developer working previously on my application has coded an > index.html which has various url's. each url takes to

Re: [flexcoders] Anyone have any good Flex Projects with sourceCode?

2007-09-20 Thread Paul Andrews
It seems to me that if you 'did' total training and lynda.com, then you shouldn't be practicing, you should be doing.. Paul - Original Message - From: Sheriff To: flexcoders@yahoogroups.com Sent: Thursday, September 20, 2007 10:07 PM Subject: [flexcoders] Anyone have any good

Re: [flexcoders] Re: Parsing a flat file in flex?

2007-09-20 Thread Paul Andrews
My guess is that the OP will have the records inside a single string and so will need to iterate through the string picking out the individual fields from the spaces between them. Paul - Original Message - From: Giles Roadnight To: flexcoders@yahoogroups.com Sent: Thursday, Se

Re: [flexcoders] Anyone have any good Flex Projects with sourceCode?

2007-09-20 Thread Paul Andrews
s still alot more to learn - Original Message From: Paul Andrews <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, September 20, 2007 4:15:26 PM Subject: Re: [flexcoders] Anyone have any good Flex Projects with sourceCode? It seems to me that if yo

Re: [flexcoders] Eeeeek! Development grinds to a halt due to stupid syntax problem

2007-09-22 Thread Paul Andrews
Why do you have to use the database field names inside the flex application? - Original Message - From: "candysmate" <[EMAIL PROTECTED]> To: Sent: Saturday, September 22, 2007 3:58 PM Subject: [flexcoders] Ek! Development grinds to a halt due to stupid syntax problem > My client's

Re: [flexcoders] Re: Eeeeek! Development grinds to a halt due to stupid syntax problem

2007-09-22 Thread Paul Andrews
- Original Message - From: "candysmate" <[EMAIL PROTECTED]> To: Sent: Saturday, September 22, 2007 6:12 PM Subject: [flexcoders] Re: Ek! Development grinds to a halt due to stupid syntax problem > --- In flexcoders@yahoogroups.com, "Paul Andrews&qu

<    1   2   3   4   5   6   7   8   9   >