Re: [flexcoders] ?

2008-08-25 Thread Jake Churchill
I usually have seen used and use it like this: [Event( name="eventName",type="fully.qualified.classpath" )] markflex2007 wrote: Hi, I confuse with now I have the following in code [Event('add')] [Event('update')] [Event('cancel')] Do you think the following code work with the ? d

Re: [flexcoders] Distributing AIR applications on Widows and Mac

2008-10-22 Thread Jake Churchill
Check out this article by David Tucker. I used this very one and it worked great! http://www.adobe.com/devnet/air/articles/air_badge_install.html Here's another: http://www.adobe.com/devnet/air/articles/badge_for_air.html -Jake Churchill jenonflex wrote: Hi All, I want to distribu

[flexcoders] Cairngen UM Extensions on Vista

2008-11-04 Thread Jake Churchill
yet to find a fix. I've tried all of the different packages that they recommend installing and moving the swt DLL file to the system32 directory but still no luck. Does anyone have any ideas? Thanks! -Jake Churchill

Re: [flexcoders] Cairngen UM Extensions on Vista

2008-11-05 Thread Jake Churchill
I'm using the Cairngorm-2.2.1-Extensions-r76.swc and using the build.xml ant scripts in cairngenum. I'm trying to use this in my own application. As I said everything else works in the ANT scripts, just not this one target due to prompting. Tom Chiverton wrote: On Tuesday 04 Nov

Re: [flexcoders] Cairngen UM Extensions on Vista

2008-11-06 Thread Jake Churchill
To create event/command sequences Tom Chiverton wrote: On Wednesday 05 Nov 2008, Jake Churchill wrote: I'm using the Cairngorm-2.2.1-Extensions-r76.swc and using the build.xml ant scripts in cairngenum. If you have the .swc, why are you trying to run their ant task anyway ?

Re: [flexcoders] Cairngen UM Extensions on Vista

2008-11-06 Thread Jake Churchill
If there's another way, let me know. I'm not familiar enough with cairngen or cairngenum to know another way around it without using the ant tasks Tom Chiverton wrote: On Thursday 06 Nov 2008, Jake Churchill wrote: To create event/command sequences Why does this mean run

Re: [flexcoders] Re: ArryCollection Columns.

2008-11-06 Thread Jake Churchill
You might be able to use flash.utils.describeType() to get at the properties of the AC if you don't know them. Although, what I generally id convert the query to a structure in which case you would be able to return an array or structure key containing the columns. Paul Kukiel wrote: No.

Re: [flexcoders] Looking for what this[iscalled]

2008-11-28 Thread Jake Churchill
I call it array notation but I'm not sure if that's "technically" correct Nate Pearson wrote: What's it called when I call something by using a string? Like when I do this[someObject].height = 10 someObject is a string. Thanks! -Nate

Re: [flexcoders] adding an event listener (in MX:Button) to pass a parameter and an Event Object

2008-12-15 Thread Jake Churchill
pass event to your function as well. It is of type MouseEvent and is already available to the click parameter, just needs to be passed in like this: tom s wrote: I have a button defined in Flex that passes a parameter to a function when clicked But I want to know the id of the button

Re: [flexcoders] Air upload -> File IO Error -> port issue

2009-01-27 Thread Jake Churchill
Looks like the server might not be set to listen on port 80 if it's not working in the browser either. It is possible to do port forwarding at the domain level so maybe port 80 is somewhere being forwarded and is actually hitting another port on the server. If that's not the case then you've

Re: [flexcoders] try, catch, finally ...

2009-03-03 Thread Jake Churchill
I use try-catch but rarely do I find a need for finally. Finally is optional and it is only needed if you absolutely need some piece of code to run regardless of whether the code hits the try or the catch. Personally, I feel like try/catch blocks are just good practice. Maybe it was only the

Re: [flexcoders] Another on try-catch-finally ...

2009-03-03 Thread Jake Churchill
No, the try/catch block is a good thing. I'm not sure what updateListArray() does but there is always a potential for an error. What if bPollingDatabase is not yet created, then an error will be thrown. The empty catch simply means that IF an error happens, nothing special is done to correct

Re: [flexcoders] Images

2009-03-05 Thread Jake Churchill
the space is probably caused by the default horizontal spacing in the HBox. Take that down to 0 and it'll probably work fine. Darrin Kay wrote: Ok I am stuck and I am sure it is simple. I have a HBox and I am I have a image in there, now I want to put another image in there and have it butt u

