[flexcoders] Re: what "RIA-to-PDF conversion" means in LCDS?

2008-06-12 Thread Shannon
Be sure to click the "Generate PDF" button for a demo. http://www.bytearray.org/?p=101 -Shannon --- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Wednesday 11 Jun 2008, markflex2007 wrote: > > I want to make sure if it mean it can con

[flexcoders] Re: Transparent=true on BitmapData not working

2008-02-19 Thread Shannon
try 0x0100, im not sure what other way to tell flash you aren't trying to say 0x00 (which is also zero) --- In flexcoders@yahoogroups.com, "Doug McCune" <[EMAIL PROTECTED]> wrote: > > add in a fill color for the initial BitmapData that is a full argb hex > string. If you don't do this th

[flexcoders] Re: Is there any chance that Flex 3 will support HTTP resonse headers?

2007-04-24 Thread Shannon
That is awkward, what gives... Does HTTPStatusEvent help? http://livedocs.adobe.com/apollo/1.0/aslr/flash/events/HTTPStatusEvent.h tml > So, is Flex 3 going to support HTTP Response headers? It's a little > awkward to be able to set headers when communicating with my backend > system, but I can

[flexcoders] Re: Booleans and Stardust

2007-04-23 Thread Shannon
enum hump. To give a little thanks I've posted a sample of my new EnumBase class. Check it out... http://www.shanimal.com/samples/flex/enum/ Shannon

[flexcoders] Re: Booleans and Stardust

2007-04-22 Thread Shannon
Thanks for your response: > Use int instead of Boolean ? > > -1 (instead of null) > 0 (instead of false) > 1 (instead of true) You are right, this is better than declaring b:*. Hindsite tells me I would be a better programmer if I just created a second function (one to toggleDetails and one t

[flexcoders] Re: Booleans and Stardust

2007-04-22 Thread Shannon
I think you want to use int with predefined constants. Could you elaborate? Im not sure what you mean... Thank you Shannon

[flexcoders] Booleans and Stardust

2007-04-21 Thread Shannon
I wrote a function to change state of details based on arg[0] (off_on): true - show false - hide null - toggle Seems ok, but if off_on is declared Boolean we get a warning: "1096: Illogical comparison with null. Variables of type Boolean cannot be null." Shucks ... ":(~ So I now have

[flexcoders] Re: FDS Scalability

2007-04-20 Thread Shannon
People tend to trust what they know. I've heard alot of J2EE people telling me that CF performs poorly, is insecure and doesn't scale. I personally can't imagine that being the case, because I using Allaire ColdFusion in late 1994 (before Servlets existed) Does anyone know of any good benchmar

[flexcoders] Re: Where can I find a simple explanation on how to extend components?

2007-04-18 Thread Shannon
Here is a very simple MXML component that extends TextArea http://www.adobe.com/2006/mxml"; borderThickness="0" backgroundAlpha="0" focusThickness="0" width="100%" height="100%" selectable="false"/> Save that file. Then to use the component simply type component:TextRegion should be the only

[flexcoders] Re: preloader

2007-04-10 Thread Shannon
There is a pretty great sample in Flex Help or here: http://livedocs.adobe.com/flex/201/html/app_container_064_17.html (livedocs)

[flexcoders] Re: seeking half-way point between view helper (Cairngorm) and re-usable components

2007-04-09 Thread Shannon
gorm has a functional class that I can copy and paste to do this. And maybe that's the real answer. Shannon

[flexcoders] Re: Security error accessing url

2007-03-21 Thread Shannon
The problem with forcing this security in the IDE is that I want to debug my application without uploading my application to the secure production environment. Maybe I am a third party company creating a widget for a company with some web services. I want to be able to build the application wi

[flexcoders] Re: Working with ads (DART) in flex ? How can you possibly do that ?

2007-03-21 Thread Shannon
Sorry I get it now. I read about DART, this is a js call. In Flash: var dartData = {x:"X",y:"Y",z:"Z"}; flash.external.ExternalInterface.call("myDartWriterFunc",dartData) in Javascript: