Re: [flexcoders] robotlegs

2012-05-11 Thread Robert VanCuren Jr
I starting using robotlegs about a year ago and I really like it. It's by far my favorite framework (mvc, dependency injection) for as3. I have used it for pure as3 and flex projects. As far as using it for small projects, it can be worthwhile because of the convenience methods that it provides.

Re: [flexcoders] AIR - Content resize according window

2012-01-17 Thread Robert VanCuren Jr
Check minWidth and minHeight On Tue, Jan 17, 2012 at 7:31 AM, Tandon, Rishi wrote: > ** > > > Could you send over your code? > > -- > *From:* isa_loyer > *To:* flexcoders@yahoogroups.com > *Sent:* Tuesday, January 17, 2012 5:22 PM > *Subject:* [flexcoders] AIR - Con

Re: [flexcoders] You are the product

2011-12-17 Thread Robert VanCuren Jr
There is no one size fits all solution if you want to build a complex application. Flash might be a good choice for one and HTML for another and you might need to go native depending on what you are trying to do. Maybe you even want to use Java or Silverlight! When you ask if you can do something

Re: [flexcoders] Re: Check if a Security Domain is accepted or not (IE for bitmap smoothing)

2011-12-02 Thread Robert VanCuren Jr
I do not seem to have this problem. Can you post more code so I can get a better look at what you are doing. I use facebook images all the time with out problem. The only time I have had issues with policy files is when the image url is actually a redirect. Flash checks the policy file before load

Re: [flexcoders] Determine the framerate of a display object, Alex

2011-08-04 Thread Robert VanCuren Jr
You can determine the frame rate of the swf as a whole but individual display objects do not have their own frame rate. One slow display object slows the whole movie down. So in the case you described below both would produce the same frame rate. If you want to find out which display objects are

Re: [flexcoders] can flex app send a flag/text back to the wrapper html?

2010-09-08 Thread Robert VanCuren Jr
Look at ExternalInterface On Wed, Sep 8, 2010 at 6:08 PM, coder3 wrote: > > > > Hi all, > > I have a flex app. and of course there is a standard html that launchs this > .swf. > > now what i want is, if the flex app (swf) has an error, it can send a > boolean/text/exception back to the html, so

Re: [flexcoders] Re: flex debuging

2010-07-30 Thread Robert VanCuren Jr
builder run an exe. On Fri, Jul 30, 2010 at 5:21 PM, Robert VanCuren Jr < robert.vancuren...@gmail.com> wrote: > In Flex / Flash builder the debugger hooks up to the first swf that is > loaded once it is waiting. So you can make a debug configuration that points > to http://localhost

Re: [flexcoders] Re: flex debuging

2010-07-30 Thread Robert VanCuren Jr
In Flex / Flash builder the debugger hooks up to the first swf that is loaded once it is waiting. So you can make a debug configuration that points to http://localhost/fake.swf. When you then click debug will open your browser to a blank page and just wait. Now you can simply open your real page wi

Re: [flexcoders] Re: Flash Debugger crashing in Firefox?

2010-07-13 Thread Robert VanCuren Jr
http://www.riaxe.com/blog/flex/flex-firefox-flash-debug-player-crash-solved/ On Tue, Jul 13, 2010 at 3:40 PM, kris range wrote: > > > Something like this happens to me on Safari OS X. If an flash > application is loading or doing something and I go to another page, > I'll usually get an IOErrorE

[flexcoders] Yes/No RadioButton

2010-06-11 Thread Robert VanCuren Jr
use a check box instead

Re: [flexcoders] swf information.

2010-04-16 Thread Robert VanCuren Jr
You can parse this information from the swf file it self when you load it. I did this once and it was pretty easy. I needed to know the version and frame rate so my flex app could slow down to display as2 swfs. Anyways if you dont want to write it your self there are several libraries. Here is a l

Re: [flexcoders] Loading component at runtime with out compile time linking

2010-04-09 Thread Robert VanCuren Jr
There are a couple ways of doing this. You could try RSLs or Modules. Here is a link that talks about doing exactly what you are talking about. http://flexinonroids.wordpress.com/2009/05/27/flex-3-dynamically-loading-components-at-runtime/ On Fri, Apr 9, 2010 at 3:39 AM, Gireesh wrote: > > > H

Re: [flexcoders] Performance feedback PLEASE

2010-04-09 Thread Robert VanCuren Jr
53 fps Intel Core 2 Duo T9400 @ 2.53GHz Flash player version 10,1,51,95 On Fri, Apr 9, 2010 at 4:51 AM, Allan Pichler wrote: > > > I was wondering if anyone could take a quick glance at my AS3 3d renderer > http://api.pluton.webhouse.dk/pool3d/pool3d.html and reply what FPS they > get on their

Re: [flexcoders] Get name of function from within the function? Get arguments for any function?

2010-04-05 Thread Robert VanCuren Jr
You can use the arguments class to get some of this info. http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/arguments.html#propertySummary for example arguments.callee returns a reference to the cur

Re: [flexcoders] Re: Adding a button Icon

2010-03-15 Thread Robert VanCuren Jr
t convert "@Embed(source='icons/more.gif')" to > Class? > > - New error? > > > --- In flexcoders@yahoogroups.com , Robert > VanCuren Jr wrote: > > > > you need to use the setStyle method because icon is a style not a > property. > >

Re: [flexcoders] Adding a button Icon

2010-03-15 Thread Robert VanCuren Jr
you need to use the setStyle method because icon is a style not a property. myButton.setStyle("icon", source); On Mon, Mar 15, 2010 at 8:20 AM, criptopus wrote: > > > // Add TLink To Issue Box > issButArray.push(new Button()); > issButArray[i].icon="@Embed(source='icons/more.gif')"; > issHbxArr

Re: [flexcoders] How to link effects so that one starts after one finishes?

2009-07-10 Thread Robert VanCuren Jr
You could also use a sequence effect that would play the effects on after the other On Thu, Jul 9, 2009 at 11:10 AM, claudiu ursica wrote: > > > You can play the first effect and listen to the effectEnd event ant in the > handler start the second effect or you can

Re: [flexcoders] UITextField alignment question

2009-07-01 Thread Robert VanCuren Jr
Are you using embedded fonts? When you embed a font they will display 1 pixel higher than a non embedded font. There are a couple work arounds if this is the case. On Wed, Jul 1, 2009 at 10:24 AM, Daniel Freiman wrote: > > > Are you accounting for the 2 pixel border of the textfield? > > - Danie

Re: [flexcoders] addChild using actionscript

2009-06-29 Thread Robert VanCuren Jr
You are trying to remove a child that has never been added. In your addCheckBox function you are creating a new CheckBox and then adding it which is fine but then in your removeCheckBox function you are again creating a brand new CheckBox and trying to remove it. This will not work because the new