RE: [Flashcoders] upgrading to AIR 2 on CS3

2010-09-14 Thread David Hunter
Thanks for the link. I also found this: http://www.adobe.com/support/documentation/en/air/2/releasenotes_developers.html which doesn't suggest you can update from CS3 only CS4. I have followed the steps for CS4 and it still doesn't compile the new classes. Date: Mon, 13 Sep 2010 22:28:58

Re: [Flashcoders] PureMVC or RobotLegs ?

2010-09-14 Thread Joel Stransky
I've done my last three projects in robotlegs. All were different sized projects and I found myself dong no more or less work on any of them. I'd have to say it's just more nimble than PureMVC. It's easy to grow your app as scopes tend to creep. On Mon, Sep 13, 2010 at 4:31 PM, Karim Beyrouti

Re: [Flashcoders] PureMVC or RobotLegs ?

2010-09-14 Thread allandt bik-elliott (thefieldcomic.com)
we've just moved from custom mvc frameworks to pureMVC but if it was left up to me it would be RobotLegs a On 13 September 2010 21:19, Karim Beyrouti ka...@kurst.co.uk wrote: Ah - yes, the cool icon must learn robotlegs... once you know an MVC framework - in theory i guess it more or

[Flashcoders] Equirectangular World Map

2010-09-14 Thread Lehr, Theodore
After searching and searching I am just seeing if someone here might be able to point me to where I might be able to find an equirectangular map of the world in vector format (free of course :-) ___ Flashcoders mailing list

RE: [Flashcoders] Equirectangular World Map

2010-09-14 Thread Merrill, Jason
After searching and searching I am just seeing if someone here might be able to point me to where I might be able to find an equirectangular map of the world in vector format (free of course :-) I Googled equirectangular free vector world map and got this:

Re: [Flashcoders] Equirectangular World Map

2010-09-14 Thread Kevin Bath
Not free - but very good and best one I could find. Try mapsinminutes.com Sent from my iPhone On 14 Sep 2010, at 14:26, Lehr, Theodore ted_l...@federal.dell.com wrote: After searching and searching I am just seeing if someone here might be able to point me to where I might be able to find an

[Flashcoders] locating point on object

2010-09-14 Thread Lehr, Theodore
Is there a way to tell where you click on an object - for example if you have a square that is 100x100 and you clicked in the middle you could get x:50, y:50 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] locating point on object

2010-09-14 Thread Gregory Boland
I believe this will help you http://help.adobe.com/en_US/AS3LCR/Flash_10.0/index.html On Tue, Sep 14, 2010 at 11:19 AM, Lehr, Theodore ted_l...@federal.dell.comwrote: Is there a way to tell where you click on an object - for example if you have a square that is 100x100 and you clicked in

RE: [Flashcoders] locating point on object

2010-09-14 Thread Merrill, Jason
Ted, Something I've noticed about your posts for some time, and I have refrained from saying something until now. You ask a lot of questions, and you get a lot of help, but you rarely if ever say thank you. Many times I have answered your questions, helped you out, without a simple that works

Re: [Flashcoders] locating point on object

2010-09-14 Thread Henrik Andersson
DisplayObject.mouseX ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Custom cellRenderer for a List with XML data

2010-09-14 Thread Alexander Farber
Hello, I can't figure out, how to feed data to a List cellRenderer if it is in XML format. What argument will set data() receive? In the trace output I only see, that it is an object. I have prepared a simple test case demonstrating my problem (and posted a copy and screenshot at

RE: [Flashcoders] locating point on object

2010-09-14 Thread Lehr, Theodore
thanks... From: flashcoders-boun...@chattyfig.figleaf.com [flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Henrik Andersson [he...@henke37.cjb.net] Sent: Tuesday, September 14, 2010 11:34 AM To: Flash Coders List Subject: Re: [Flashcoders]

RE: [Flashcoders] Zooming

2010-09-14 Thread Jack Doyle
If you're a Club GreenSock member, the transformAroundPoint can make this pretty simple to integrate into a tween. For example: var center:Point = new Point(275, 200); TweenLite.to(mc, 1, {transformAroundPoint:{point:center, scaleX:3, scaleY:3}}); That would scale mc's scaleX/scaleY to 3 and use

RE: [Flashcoders] Zooming

2010-09-14 Thread Lehr, Theodore
good stuff - thanks! From: flashcoders-boun...@chattyfig.figleaf.com [flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Jack Doyle [j...@greensock.com] Sent: Tuesday, September 14, 2010 12:14 PM To: 'Flash Coders List' Subject: RE: [Flashcoders]

Re: [Flashcoders] locating point on object

2010-09-14 Thread Henrik Andersson
I think you are expecting too much, it's a mailing-list. Discussion boards and similar systems doesn't invite to saying thanks. I am not against it, but personally, I find saying thank you to be a bit like noise. It's not very important, but it's nice I suppose. Then again, I don't want to

RE: [Flashcoders] locating point on object

2010-09-14 Thread Merrill, Jason
I think one of the main benefits of saying thank you is it tells the rest of the list, problem solved, no need to comment further. So people don't keep replying, they know the solutions given worked and problem solved. Jason Merrill Instructional Technology Architect Bank of America Global

Re: [Flashcoders] locating point on object

2010-09-14 Thread Henrik Andersson
Merrill, Jason skriver: I think one of the main benefits of saying thank you is it tells the rest of the list, problem solved, no need to comment further. So people don't keep replying, they know the solutions given worked and problem solved. Because that has worked so well in the past... We

RE: [Flashcoders] locating point on object

2010-09-14 Thread Merrill, Jason
Well then Henrik, with all that you've said, I'll put you down as one vote against the necessity of being polite. Jason Merrill Instructional Technology Architect Bank of America Global Learning Join the Bank of America Flash Platform Community and visit our Instructional Technology

[Flashcoders] Embedding Fonts, it should be easy...., right!

2010-09-14 Thread Jiri
Hello, i am really getting headache from Embedded font stuff in as3 and would like some help. I embedded the fonts by using the Embed tag: code [Embed( source='../../../../../fonts/myriad pro/MyriadPro-Bold.otf', fontName='MyriadProFont', unicodeRange='U+0010-U+00FC',

Re: [Flashcoders] Custom cellRenderer for a List with XML data

2010-09-14 Thread Kerry Thompson
Alexander Farber wrote: I can't figure out, how to feed data to a List cellRenderer if it is in XML format. What argument will set data() receive? In the trace output I only see, that it is an object. Set a break point and look at it in the debugger. You can expand the xml tree there and see

RE: [Flashcoders] Embedding Fonts, it should be easy...., right!

2010-09-14 Thread Keith Reinfeld
The fontNames for each embedded font need to be distinct from one another. Use Font.registerFont(Class); to make the embedded fonts available to loaded swfs. Use the fontName when assigning format.font; code [Embed( source='../../../../../fonts/myriad pro/MyriadPro-Bold.otf',

Re: [Flashcoders] upgrading to AIR 2 on CS3

2010-09-14 Thread Beatrix Krümmer-Frau
You may have to use the command line tool for publishing! Overview: http://help.adobe.com/en_US/air/build/WS5b3ccc516d4fbf351e63e3d118666ade46-7fd9.html Packaging Air with ADT: http://help.adobe.com/en_US/air/build/WS5b3ccc516d4fbf351e63e3d118666ade46-7fd6.html If you are using Adobe Flash