Re: [Flashcoders] DataGrid not updating after DataProvider item changes

2009-10-27 Thread Mauro Martins
If i got it right he his using Flash not Flex, and so, there is no ArrayCollection to be [Bindable] unless you can mimic in some way the ArrayCollection Class on Flash. 2009/10/26 Dave Watts dwa...@figleaf.com And the dataprovider is also set to a [Bindable] property right? This is almost

[Flashcoders] CS4 IDE menu text size too small

2009-10-27 Thread dave matthews
hi All,   Checking out CS4 IDE.  The menu text size too small to read on a 1920x monitor - is there a way to make it bigger? thanks, Dave   _ New Windows 7: Find the right PC for you.

RE: [Flashcoders] CS4 IDE menu text size too small

2009-10-27 Thread liutoday
From: davidmatthews_...@hotmail.com To: flashcoders@chattyfig.figleaf.com Date: Tue, 27 Oct 2009 10:16:02 -0400 Subject: [Flashcoders] CS4 IDE menu text size too small hi All, Checking out CS4 IDE. The menu text size too small to read on a 1920x monitor - is there a way to

Re: [Flashcoders] CS4 IDE menu text size too small

2009-10-27 Thread Glen Pike
Hi, It might be an OS setting: In Windoze XP, you can increase the size of the font used by editing your display properties, right click your desktop, choose Properties, then Appearance tab. You may change the font sizes of Windows Menu's here. You might be able to change something else to affect

RE: [Flashcoders] CS4 IDE menu text size too small

2009-10-27 Thread Cor
That is only for the text in the Actionscript window (F9) not the menus -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of liutoday Sent: dinsdag 27 oktober 2009 15:43 To: flashcoders@chattyfig.figleaf.com

[Flashcoders] add properties to Event object

2009-10-27 Thread Andrew Sinning
Why can't I add any properties to an AS3 Event object? I get a 1056: cannot create property prop-name on Event Event extends Object, right? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] add properties to Event object

2009-10-27 Thread Glen Pike
Andrew Sinning wrote: Why can't I add any properties to an AS3 Event object? I get a 1056: cannot create property prop-name on Event Event extends Object, right? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] add properties to Event object

2009-10-27 Thread Merrill, Jason
You need to create a custom event by extending the Event class - then add whatever properties you want to that. Jason Merrill Bank of America Global Learning Learning Performance Soluions Monthly meetings on making the most of the Adobe Flash Platform - presented by bank associates,

Re: [Flashcoders] add properties to Event object

2009-10-27 Thread Eric E. Dolecki
Just to add - I do this all the time and it becomes fun after a while ;) On Tue, Oct 27, 2009 at 12:13 PM, Merrill, Jason jason.merr...@bankofamerica.com wrote: You need to create a custom event by extending the Event class - then add whatever properties you want to that. Jason Merrill

Re: [Flashcoders] CS4 IDE menu text size too small

2009-10-27 Thread John R. Sweeney Jr
Get glasses. I run 1920 and it looks fineŠ ;) Later, John on 10/27/09 9:16 AM, dave matthews at davidmatthews_...@hotmail.com wrote: hi All,   Checking out CS4 IDE.  The menu text size too small to read on a 1920x monitor - is there a way to make it bigger? thanks, Dave John R.

Re: [Flashcoders] add properties to Event object

2009-10-27 Thread Andrew Sinning
Okay. I just read the manual entry for dynamic and the explanation for how sealed classes improve performance. Very helpful and interesting. Glen Pike wrote: Andrew Sinning wrote: Why can't I add any properties to an AS3 Event object? I get a 1056: cannot create property prop-name on

Re: [Flashcoders] add properties to Event object

2009-10-27 Thread Dave Watts
Why can't I add any properties to an AS3 Event object?  I get a 1056: cannot create property prop-name on Event Event extends Object, right? Event is not a dynamic class. In AS3, you can only add properties to dynamic classes. So, as everyone else has mentioned, you have to extend Event to

Re: [Flashcoders] add properties to Event object

