Re: [flexcoders] Embedded font rendering problem

2011-11-30 Thread Paul Evans
On 26 Oct 2010, at 23:18, brandyvsmonica wrote: Down in the mxml, I've got some labels: s:Label text=0123456789 Helvetica Neue Medium fontFamily=myHelv / s:Label text=0123456789 Helvetica Neue Bold fontFamily=myHelv fontWeight=bold / When I crank the font size up to something obscenely

Re: [flexcoders] Embedded font rendering problem

2011-11-30 Thread Paul Evans
On 30 Nov 2011, at 19:20, brandyvsmonica wrote: Unfortunately, my solution was to port this section of our app to HTML. Thanks for the reply - sorry you had to abandon. After trying everything I could think of with the font I was using, I tried using Helvetica Neue Medium and Bold like you,

[flexcoders] Re: [Flashcoders] as3 class libraries

2008-07-16 Thread Paul Evans
in conjunction with Grant Skinners article could be a real time saver! http://www.gskinner.com/blog/archives/2008/07/source_code_lic_1.html -- Paul Evans http://www.creative-cognition.co.uk/ http://blog.creacog.co.uk/

Re: [flexcoders] Re: Can no longer quit my AIR app

2008-07-05 Thread Paul Evans
=1373568#5004519 Do let us know if the fix suggester there be Raul HUDEA helps rgds -- Paul Evans http://www.creative-cognition.co.uk/ http://blog.creacog.co.uk/

Re: [flexcoders] Browser Container

2008-06-29 Thread Paul Evans
. AIR contains a browser. I doubt you will get any clearer answer without providing more detail of the problem you are trying to solve paul -- Paul Evans http://www.creative-cognition.co.uk/ http://blog.creacog.co.uk/

Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-20 Thread Paul Evans
I have to admit to not reading all the 132 messages so far written on this thread, but my 2p... On 20 Jun 2008, at 10:15, Tom Chiverton wrote: On Thursday 19 Jun 2008, Joseph Balderson wrote: Again this is a mail client problem, not a list problem IMO. Exactly. I've had the exact same

Re: [flexcoders] Re: Max OS X Flex Builder 2.01 License Issue - still waiting

2007-02-03 Thread Paul Evans
On 1 Feb 2007, at 18:38, Brendan Meutzner wrote: when is a $499 FlexBuilder license expensive when you have to pay the UK price: (Including Ireland VAT @21%) : £381.15 = US$749.35 at current exchange. It's too bad that the fantastic relationship we have with the Adobe engineers can't

Re: [flexcoders] fyi : Open Source ActionScript 3 Libraries Moved to Google Code

2007-01-09 Thread Paul Evans
On 9 Jan 2007, at 08:59, Carlos Rovira wrote: or I download the zip from a bad place Then I had a problem with some classes that was not usable (for example the JPGEncoder does not compile). Sounds like my comment on Christrian Cantrell's How To Get Code From Adobe Labs still applies ?

Re: [flexcoders] New signature of IFlexModuleFactory.create() in 2.0.1 ?

2007-01-07 Thread Paul Evans
On 6 Jan 2007, at 04:17, John Kirby wrote: I have a compile error in 2.0.1 Mac but not in Mac Beta : 1144: Interface method create in namespace mx.core:IFlexModuleFactory is implemented with an incompatible signature in class _weathercharts_mx_managers_SystemManager. Has the API been

Re: [flexcoders] Re: flex 2.0.1 feedback from the trenches

2007-01-07 Thread Paul Evans
On 5 Jan 2007, at 21:05, fuad_kamal wrote: -installed without uninstalling the beta, still worked fine, and my flex projects were preserved although in the known issues it said they wouldn't I suspect it is the workspace that is incompatible rather than the project files? On 5 Jan 2007, at

Re: [flexcoders] Full Screen Projector File for Flex 2 Swf

2007-01-05 Thread Paul Evans
On 4 Jan 2007, at 15:38, Luis Casillas wrote: I developed an app in Flex 2 and need a way to turn the created swf into an exe that automatically goes into full screen without any user interaction. Please help. If you can't wait for Apollo, you could use Zinc ( http://

Re: [flexcoders] Background Image - Keep Proportions? - repeat on background

2006-11-24 Thread Paul Evans
On 6 Sep 2006, at 15:08, Rogerio Gonzalez wrote: I have a question about background images, too. How can use repeat on the background? I mean, I have a 10x10 pixels texture and want to replicate for the entire background. How I do that? Rogerio I posted a 'quick-and-dirty' method here:

[flexcoders] MouseEvent.DOUBLE_CLICK am I missing something

2006-11-02 Thread Paul Evans
In my first week of ActionScript 3 development. Working on Mac OS X with Flex 2 Builder Beta and Flash 9 Alpha Preview, Player: 9,0,18,60. Just tried listening for MouseEvent.DOUBLE_CLICK on a MovieClip using Flash 9 preview and found that the event never seems to fire. I also compiled

Re: [flexcoders] MouseEvent.DOUBLE_CLICK am I missing something - solved

2006-11-02 Thread Paul Evans
Thanks to all responders. On 2 Nov 2006, at 18:03, Igor Costa wrote: myMC.doubleClickEnabled = true; Yep that did it. doubleClickEnabled being a property of InteractiveObject, from which MovieClip inherits. I guess it would have helped if this special case had been mentioned in the docs