Re: [flexcoders] Number of connexions

2009-03-11 Thread Jake Churchill
It'd be based on the number of simultaneous connections allowed by the web server. The SWF is downloaded to the client's computer. Same with remoting calls. Connections generally don't last very long but it should be limited by the web server's connection settings.

RE: [flexcoders] Creating RemoteObject in ActionScript as dataProvider for ComboBox

2009-04-02 Thread Jake Churchill
What is your remote object returning?? Send your remote object's result to a function and then set your dataprovider. This will allow you to debug it and find out what is being returned. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of brad.bueche Sent: T

RE: [flexcoders] flex chart problem

2009-04-10 Thread Jake Churchill
Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Vikram Singh Sent: Friday, April 10, 2009 7:43 AM To

RE: [flexcoders] Link/Hand Cursor

2009-04-16 Thread Jake Churchill
useHandCursor=true buttonMode=true Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of byte.sensei Sent: Th

RE: [flexcoders] How can I receive the smallest value within an Array?

2009-04-16 Thread Jake Churchill
array = array.sort(); smallest = array[0]; Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Paul Andrew

RE: [flexcoders] Violated by Sandbox

2009-04-21 Thread Jake Churchill
omain); Security.loadPolicyFile(Model.instance.domain + "/crossdomain.xml"); Model.instance.domain ended up being http://www.myproductionserver. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x

RE: [flexcoders] Re: Violated by Sandbox

2009-04-21 Thread Jake Churchill
ain (needed to get live data from > dev server) > > Security.allowDomain(Model.instance.domain); > > Security.loadPolicyFile(Model.instance.domain + "/crossdomain.xml"); > > > > Model.instance.domain ended up being http://www.myproductionserver. > >

RE: [flexcoders] How improve performance

2009-04-23 Thread Jake Churchill
Run FlexBuilder's Profiler on it. There might be a memory leak Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] O

RE: [flexcoders] Bug in Flex scrolling?

2009-05-05 Thread Jake Churchill
-issues/ and the example is here: http://www.axelscript.com/2009/03/30/itemrenderer-tilelist-issues/ Hope it helps! Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flex

RE: [flexcoders] Source Not Found in Flex Builder Debug

2009-05-11 Thread Jake Churchill
It probably means the error is from a class in a SWC file. Are you importing any SWC files? This happens to me if I screw something up in Cairngorm or FlexLib (both SWC files) Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733

RE: [flexcoders] Building RSS Reader in AIR

2009-05-15 Thread Jake Churchill
There used to be an example on Adobe’s website of how to build an AIR application and it walked you through building an RSS reader. This was back when it was Apollo so I’m not sure if you’ll still be able to find it but it’d be worth the looking. Jake Churchill CF Webtools 11204 Davenport, Ste

RE: [flexcoders] Doing "math" with Date()

2009-05-18 Thread Jake Churchill
Look up Date on livedocs. You can access all parts of the date and I believe you can do natural comparison as well, i.e. if( date1 != date2 ). Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders

RE: [flexcoders] Call a Flex Function by Name

2009-05-19 Thread Jake Churchill
ike for you: var className:Class = Class( getDefinitionByName( getQualifiedClassName( "ProjectProperties" ) ) ); var function:Function = className["setValue"]; function.call(className[or null], parmaters.); FYI, this code is completely untested, just trying to give you

[flexcoders]

2009-05-19 Thread Jake Churchill
use a modifier key (SHIFT or CTRL) the highlight works. Does anyone have any ideas of how to fix this? Thanks in advance. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103

[flexcoders] DataGrid highlight issues

2009-05-19 Thread Jake Churchill
use a modifier key (SHIFT or CTRL) the highlight works. Does anyone have any ideas of how to fix this? Thanks in advance. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103

RE: [flexcoders] DataGrid highlight issues

2009-05-20 Thread Jake Churchill
hanks for your help. I hopefully have a working solution now. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui

RE: [flexcoders] Re: VO Issues

2009-05-20 Thread Jake Churchill
If you are using ColdFusion for your server, you can return a typed structure rather than registering the object mappings. Like this: Struct[__TYPE__] = "com.rottmanj.model.vo.CompanyVO"; Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.c

RE: [flexcoders] Any ideas on how to embed a styleDeclaration swf compile time?

2009-05-21 Thread Jake Churchill
er to compile the css to a SWF, just right click on it and select that option. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoog

RE: [flexcoders] Re: LineChart Magic