2009-10-27 Thread Geografiek
Hi Andew, Just a month ago Jason posted a very very usefull note on how to write custom events. See below: Here is how you write a custom event: package { import flash.events.Event; public class MyEvent extends Event { public static var SOUND_REQUESTED:String = sound_requested; public

RE: [Flashcoders] CS4 IDE menu text size too small

2009-10-27 Thread Cor
In Windows you can use the Magnifying glass. LOL -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of John R. Sweeney Jr Sent: dinsdag 27 oktober 2009 17:49 To: Flash Coders List Subject: Re: [Flashcoders] CS4

[Flashcoders] Website in an application

2009-10-27 Thread John R. Sweeney Jr
Howdy List, My client wants a touchscreen application. I've done several on 50 plasma screens before for them using a Flash projector on a PC, but the kink in this one is the client wants to be able to view the corporate website in the Flash app. They don't want a browser popping up over the app,

Re: [Flashcoders] Website in an application

2009-10-27 Thread Henrik Andersson
John R. Sweeney Jr wrote: Howdy List, My client wants a touchscreen application. I've done several on 50 plasma screens before for them using a Flash projector on a PC, but the kink in this one is the client wants to be able to view the corporate website in the Flash app. They don't want a

Re: [Flashcoders] Website in an application

2009-10-27 Thread Ian Thomas
Hi John, I'd take a look at AIR. It allows you to drop in real HTML components (using the WebKit engine, the same thing that Safari uses) controlled from a Flash application. HTH, Ian On Tue, Oct 27, 2009 at 7:27 PM, John R. Sweeney Jr jr.swee...@comcast.net wrote: Howdy List, My client

Re: [Flashcoders] Website in an application

2009-10-27 Thread Latcho
G'day, Well it's up to you to educate the client since you are an Interactive Multimedia Developer that knows ( I suppose ) that you can't render html sites within flash. If that corporate site is flash I don't see your problem, just use a swf projector. If it is html you will need a third

Re: [Flashcoders] Website in an application

2009-10-27 Thread John R. Sweeney Jr
Thanks, I'm looking into AIR right now. John on 10/27/09 3:29 PM, Ian Thomas at i...@eirias.net wrote: Hi John, I'd take a look at AIR. It allows you to drop in real HTML components (using the WebKit engine, the same thing that Safari uses) controlled from a Flash application. HTH,

Re: [Flashcoders] Website in an application

2009-10-27 Thread John R. Sweeney Jr
It already is a projector and as such, you can't put HTML websites inside. But thank you anyway. John on 10/27/09 2:50 PM, Henrik Andersson at he...@henke37.cjb.net wrote: Sounds like an excellent time to make a projector then. Make it go fullscreen and it should be just fine. John R.

Re: [Flashcoders] Website in an application

2009-10-27 Thread John R. Sweeney Jr
Thanks, I'll check it out. John on 10/27/09 4:03 PM, Latcho at spamtha...@gmail.com wrote: Google for kiosk browser never tested, just found: http://samanathon.com/firefox-2s-kiosk-mode/ Cheers, Latcho John R. Sweeney Jr. Interactive Multimedia Developer OnDemand Interactive Inc 945

Re: [Flashcoders] Website in an application

2009-10-27 Thread Eric E. Dolecki
Just use AIR and an HTML Browser component. Easy-peasy. On Tue, Oct 27, 2009 at 5:12 PM, John R. Sweeney Jr jr.swee...@comcast.netwrote: Thanks, I'll check it out. John on 10/27/09 4:03 PM, Latcho at spamtha...@gmail.com wrote: Google for kiosk browser never tested, just found:

Re: [Flashcoders] Website in an application

2009-10-27 Thread Latcho
I did not know that ! Looks good. Is it also possible to catch referer headers / link clicks and prevent them ? Ciao, Latcho Eric E. Dolecki wrote: Just use AIR and an HTML Browser component. Easy-peasy. On Tue, Oct 27, 2009 at 5:12 PM, John R. Sweeney Jr jr.swee...@comcast.netwrote:

[Flashcoders] mac projector

2009-10-27 Thread Latcho
Hello, Trying to publish a flash8 mac projector in CS4 turns out to be a tad changed. I published years ago in flash 8 on PC to a mac .HQX file and could put my additional loadable swf files next to it. Now in CS4 I'm forced to publish a mac .APP folder. So this stuff will be used on a hybrid

Re: [Flashcoders] mac projector

2009-10-27 Thread Glen Pike
Hi, I think it's relative to the project.app - the mac treats that as an executable - although this was on CS3 published cross-platform projector. I had my project.app and projector.exe in the root of the CD and loading a swf file with the main application in, which in turn loaded files