[flexcoders] Flex2 alpha1 to beta1 : ColdFusion connectivity type mapping bug

2006-02-06 Thread Benoit Hediard
/ !--- type=com.mycompany.myapp.service.SomeRequestVO --- ... Is it a known bug? Benoit Hediard PS: is there a bug report form for the beta program? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com

[flexcoders] Flex2 : icon in menu-based controls

2006-02-05 Thread Benoit Hediard
=MenuItem A icon=addIcon But it generates a runtime error : Variable addIcon is not defined Is it a known issue? Benoit Hediard -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders

[flexcoders] Flex2 alpha1 to beta1 : compiler errors when referencing static constants

2006-02-05 Thread Benoit Hediard
to reproduce this issue, has anyone else faced this problem? It is a known issue? Thanks. Benoit Hediard -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups

RE: [flexcoders] Re: Returning Object Instances from ColdFusion

2005-11-20 Thread Benoit Hediard
. private static var DEP_LINK:User = new User(); For more information on this problem: http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=584; threadid=1069666 Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de

RE: [flexcoders] Re: Flex 2:Can you center a popup from the inside?

2005-11-04 Thread Benoit Hediard
Apparently, this is a known bug: http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=584; threadid=1072386 Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Greg Johnson Envoyé : vendredi 4 novembre 2005 14:34 À

RE: [flexcoders] Re: FlexBuilder 2.0 - Network Monitor

2005-11-01 Thread Benoit Hediard
If you're using the ColdFusion Adapter and RemoteObject/AMF, the default configuration of flex-services.xml will log the serialization/deserialization of all AMF packets in the default "out" log (in the standalone installation, c:/CFusionMX7/runtime/logs/coldfusion-out.log

RE: Re: [flexcoders] Implementing ModelLocator pattern in AS3/Flex2

2005-10-25 Thread Benoit Hediard
Script![CDATA[import TestLocator;public var model:TestLocator = TestLocator.getInstance();private function onChangeClick():Void {model.someProperty = 'Some other value';}]]/mx:Script mx:Label text="{model.someProperty}" / mx:Button label="Change value" click="o

RE: [flexcoders] Date class question

2005-10-25 Thread Benoit Hediard
One solution could be: var ONE_DAY:Number = 8640; // NOTE: 8640 milliseconds represents one day var someDate:Date = new Date(); someDate.setTime(someDate.getTime() + ONE_DAY*7); Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la

RE: [flexcoders] FileIO.browse() fails when called with filters

2005-10-24 Thread Benoit Hediard
Yes I've also encountered this problem. Impossible to use the fileIO.browse() with filters. When filters are passed, the browse window doesn't appear anymore. Benoit Hediard PS: Anyway, now we won't have to use the fileIO hack in Flex2 + Flash Player8.5... ;) -Message d'origine- De

RE: [flexcoders] Flash Player 8 and the trace() function

2005-10-24 Thread Benoit Hediard
Another option is the Flex Trace Panel from Dirk Eisman: http://www.richinternet.de/blog/index.cfm?mode=catcatid=9E5049B0-C4AA-DEDA-0B7D835EEE6311E4 It can be used with AS2Lib Logging API: http://www.as2lib.org/documentation/articles/as2lib_logging_api Benoit Hediard De: flexcoders

[flexcoders] Implementing ModelLocator pattern in AS3/Flex2

2005-10-21 Thread Benoit Hediard
Since it is not possible to create bindings to static properties, how do you implement the ModelLocator pattern in AS3? Benoit Hediard PS: by the way, any information on an alpha release of Cairngorm for Flex2.0? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread Benoit Hediard
I don't see the point of this licensing change. With the old licensing: Business case A- people requiring a 2CPU license could buy it for $12 000, Business case B- people requiring a 4CPU licence could buy it for $24 000, Business case C- people requiring a 4CPU license + Gold support could buy

MXML authoring with MyEclipse

2005-03-08 Thread Benoit Hediard
e default _javascript_ Editor for ".as" files to use MyEclipse _javascript_ Editor instead. So now, Ifinally have on single and greatIDE for Flex, ColdFusion (with CFEclipse) andJava development! Benoit Hediard

RE: [flexcoders] Installing Flex under a full Jrun

2005-02-07 Thread Benoit Hediard
No need to create a new server. Just create a flex folder under default server and unzip flex.war in it. Start Jrun default server. You should then be able to access mxml files. Ex. : http://localhost:8100/flex/SomeApp.mxml Benoit Hediard -Message d'origine- De : greenfishinwater

RE: [flexcoders] dynamic vbox icon

2005-02-02 Thread Benoit Hediard
); header.label = Some label 2; header.icon = DynamicAssetsManager.getInstance().getSymbol('ICON2'); } /mx:Script Good luck! Benoit Hediard -Message d'origine- De : Jos vd Laar [mailto:[EMAIL PROTECTED] Envoyé : mercredi 2 février 2005 17:28 À : flexcoders@yahoogroups.com Objet : RE: [flexcoders

How to hide/disable the divider bar?

2005-02-02 Thread Benoit Hediard
is to change the verticalGap value (set to 0 to hide the divider) but it does not work dynamically, only when set in mxml. When changingthe verticalGap value during runtime, what method must calledto redraw/resize the DividedBox? Benoit Hediard

Flex + Flashcom + debug player = browser crash

2005-02-01 Thread Benoit Hediard
confirm the activation of my webcam (LogitechQuickCam). Uninstalling the debug player and installing the current Flash player 7.0.19.0 solves the problem (webcamcan beactivated). Anyone has run successfully the app with a webcam and the debug player? Benoit Hediard

<    1   2