2009-05-22 Thread Jake Churchill
Nice. I don't see a lot of charting examples but this is nice because I'm about to start a project plotting multiple items dealing with commodities and futures and I'm sure I'll need to customize it quite a bit. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Oma

RE: [flexcoders] Form validation in Flex?

2009-05-22 Thread Jake Churchill
It would probably be better to have all forms extend a base component and handle validation there. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

RE: [flexcoders] chart "labelRotation" problem

2009-05-23 Thread Jake Churchill
/LFG401kAssetAccumulationChart/LFG401kAssetAccumulationChart4.html The right vertical axis has rotation applied. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod

RE: [flexcoders] String To Date Conversion

2009-05-26 Thread Jake Churchill
new Date( Date.parse( your_string_variable ) ); Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of yogesh pate

RE: [flexcoders] dnd list items

2009-05-26 Thread Jake Churchill
last line. DragManager.doDrag takes the alpha as a parameter so you can have a fully transparent background. You’ll have to add the border yourself. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103

RE: [flexcoders] Value Objects

2009-05-26 Thread Jake Churchill
I think it's more for the code hints than anything J Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tim Rowe Sent: Tuesday, May 26,

RE: [flexcoders] Run time Warning

2009-05-28 Thread Jake Churchill
Convert the XML to an arraycollection of VOs and make the entire VO class bindable. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

RE: [flexcoders] SuperTab Navigator Help

2009-06-01 Thread Jake Churchill
You'll probably have to override the createChildren method and place it where it needs to go. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mai

[flexcoders] AIR & Computer Locking

2009-06-01 Thread Jake Churchill
know if there was an easy way to find out if the computer is currently locked or not. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103

RE: [flexcoders] AIR & Computer Locking

2009-06-01 Thread Jake Churchill
That's how I'm going to work around it. I just thought it'd be cool if there was a way to natively grab certain system info (outside of the network stuff) Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebt

RE: [flexcoders] FlexBuilder Question

2009-06-03 Thread Jake Churchill
In the "Navigator" pane there is an icon with arrows going left and right. It's called "Link with Editor". I think that's what you want. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 Fr

RE: [flexcoders] cannot convert flash.display::Bitmap to mx.core.IUIComponent.

2009-06-04 Thread Jake Churchill
addChild expects an mx.core.iUIComponent which Bitmap is not. You're data types are not matching up because you are adding everything to a Canvas. You'll probably need to write a custom component that contains a public property to store your bitmap children to. Jake Churchill C

RE: [flexcoders] URL pound sign questions

2009-06-09 Thread Jake Churchill
rest of the data as necessary through remoting. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of creativepragma

RE: [flexcoders] Itemrenderers style?

2009-06-10 Thread Jake Churchill
I've had issues with this before that were solved by putting the style stuff inside updateDisplayList. I'm not sure if that's better or worse than putting it in commitProperties. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 40

RE: [flexcoders] Charting dataFunction issues

2009-06-12 Thread Jake Churchill
Sorry, I meant to follow up on this yesterday. Thanks for your reply but I figured it out. I had the wrong type of horizontal axis applied so when I was returning an xField value it was actually drawing the chart off to the right somewhere. Jake Churchill CF Webtools 11204 Davenport, Ste. 100

RE: [flexcoders] checkBox event

2009-06-16 Thread Jake Churchill
Look at the Change event: http://livedocs.adobe.com/flex/3/langref/mx/controls/Button.html#event:chang e Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogrou

RE: [flexcoders] How to play a wav audio file in flex

2009-06-16 Thread Jake Churchill
my first instinct is to try to write it myself. Sorry, just had to butt in here. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroup

RE: [flexcoders] CartesianChart not recognized in Flex SDK 3.3

2009-06-16 Thread Jake Churchill
Are you sure the compiler settings are set to use the new SDK? I'm using SDK 3.3 and am actually working on a CartesianChart as I'm writing this. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 4

RE: [flexcoders] Trying Smooth slide transitions with List control item renders or a Repeater...

2009-06-17 Thread Jake Churchill
else. Basically, this is just a grouping of canvases. The source code is on Axel's blog. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yah

RE: Re[flexcoders] moteObject endpoint= vs. Flex settings

2009-06-17 Thread Jake Churchill
endpoint in it. That way, when I deploy an app, the only thing I need to worry about changing is the config file. I don't spend a bunch of time trying to figure out server configurations and difference between my environment and a production/staging environment. Jake Churchill CF Webtools

