Re: [flexcoders] Better way to update sub-records, Flex and Coldfusion

2006-11-19 Thread greg h
Hi lost, Does your table SubRecords have a primary keyhttp://en.wikipedia.org/wiki/Primary_key ? If so, you could use the SQL UPDATE statementhttp://www.sql-tutorial.com/sql-update-sql-tutorial/, rather than DELETE followed by INSERT. If the table does not have a primary key, there are

[flexcoders] Re: Cairngorm and working with Delegate question

2006-11-19 Thread malik_robinson
Hi, It turns out that there is a problem with my remote object (I think), because after I make the call, this function is executed. I know this one is executed because I did a Alert.show('test') within this function and it does the alert so this function must be getting called after I try to

Re: [flexcoders] [ADV] New version of Flexible Rails book available (Alpha version 5)

2006-11-19 Thread Peter Armstrong
Hi Steve, Thanks for your feedback--I've just redesigned the flexiblerails website, including a link to an updated Table of Contents. Regarding your questions: - For authentication, I just use the old school login_generator and update its generated output to be less deprecated. I don't go into

RE: [flexcoders] Minimizing File Size

2006-11-19 Thread leds usop
in relation to this topic, probably mx:module will help a lot once available. although it has already been posted that the 2.01 update will be available early next year, I cnt wait to get my hands on it. Is there any chance of getting a prerelease copy of 2.01 at this time? we are currently

[flexcoders] Flex 2 Charting dynamic backgroundElements

2006-11-19 Thread Sönke Rohde
Hi, I have to draw shapes and lines into the background of a Plotchart. The size/position of the shapes and lines depends on the minimum and maximum of the horizontal and vertical linear axis. My first try was to use the backgroundElements to solve this problem. I created a shape, drawed a

Re: [flexcoders] Flex Upload Handling (design)

2006-11-19 Thread Sebastian Zarzycki
hank williams wrote: This is a current failing in the flash/flex design. The way that I deal with it is to, before doing the actual upload, to send the data associated with the upload to the server first. The server then sends back an itemID or ticketID or something like that. When you

[flexcoders] Compiling with FlashDevelopIDE/mxmlc.exe

2006-11-19 Thread John Grden
I'm getting this error and can't figure out why. I've reinstalled everthing (FD, sdk - you name it). the app compiles without error, but when it loads, I get this in a long line of messages: VerifyError: Error #1079: Native methods are not allowed in loaded code. anyone know what this is?

[flexcoders] Re: Communicating with an embedded SWF from Flex App

2006-11-19 Thread Troy Rollins
--- In flexcoders@yahoogroups.com, ryanlevere [EMAIL PROTECTED] wrote: Thanks in advance to anyone who can help. Just posted on FlashCoders... these guys have something that help you a lot. http://www.flashextensions.com/products/flashinterface.php

RE: [flexcoders] FDS not receiving calls asynchronously

2006-11-19 Thread Seth Hodgson
If you want asynchronous processing on the backend for your requests I'd recommend taking a look at the JMS adapter. Rather than making a RemoteObject call you'd send your requests to the server using a Producer and listen for async results using a Consumer. You'd want to use an inbound request

Re: [flexcoders] Looping creating objects, how do you do this: var myRadio[b+i]:RadioButton = new RadioButton();

2006-11-19 Thread slangeberg
Not sure what your requirements are, but I usually just track dynamic objects in an array:** var radioButtons:Array = new Array(); for ( var i:int = 0; inumBtns; i++ ) { var rb:RadioButton = new RadioButton(); rb.property = value; . . radioButtons.push( rb ); } On 11/17/06, dj [EMAIL

[flexcoders] Remote object not working when called from delegate

2006-11-19 Thread malik_robinson
Hi, I am trying to find out why this remote object does not return successfully using Cairngorm. I can use the same remote object in an application just by itself. The remote object invokes a CFC method and populates a datagrid just fine, but when I am trying to use a delegate to call this

[flexcoders] resize effect with AS

2006-11-19 Thread Diego Guebel
Hi there, I'm trying to add an event listener when the effect ends. Something like this in mxml: mx:Resize id=expand target={img} widthTo=100 heightTo=200 duration=1 effectEnd=endEffectHandler();/ but in AS, I have this function so far: private function resize(w:Number,

Re: [flexcoders] Looping creating objects, how do you do this: var myRadio[b+i]:RadioButton = new RadioButton();

2006-11-19 Thread Michael Schmalle
Another thing could be; myRadio[b+i]:RadioButton = new RadioButton(); if you are trying to name them var button:RadioButton = new RadioButton(); myRadio.name = b + i; then if you are trying to query the button by name; var button:RadioButton = RadioButton(myParent.getChildByName(b + i));

[flexcoders] FLEX BUG: Effects don't work in custom Panel-derived component's children

2006-11-19 Thread tombaggett
I have found what appears to be another bug in Flex 2. Effects assigned to component triggers don't work if the component is a child of an mx:Panel-derived MXML component. The following simple example demonstrates this: Compiled example http://www.tommyb.com/flex/effectbug/EffectTest.html

[flexcoders] SetStyle fonts in Actionscript - CSS

2006-11-19 Thread {reduxdj}
Hi, why can't i embed a font this way? I know this looks silly, did i miss something? Thanks, Patrick /* CSS file */ @font-face { src:url(/assets/trebucbd.ttf); fontWeight: bold; fontFamily: tres; } .myRadioText { font-family: tres; color: #0080ff;

[flexcoders] Re: Intel-Mac 9.0.28 debug plugin

2006-11-19 Thread Bjorn Schultheiss
If there is a debug player it would be nice to get it. Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark McCray Sent: Friday, 17 November 2006 11:49 PM To: flexcoders@yahoogroups.com

Re: [flexcoders] FDS2 and Linux

2006-11-19 Thread James Ward
I've had this problem too. Problem is that the installer is using it's own JVM, rather than the system one. There is some way to override this, but I can't remember how. So alternatively you can download the HP_UX version, which is actually just a jar file installer, then run: java -jar

[flexcoders] rotating label in tabbar

2006-11-19 Thread lorihutchek
does anyone know how to get the label in the tabbar to rotate. Or perhaps know when i change the direction to vertical how to get the button to rotation? I'm trying to make it look like side tabs on something i'm working on its taking forever to get this part right... Thanks! lori-

[flexcoders] SetStyle fonts in Actionscript - CSS

2006-11-19 Thread Bjorn Schultheiss
Add fontWeight to the style as well @font-face { src:url(/assets/trebucbd.ttf); fontWeight: bold; fontFamily: tres; } .myRadioText { font-family: tres; fontWeight: bold; color: #0080ff; font-size:14; } var myRadioText:Text = new Text(); myRadioText.id = myRadioText; myRadioText.styleName =

[flexcoders] Flex 1.5 - Initail progress bar stuck

2006-11-19 Thread Robert Brueckmann
We have a Flex 1.5 app our clients use. 99.% of the time when our sales people go on a demo for a potential client, the app loads just fine. That .0001% of the time, the initial progress bar gets to a certain percentage and just sticks. In one situation, having the sales person demoing use