Re: [flexcoders] FlexTasks: Compc for Flash Player 10

2008-12-23 Thread Robert Stehwien
On Mon, Dec 22, 2008 at 3:50 PM, Tyler Kocheran wrote: > I'm aware that I can do compc on commandline with FP10, but is it possible > yet to do it in FlexTasks for Ant? I haven't looked at the Flex 4 SDK yet, > I've just been getting nightly builds of 3. > You should be able to use ant. I hav

[flexcoders] Lua Alchemy v0.1a Released

2008-12-22 Thread Robert Stehwien
Lua Alchemy is a port of the Lua programming language for ActionScript using Alchemy. Using v0.1a inside Flash/Flex you can create any ActionScript class available at runtime, call functions, get/set properties on ActionScript objects and use Lua functions as an ActionScript function (including ev

Re: [flexcoders] FlexTasks: Compc for Flash Player 10

2008-12-22 Thread Robert Stehwien
Add the following flag to target flash player 10 compc -target-player=10.0.0 [other options] Also recommend you make sure you are using the 3.2+ SDK $ which compc /Applications/Adobe Flex Builder 3/sdks/3.2.0/bin/compc --Robert On Sat, Dec 20, 2008 at 5:07 PM, Tyler Kocheran wrote: > Is there

[flexcoders] Re: AIR Relative URL Requests

2008-05-23 Thread Robert Stehwien
? On Fri, May 23, 2008 at 9:50 AM, Robert Stehwien <[EMAIL PROTECTED]> wrote: > I had a web based Flex app and I've extracted common code to use in an AIR > app. The Web application makes HTTPService and source=XXX requests using > relative paths to the web a

[flexcoders] AIR Relative URL Requests

2008-05-23 Thread Robert Stehwien
I had a web based Flex app and I've extracted common code to use in an AIR app. The Web application makes HTTPService and source=XXX requests using relative paths to the web application like this:

Re: [flexcoders] CS3 to flex tutorials

2008-05-20 Thread Robert Stehwien
Here is my list of links on the topic: https://admin.adobe.acrobat.com/_a300965365/p75214263/ http://www.webkitchen.be/2008/05/05/the-flash-and-flex-marriage/ http://lordbron.wordpress.com/2007/05/01/flex-component-kit-step-by-step/ http://www.moock.org/blog/archives/000253.html http://weblogs.macr

Re: [flexcoders] Strategies for reducing size of Flex SWF?

2008-05-15 Thread Robert Stehwien
You can link the Flex framework as a runtime shared library (RSL). This creates a framework_xxx.swf and .swz file that contain the entire flex framework instead of including the components you use in your application. You application becomes smaller but the framework is pretty big. The advantage

Re: [flexcoders] Re: Flash CS3 Component Creation

2008-05-12 Thread Robert Stehwien
onents and only a subset are loaded at any > moment... so now I need another 50 projects for step 2 above. > > > I still don't really understand why the 'useless' SWF from step 1 > doesn't work... > > > > --- In flexcoders@yahoogroups.com, "Rob

Re: [flexcoders] Re: Flash CS3 Component Creation

2008-05-11 Thread Robert Stehwien
rst one (video) which is actually really > good - but the rest - hadn't seen those! :D > > --- In flexcoders@yahoogroups.com, "Robert Stehwien" <[EMAIL PROTECTED]> > wrote: > > > > Here is my collection of links on the subject: > > https://admin.adobe.acr

Re: [flexcoders] Re: URLRequest using local cache but I don't want it to.

2008-05-11 Thread Robert Stehwien
Or use UIDs instead of random

Re: [flexcoders] Flash CS3 Component Creation

2008-05-09 Thread Robert Stehwien
Here is my collection of links on the subject: https://admin.adobe.acrobat.com/_a300965365/p75214263/ http://www.webkitchen.be/2008/05/05/the-flash-and-flex-marriage/ http://lordbron.wordpress.com/2007/05/01/flex-component-kit-step-by-step/ http://www.moock.org/blog/archives/000253.html On Fri, Ma

Re: [flexcoders] Printing flex datagrid to PDF.

2008-05-08 Thread Robert Stehwien
You can use BitmapData#draw() to draw any display object to a bitmap. But that would, I believe, only show you what is currently displayed. It might be a start. --Robert On Thu, May 8, 2008 at 11:48 AM, Hemkarna <[EMAIL PROTECTED]> wrote: > Friends, > > Is it possible to save the print stream

Re: [flexcoders] Group Box

2008-03-27 Thread Robert Stehwien
- > > Thank you > > On Wed, Mar 26, 2008 at 3:38 PM, Robert Stehwien <[EMAIL PROTECTED]> > wrote: > > > The equivalent of a group box is a Panel in Flex. Here is a quick > > example > > > > > > > > > > > > > >

Re: [flexcoders] AIR + Fles communication on the same machine.

2008-03-26 Thread Robert Stehwien
Check out LocalConnection for your first problem, as for the second I know AIR cannot execute programs on the local filesystem. A potential solution to your second (and first question) is to run a webservice or raw tcp/ip server that AIR and Flex connect and make requests to do the work. There is

Re: [flexcoders] Group Box

2008-03-26 Thread Robert Stehwien
The equivalent of a group box is a Panel in Flex. Here is a quick example --Robert On Wed, Mar 26, 2008 at 11:32 AM, Raghu <[EMAIL PROTECTED]> wrote: > > Is there any possibility of having group box in flex? If possible can > u please update how it can be done. > > > --

Re: [flexcoders] Re: How do I set width to 100% in actionscript?

2008-03-25 Thread Robert Stehwien
Yep, with "percentHeight" On Tue, Mar 25, 2008 at 4:51 PM, arieljake <[EMAIL PROTECTED]> wrote: > Along these lines, can a resize effect with property "heightTo" be > given a percent height? > > --- In flexcoders@yahoogroups.com, "westlandc" <[EMAIL PROTECTED]> wrote: > > > > --- In flexcoders@ya

Re: [flexcoders] Re: Automate build for large apps?

2008-03-25 Thread Robert Stehwien
Sorry for the terse reply, but try the following: * Ant (probably your best bet since you use nant) * http://labs.adobe.com/wiki/index.php/Flex_Ant_Tasks * http://code.google.com/p/flex-template/ * http://code.google.com/p/antennae/ * Rake * http://code.google.com/p/flexible-rails/ * http

Re: [flexcoders] GIS and Flex

2008-03-14 Thread Robert Stehwien
You can use the ESRI, yahoo, mapquest, google, etc map APIs. You can also read the ArcView Shape files and associated DBF files using this library and create your own components. http://code.google.com/p/vanrijkom-flashlibs/ I started with that library to create a heat-map component using maps.

Re: [flexcoders] Help with RegEx

2008-02-14 Thread Robert Stehwien
For functions use a regular expression like: function[\s\S]*{[\s\S]*} This looks for function followed by zero or more of any character (including newlines), followed by {, followed by zero or more of any character (including newlines), followed by }. For classes replace "function" with "class" a

Re: [flexcoders] How to update UI during long operations

2007-09-06 Thread Robert Stehwien
- > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Robert Stehwien > *Sent:* Thursday, September 06, 2007 1:32 PM > *To:* flexcoders@yahoogroups.com > *Subject:* [flexcoders] How to update UI during long operations > > >

[flexcoders] How to update UI during long operations

2007-09-06 Thread Robert Stehwien
I've got a long operation that is updating the UI through data binding, but the UI doesn't update until the operation finishes. How can I relinquish enough control to the UI to update during long operations? Thanks, Robert