RE: [flexcoders] Charting questions

2009-06-19 Thread Jake Churchill
Add the following right after your code: Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Beh

RE: [flexcoders] very urgent PlZZZZZZZ Accessing webservices

2009-07-01 Thread Jake Churchill
Maybe a crossdomain policy issue? Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of vin.flex Sent: Wednesday, J

RE: [flexcoders] Listen for event of unknown type?

2009-07-09 Thread Jake Churchill
Yes, listed for Event (all events extend this class) Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of luvfotography Sent: Thursday, July

[flexcoders] Custom Events in multiple components

2009-07-14 Thread Jake Churchill
Thanks! Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103

[flexcoders] Events and Inheritance

2009-07-17 Thread Jake Churchill
Thanks! Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103

RE: [flexcoders] Events and Inheritance

2009-07-17 Thread Jake Churchill
You know what, nevermind. I started another example from scratch and it inherited fine. I'm not sure what my problem was but it's working. Thanks! Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.

RE: [flexcoders] Flex scheduler application

2009-08-02 Thread Jake Churchill
eed, I'd be happy to share some of the code with you. It uses a SQLite DB to store everything and depends entirely on the computer's time settings Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@y

RE: [flexcoders] Re: Flex scheduler application

2009-08-03 Thread Jake Churchill
her than SQLite Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of joyfulrodger Sent: Monday, August 03, 2009 10

RE: [flexcoders] cairngorm convention: vo or model?

2009-08-06 Thread Jake Churchill
level as control, not inside of control Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jorge Maiquez Sent: Th

RE: [flexcoders] Re: open source imageCFC

2009-08-11 Thread Jake Churchill
here: http://www.opensourcecf.com/imagecfc/ Image manipulation is not a simple thing and you're probably not going to get someone to just hand you a script. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From:

RE: [flexcoders] Send an automatic Password

2009-08-12 Thread Jake Churchill
Use whatever server you have available to you (i.e. php, coldfusion) Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Beh

RE: [flexcoders] How to run an AIR app in headless mode?

2009-08-12 Thread Jake Churchill
In your -app.xml file you need to have this: none In your main WindowedApplication tag, you need this attribute: showFlexChrome="false" Also, you'll need to minimize the native window that comes with the AIR application or close it without exiting the app Ja

RE: [flexcoders] ItemRender - Access Specific Item at Run-time

2009-08-12 Thread Jake Churchill
When does the state need to change? You probably need to be looking for some kind of an event (ListEvent most likely) Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flex

RE: [flexcoders] Event Best Practices

2009-08-14 Thread Jake Churchill
e found it easiest to use a Model Singleton that extends EventDispatcher and dispatch the events and listen to the events through the model. That's the more complicated way to handle it. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cf

RE: [flexcoders] Mx:VBOX

2009-08-19 Thread Jake Churchill
Set an ID on your VBox (call it "vboxID") and call this: vboxID.invalidateDisplayList(); Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com

RE: [flexcoders] Line and area chart on the same coordinate system?

2009-08-27 Thread Jake Churchill
Use a Cartesian chart with a Line Series and Area Series Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of |Mirk

RE: [flexcoders] RE: creationcomplete firing when a component is disabled

2009-09-01 Thread Jake Churchill
You can't see GlobalVars because it's a Singleton. Models are often used that way. Try var g:GlobalVars = GlobalVars.instance; I do that a lot when using a Model and when I'm done debugging, I remove it. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha,

[flexcoders] Coldfusion inside Flex

2009-09-09 Thread Jake Churchill
Here's a cool video from adobe on using ColdFusion functionality in flex without actually writing any ColdFusion services: http://tv.adobe.com/watch/tech-talk-with-ryan-stewart/sneak-peek-of-proxy-ta gs-in-coldfusion-9/ Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE

RE: [flexcoders] Don't understand how to use deferred instantiation

2009-09-14 Thread Jake Churchill
Yes, a viewstack loads everything when the app loads. If you don't want that, I think you need to use states instead Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yaho

RE: [flexcoders] Don't understand how to use deferred instantiation

2009-09-14 Thread Jake Churchill
ut my backwards logic J Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wesley Acheson Sent: Monday, September 14, 2

RE: [flexcoders] Found the problem! Re: Don't understand how to use deferred instantiation

2009-09-15 Thread Jake Churchill
I believe this is where you need to change the "creationPolicy" on the component. Someone posted a link to that yesterday Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103

RE: [flexcoders] accessing Array created in Private function?

2009-09-15 Thread Jake Churchill
Store the array in a bindable variable inside the class instead of in the function Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogrou

RE: [flexcoders] How to add files when exporting air application

2009-09-16 Thread Jake Churchill
leCopyError]: " + err.message ); } Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Beha

RE: [flexcoders] Re: How to add files when exporting air application

2009-09-16 Thread Jake Churchill
les out of. I would think this would still work with modules, wouldn't it? Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com]

[flexcoders] AreaSeries LinearGradient Fill [1 Attachment]

2009-09-22 Thread Jake Churchill
to fix this in order to get a full gradient? Thanks! CODE: Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103

[flexcoders] SDK 3.2 upgrade to 3.4 issue

2009-09-22 Thread Jake Churchill
) but the result handler in the commands get hit twice. Did something change regarding event dispatching, AsyncTokens, etc that would cause this? FYI, switching back to 3.2 and re-building makes the code run just fine again. Thanks! Jake Churchill CF Webtools 11204 Davenport, Ste

RE: [flexcoders] SDK 3.2 upgrade to 3.4 issue

2009-09-23 Thread Jake Churchill
Thanks for the info. I was just upgrading to stay current, no particular reason so I'll hang back on 3.3 for a while until 3.5 is released. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 -Original Message-

RE: [flexcoders] Re: How to stop a button click from changing focus

2009-09-24 Thread Jake Churchill
Look into the PopupManager.createPopup method http://livedocs.adobe.com/flex/3/langref/mx/managers/PopUpManager.html There is a modal attribute which is false by default. I believe if you set that to true, you'll get your desired result. Jake Churchill CF Webtools 11204 Dave

RE: [flexcoders] flex on a cfm page

2009-09-28 Thread Jake Churchill
I do it all the time and yes, just password protect the CFM template and the server will protect your SWF. If you are being SUPER secure, you might want to code a login form for both or share sessions or something like that but in general, this is fine. Jake Churchill CF Webtools 11204

RE: [flexcoders] Change Application width and height at runtime

2009-09-28 Thread Jake Churchill
illion examples. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of superabe superabe Sent: Monday, September 28, 2009 5:42 PM To: flexcoders@

RE: [flexcoders] Send a file by Email

2009-10-02 Thread Jake Churchill
Use backend technology such as ColdFusion, .NET, PHP, etc. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Christophe Sent: Friday

RE: [flexcoders] Key Return for button

2009-10-07 Thread Jake Churchill
defaultButton Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 <http://www.cfwebtools.com> http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Christophe Sent: Wednesday, October 07, 2009 8

Re: [flexcoders] Security question

2009-10-09 Thread Jake Churchill
crossdomain.xml policy files On Fri, Oct 9, 2009 at 2:07 PM, Christophe wrote: > > > Hello, > > What is the protection against the use of my swf application on another > website by a hacker with a copy of the swf file ? > > Thank you, > Christophe, > > >

Re: [flexcoders] Flex AIR app: How to determine Operating System at run-time

2009-10-22 Thread Jake Churchill
Look at Capabilities. It has an "os" property. http://livedocs.adobe.com/flex/3/langref/flash/system/Capabilities.html#os -Jake On Thu, Oct 22, 2009 at 10:15 AM, Tracy Spratt wrote: > > > We are creating an app that will run in an embedded linux environment, > but are developing under window

Re: [flexcoders] Flex AIR app: How to determine Operating System at run-time

2009-10-22 Thread Jake Churchill
my bad, os is only for in browser. look at the version property: http://livedocs.adobe.com/flex/3/langref/flash/system/Capabilities.html#version -Jake On Thu, Oct 22, 2009 at 10:20 AM, Jake Churchill wrote: > Look at Capabilities. It has an "os" property. > > http://live

[flexcoders] ArrayCollection of VO's Memory Leak??

2009-10-22 Thread Jake Churchill
Hi all, I have a charting application where I have an ArrayCollection of VO's. The chart has several series, each looking at one property in the VO. There are several controls that when changed, require a re-calculation of the VO's in the ArrayCollection. Before I do the re-calculation, I call

Re: [flexcoders] Flex 3: AIR & Local Database

2009-10-22 Thread Jake Churchill
I've had many thousand records before and SQLite performed just fine. The only limitation I found was with datatypes which is easily overcome in most cases. I can't comment about the rest. On Thu, Oct 22, 2009 at 5:28 PM, jwc_wensan wrote: > > > In all the articles I have read and some examples

Re: [flexcoders] ArrayCollection of VO's Memory Leak??

2009-10-23 Thread Jake Churchill
Alex Harui > > Flex SDK Developer > > Adobe Systems Inc. <http://www.adobe.com/> > > Blog: http://blogs.adobe.com/aharui > > > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Jake Churchill > *Sent:* Thursday, Octob

Re: [flexcoders] Re: Question?? Best method for plotting a Moving Average

2009-10-23 Thread Jake Churchill
We do the same thing. See this screen shot: http://www.reynacho.com/wp-content/uploads/2009/05/cse-charting.jpg There's a lot more than just a moving average and bollinger bands there but those are parts of it. In order to get this data, we first tapped into a feed which you have to pay good mo

Re: [flexcoders] ArrayCollection of VO's Memory Leak??

2009-10-23 Thread Jake Churchill
eveloper > > Adobe Systems Inc. <http://www.adobe.com/> > > Blog: http://blogs.adobe.com/aharui > > > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Jake Churchill > *Sent:* Friday, October 23, 2009 9:30 AM > *To:* flexco

Re: [flexcoders] Highlighting a Chart Collumn?

2009-10-26 Thread Jake Churchill
You can create a custom line renderer and change the color of the line for the section selected. Check out this sampler for ideas: http://demo.quietlyscheming.com/ChartSampler/app.html On Mon, Oct 26, 2009 at 10:29 AM, jmerrill_2001 < jason.merr...@bankofamerica.com> wrote: > > > Is there a way

Re: [flexcoders] Re: Highlighting a Chart Collumn?

2009-10-26 Thread Jake Churchill
The files are generally named based on the example that you click on, ie styles would be in the styles package, etc. On Mon, Oct 26, 2009 at 10:57 AM, jmerrill_2001 < jason.merr...@bankofamerica.com> wrote: > > > > > --- In flexcoders@yahoogroups.com , Jake > Churchill

Re: [flexcoders] Getting rid of the Scrollbar in the List Item

2009-10-27 Thread Jake Churchill
set horizontalScrollPolicy="off" in your renderer On Tue, Oct 27, 2009 at 12:11 AM, steveb805 wrote: > > > After a marathon Google-fest/Adobe Help Site search, I have not been able > to figure out how an elegant, best-practice, or any other way to get rid of > the horizontal scroll bar that appea

Re: [flexcoders] Re: LineSeries.showDataEffect - MXML vs. AS3 - bug?

2009-10-29 Thread Jake Churchill
The same thing happens if you are trying to align components inside a canvas using right/left/top/bottom. In mxml it's fine but you have to use setStyle in AS. I think it just has to do with whether the property was set up as a Style or a Property in the main component. In MXML, you get to them

Re: [flexcoders] Water Marker Issue(urgent)

2009-11-08 Thread Jake Churchill
Did the app originate from FB2?  I had that issue and it's because FB2 had a separate licence for charting.   If you have FB3 Pro you can get the 2nd license for free through Adobe -- Sent from my Palm Prē Shashi wrote:   Hi, I am using flexbuilder3. I have

[flexcoders] LineSeries

2009-11-16 Thread Jake Churchill
I'm struggling with how to hide a section of a LineSeries. Does anyone have any pointers or links to point me in the right direction? Thanks! -Jake

Re: [flexcoders] Re: LineSeries

2009-11-16 Thread Jake Churchill
ntrol the alpha or actual > drawing; based on a data property. Here's a custom renderer sample to get > you started: > > Colored Line Chart > Sample<http://www.flashcomguru.com/index.cfm/2009/11/11/pdf-for-flex-devs> > > > -TH > > --- In flexcoders@yahoogro

Re: [flexcoders] Re: LineSeries

2009-11-16 Thread Jake Churchill
it again: > Sample<http://www.timothyhoff.com/projects/LineRendererSample/LineRendererSample.html> > > > -TH > > --- In flexcoders@yahoogroups.com, Jake Churchill wrote: > > > > I've been trying something like this but item renders and actual segments >

Re: [flexcoders] Re: LineSeries

2009-11-16 Thread Jake Churchill
Yeah, I knew what you meant. On Mon, Nov 16, 2009 at 5:02 PM, turbo_vb wrote: > > > Cool, yeah I should have said custom lineSegmentRenderer. > > > -TH > > --- In flexcoders@yahoogroups.com , Jake > Churchill wrote: > > > > THANK YOU. I have seen t

  1   2   >