RE: [flexcoders] FLV file reader

2007-06-15 Thread Dirk Eismann
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer Sent: Friday, June 15, 2007 6:33 AM To: flexcoders@yahoogroups.com; [EMAIL PROTECTED] Subject: [flexcoders] FLV file reader Hi Anyone know some AS3 classes for reading

RE: [flexcoders] FLV file reader

2007-06-15 Thread Dirk Eismann
Something like this? http://www.richapps.de/?p=48 Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer Sent: Friday, June 15, 2007 6:33 AM To: flexcoders@yahoogroups.com; [EMAIL PROTECTED] Subject: [flexcoders] FLV file

[flexcoders] Is Microphone.getMicrophone() broken in AS3 / FP9?

2007-06-15 Thread Dirk Eismann
Anyone here with experience when using Microphone.getMicrophone() in Flex / AS3 when multiple Microphones are attached to the system? In contrast to Camera.getCamera() (which always gives a reference to the currently selected Camera as specified by th euser in the FP Settings Panel)

RE: [flexcoders] How to assign chart series itemRenderer in AS3?

2007-05-11 Thread Dirk Eismann
Btw, why there is this inconsistency that in the Charts API itemRenderer is a Style whereas in the rest of the Flex 2 framework it is a property? Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ely Greenfield Sent:

RE: [flexcoders] bindSetter on an ArrayCollection

2007-05-10 Thread Dirk Eismann
if you have a reference to the ArrayCollection you can do collection.addEventListener(CollectionEvent.COLLECTION_CHANGE, collectionChange); collectionChange will then get notified for different kinds of updates happening on the collection instance (see mx.events.CollectionEventKind for the

RE: [flexcoders] How to display Chart datatip at a specific data point ?

2007-05-04 Thread Dirk Eismann
Take a look at my reply to your original message - maybe this works for you. Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Claude Hussenet Sent: Tuesday, May 01, 2007 10:32 PM To:

RE: [flexcoders] How to display Chart datatip at a specific data point ?

2007-05-03 Thread Dirk Eismann
Not quite straightforward, but it still works: // chart is the chart you want to display the datatip on // xValue and yValue are the item's values on the x and y axis var p:Point = chart.dataToLocal(xValue, yValue); var m:MouseEvent = new MouseEvent(MouseEvent.MOUSE_OVER, true, false,

RE: [flexcoders] FF and Java sessions

2007-04-27 Thread Dirk Eismann
Hmm... we use the same technique here and it works (it worked in IE anyway, this was needed for Firefox only). Not sure if this is relevant but we use Tomcat 5.5.20 Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Sandbox errors in Flex when using BitmapData.draw();

2007-04-23 Thread Dirk Eismann
If you're using mx.controls.SWFLoader or mx.controls.Image to grab the remote files you can try to set the trustContent property to true. See: http://livedocs.adobe.com/flex/201/langref/mx/controls/SWFLoader.html#trustContent Dirk. From:

RE: [flexcoders] FDS

2007-04-16 Thread Dirk Eismann
Yes - if that could be an optional mode that would be very useful IMHO. Dirk. It sounds like this is the kind of approach you are looking for? Does anyone else think that would be useful? Jeff

RE: [flexcoders] Inline MXML event handlers - weak reference?

2007-04-16 Thread Dirk Eismann
Alex, I think your explanation should find it's way into the product's documentation. I often wondered if inline event handlers are good or bad in terms of reference management when it comes to dynamically removing / adding MXML based components. Dirk.

RE: [flexcoders] Dynamically retrieving the input data of a UIComponent.

2007-04-10 Thread Dirk Eismann
Most (if not all) of the UI controls you mention implement the mx.core.IDataRenderer interface, so you could just do var currentData:Object = IDataRenderer(uiControl).data; Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] FDS Messaging error

2007-04-10 Thread Dirk Eismann
Make sure to restart FDS after you modify any of the config files. Also, if you're using Flex Builder 2 then it's always a good idea to do a Project -- Clean after modifying the FDS config files. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] Client IP Address

2007-03-22 Thread Dirk Eismann
Are you using Flex Data Services? If so you can get the ServletContext from with your RemoteObject like this: String ipAddress = FlexContext.getHttpRequest().getRemoteAddr(); Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] Client IP Address

2007-03-22 Thread Dirk Eismann
sorry you can get the ip address I mean :) Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann Sent: Thursday, March 22, 2007 10:54 AM To: flexcoders@yahoogroups.com Subject: RE

RE: [flexcoders] Continuations support? or smart sleep()?

2007-02-14 Thread Dirk Eismann
callMethod(callArgs) should be callMethod.apply(null, callArgs) instead I believe. Otherwise it would just pass the rest Array to the function and not the single parameters contained within the rest Array. Dirk. From:

RE: [flexcoders] Re: Coldfusion Version for FDS Data Push feature

2007-02-14 Thread Dirk Eismann
Hi Jim, I want to do data synchronization, not messaging, and I can do that with CF7.0.2 Standard Edition and Flex Data Services Express via Data Management Services. ok - then you should be fine. Aside from some advanced features like using the DataServiceTransaction class to manually

[flexcoders] FDS: Using DSDstClientId to send AsyncMessages to specific client

2007-02-08 Thread Dirk Eismann
I try to send an AsyncMessage from a server side class to a specific client. What I came up with so far is to use the routeMessageToService() method of the MessageBroker class and set the DESTINATION_CLIENT_ID_HEADER header of the AsyncMessage to the clientId of the connected Consumer. This

RE: [flexcoders] FDS: Using DSDstClientId to send AsyncMessages to specific client

2007-02-08 Thread Dirk Eismann
Nevermind, the MessageService pushMessageToClients(Set subscriberIds, Message message, boolean evalSelector) method does the job. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann Sent: Thursday, February 08, 2007 9:17 AM

[flexcoders] Test - pls ignore

2007-01-31 Thread Dirk Eismann
test

RE: [flexcoders] Re: Setting UIComponent.errorString creates a black border around the component

2007-01-24 Thread Dirk Eismann
It still does not work as expected. I just debugged UIComponent and it turns out that the bug is in the setBorderColorForErrorString() method. The black border appeasr when the origBorderColor is NaN. So the fix would be something like if (isNaN(origBorderColor)) origBorderColor =

RE: [flexcoders] Re: Setting UIComponent.errorString creates a black border around the component

2007-01-24 Thread Dirk Eismann
FYI, I just succeeded in fixing this bug by modifying UIComponent code. To get it compiled into the SWF I added the Flex SDK 2/frameworks/source folder to the build path. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann

RE: [flexcoders] Re: Setting UIComponent.errorString creates a black border around the component

2007-01-23 Thread Dirk Eismann
Good catch! I experienced exactly the same problem - thanks for the workaround! Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Harald Dehn Sent: Tuesday, January 23, 2007 9:10 PM To:

RE: [flexcoders] Globally Define Custom validation Messages

2007-01-19 Thread Dirk Eismann
All messages are externalized to .properties files and can be easily localized. Check the Flex SDK install directory for the locale/en_US folder. You'll have to create your localized / customized .properties files and compile your application against the locale. Dirk. -Original Message-

RE: [flexcoders] Cairngorm support for Flex 2.0.1 modules?

2007-01-16 Thread Dirk Eismann
Another use case would be to replace certain parts of the Cairngorm infrastructure (ServiceLocator instance, specific Delegate) depending on e.g. a dynamically loaded configuration file. This way e.g. Delegates could easily be replaced by just pointing to another Module. Dirk.

RE: [flexcoders] Re: Cairngorm support for Flex 2.0.1 modules?

2007-01-16 Thread Dirk Eismann
I think the two actions Derrick mentions - to use BindingUtils to remove {} bindings and to use weak reference listeners where possible - are the two key techniques to limit memory / GC issues. This is not only something to watch out for when loading/unloading Modules but also when components

[flexcoders] FDS 2.0.1 API Java Docs?

2007-01-12 Thread Dirk Eismann
Have the JavaDocs for the server side FDS API been updated for 2.0.1? If so, where can we download it from? Dirk.

RE: [flexcoders] flex2ant

2007-01-09 Thread Dirk Eismann
You might want to use the eclipse.incrementalBuild Task that comes with Eclipse. This allows to invoke the incremental Flex Builder compiler from within Ant. This gives you the same compilation performance as using Build Automatically plus adds all the nice stuff you can achieve with Ant :-)

RE: [flexcoders] FlexBuilder 2.0.1 - Ctrl-Tab broken?

2007-01-09 Thread Dirk Eismann
Yes - I also noticed it. You'll have to add this shortcut by yourself. In Eclipse / FB2, go to Window -- Preferences -- General -- Keys -- Modify Scheme: Default Category: Window Name: Next View Assignments: When: In Windows Key Sequence: Ctrl + Tab Hope this helps, Dirk. -Original

RE: [flexcoders] strategy for Composite component as itemRenderer in DataGrid or List

2006-12-21 Thread Dirk Eismann
I've used 1) and 2) before and both works fine for me. 1) is a bit tricky some times as you have to take care when to access listData because it is not necessarily there during the whole lifecycle of your item renderer. 2) is neat, especially when you use parameterized ItemRenderers on those

RE: [flexcoders] Cairngorm 2.1 - calling a webservive more than once

2006-12-20 Thread Dirk Eismann
Any change you're calling loadWSDL() more than once on your WebService instance? This could be the reason. Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robin Burrer Sent: Thursday, December 21, 2006 6:54 AM

[flexcoders] Unused tags in properties found?

2006-12-15 Thread Dirk Eismann
I've created a simple Java class which implements flex.messaging.FlexConfigurable. This works nicely and the initialize methid gets invoked as expected. However, if I place additional properties inside the remoting-config.xml for this RemoteObject the instantiation fails and I end up with Flex

[flexcoders] Create package-level functions in AS3?

2006-12-12 Thread Dirk Eismann
Is it possible to create custom package-level functions the same way e.g. flash.utils.getDefinitionByName is implemented? The flash.utils package defines several functions that can be imported directly - I'd like to implement some utility functions by using the same approach but I end up getting

RE: [flexcoders] Create package-level functions in AS3?

2006-12-12 Thread Dirk Eismann
in the /foo directory. It can then be imported like this: import foo.bar; My compiler was just a bit mixed up but now it works as expected. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann Sent: Tuesday, December 12

RE: [flexcoders] Re: Best practice: string tables

2006-12-08 Thread Dirk Eismann
Not out of the box but you can quite easily build your own properties file loader by e.g. builing it on top of URLLoader or URLStream. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of zenwarden Sent: Friday, December 08, 2006 4:24 PM

[flexcoders] Remote Objects: No support for inner class serialization?

2006-12-08 Thread Dirk Eismann
Seems as if public inner classes are not recognized by the Java-to-AMF serializer in FDS, is this correct? i.e. if a class RecordSet uses an inner class RecordSetVO which is used as a data type for the value objects that are transported via AMF then this type info is not set correctly. Dirk.

RE: [flexcoders] backgroundGradientColors on something other than Application

2006-12-08 Thread Dirk Eismann
Try this one: http://www.richinternet.de/blog/index.cfm?entry=ADD4FDD1-9B48-BFBC-2A70F3C57EBC6892 Dirk. -Ursprüngliche Nachricht- Von: flexcoders@yahoogroups.com im Auftrag von Matt Maher Gesendet: Fr 08.12.2006 17:07 An: flexcoders@yahoogroups.com Betreff: [flexcoders]

RE: [flexcoders] ColdFusion and Flex Integration - up to 10x gain, avoid cf object creation

2006-11-23 Thread Dirk Eismann
Yes, I also noticed this. I made a test where a cfloop is done on 2000 records and had three setups: 1) cfloop / createObject on a CFC Bean / add this CFC instance to an Array 2) cfloop / createObject on a JavaBean (same as Erik mentions) / add this bean to an Array 3) cloop / delegate object

RE: [flexcoders] .swf Caching on CFMX 7/Flex 1.5 Hybrid

2006-11-16 Thread Dirk Eismann
Seems as if the internal Flex 1.5 server that comes with CF to render CFFORMS is the reason why this happens. Maybe this does help you: http://www.richinternet.de/blog/index.cfm?entry=1FFECC8A-C384-9156-8F61C 35319911A23 Dirk. -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: LinearGradient outside charts

2006-11-03 Thread Dirk Eismann
Hi, try extending mx.skins.halo.HaloBorder and do the gradient drawing the updateDisplayList method. Then, assign this class as the border-skin for your component. This way you can use this gradient on any component that supports border styles. border-skin:

RE: [flexcoders] Re: LinearGradient outside charts

2006-11-03 Thread Dirk Eismann
Hi, I just uploaded a litte sample (source code included) http://www.richinternet.de/blog/index.cfm?entry=ADD4FDD1-9B48-BFBC-2A70F 3C57EBC6892 Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Cristian Pop Sent: Friday, November 03,

RE: [flexcoders] Amazon S3 and http SOAP faults / REST problems.

2006-10-31 Thread Dirk Eismann
IMHO, this is an issue with how the hosting browser passes the HTTP header payload to the Flash Player - you'll either need a proxy or some other server side stuff (a servlet or ISAPI filter would also work I think) Dirk. -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Accordion initialization problem

2006-10-31 Thread Dirk Eismann
You probably need to look at creationPolicy specifically all. oh oh... infinite loop :) Dirk. -- 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 Links * To

RE: [Junk E-Mail - MED] Re: [flexcoders] Re: A DataGrid with selectable *cells*

2006-10-30 Thread Dirk Eismann
Him Tom, as long as your item renderer implements the IDropInListItemRenderer interface you can get the columnIndex and rowIndex from the listData property. If an item renderer lives inside a DataGrid, listData is of type mx.controls.dataGridClasses.DataGridListData - so everything should be

[flexcoders] Question concerning flex.messaging.FlexFactory

2006-10-26 Thread Dirk Eismann
Short question: when implementing the FlexFactory interface in a custom factory class, how does the lookup() work at runtime? Most importantly: how often does it gets called by FDS? Only once (depending on the scope setting) or for every method invocation on e.g. the RemoteObject instance? I

RE: [flexcoders] MXML ItemRenderer and dataTip

2006-10-26 Thread Dirk Eismann
Hi, dataTips don't work when you use a custom item renderer. Your best bet would be to set the toolTip property on your item renderer class. Dirk. Von: flexcoders@yahoogroups.com im Auftrag von Sönke Rohde Gesendet: Do 26.10.2006 20:41 An:

RE: [flexcoders] HTTPService url problem

2006-10-25 Thread Dirk Eismann
use amp; instead of in the URL (you have to escape this character in MXML) Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jbbec_fr Sent: Wednesday, October 25, 2006 3:17 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] Questions about RTMP ports and channel definitions

2006-10-24 Thread Dirk Eismann
Hi, And while we're at it, is there a range of port numbers that I should be using for the RTMP assignments? The flex template app is at 2038. The samples app is at 2037. How high and low can I go? BTW, my TCP/IP Network Administration book (which I obviously haven't fully absorbed :-)

RE: [flexcoders] ATTN: Adobe Re: Does FDS project have to compile on the server?

2006-10-24 Thread Dirk Eismann
I also encountered this in a project that uses RemoteObject. I always ended up getting error that /messagebroker/amf wasnot found. After looking at the runtime channel information I realized that the context root was not included in the endpoint URL (e.g. instead of

RE: [flexcoders] FlexBuilder Flintstone

2006-10-12 Thread Dirk Eismann
Hi Ralf, last time I checked the only publicly available information/documentation was the Code Model / Design Model API for Flex Builder 2. It in the Help System of FB2 (Help Help Contents Adobe Flex Builder 2 Extensibility) I agree that we need more documentation if Adobe wants

RE: [flexcoders] [Flex2] Error adding child to a ViewStack

2006-10-10 Thread Dirk Eismann
Hi Thomas, this.customerViewStack.selectedChild += 1; You try to add 1 to a complex object (selectedChild is a reference to a child of the ViewStack, *not* an numeric value!). Try this: this.customerViewStack.selectedIndex += 1; this.customerViewStack.selectedIndex =

RE: [flexcoders] Relative paths in IDE compiler args

2006-10-09 Thread Dirk Eismann
yep, same works for -source-path (and probably all other compiler flags as well) Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Spitzer Sent: Monday, October 09, 2006 8:42 AM To: flexcoders@yahoogroups.com Subject: Re:

RE: [flexcoders] Gradient Fill from LEFT to RIGHT

2006-10-09 Thread Dirk Eismann
You would have to implement this on your own. A starting point would be a custom AS class extending mx.skins.halo.HaloBorder. Inside override the updateDisplayList() method and draw the gradient yourself. The HaloBorder class provides helper functions to draw horizontal gradients by calling

RE: [flexcoders] var in Loop

2006-10-09 Thread Dirk Eismann
No, this does not work. for var in loops only work on dynamically attached properties (i.e. your class is dynamic or you loop over the props of an untyped Object instance) To introspect a typed class instance use describeType(), it returns an e4x XML structure that describes the type (hmm,

RE: [flexcoders] Re: Architecting a large, modular Flex application

2006-09-25 Thread Dirk Eismann
76k? That seems quite large - mine is 9290 bytes only. You may want to add the rpc.swc and utilities.swc to the external library path as the two SWCs add another bunch of dependencies to the resulting SWC file. Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

RE: [flexcoders] Re: Managed Attribute for Actionscript class objects

2006-09-25 Thread Dirk Eismann
Hi, [Managed] is only useful if you use the Data Management feature of the Flex Data Services (FDS). If you just use RemoteObject to connect to your Java side, then [RemoteClass] should be enough (maybe you may want to add [Bindable] to the class body or some of the public properties). [Managed]

[flexcoders] Calling fill() on the same collection multiple times

2006-09-01 Thread Dirk Eismann
Hi, simple question - and hopefully a simple answer :) Imagine I have an ArrayCollection searchResult which is used to display results returned from a fill() method. This fill() method gets invoked with different additional arguments (the search query, additional filter settinsg etc.). What

RE: [flexcoders] Re: Anyone actually able to save data from flex

2006-08-31 Thread Dirk Eismann
It works fine for me - if you receive stream errors then this may be a security issue or an issue with the server not being able to handle the result correctly. Instead of sending a XML structure, have you tried POSTing simple String values? Does this work for you? Dirk. -Original

RE: [flexcoders] Embedding fonts at runtime

2006-08-30 Thread Dirk Eismann
Yes, this is possible: [Embed(source=Arial.ttf, fontName=myArial, unicodeRange=U+0041-U+005A )] public var myClass:Class; Dirk. Von: flexcoders@yahoogroups.com im Auftrag von Daniel Wabyick Gesendet: Mi 30.08.2006 18:58 An: flexcoders@yahoogroups.com

RE: [flexcoders] approach question: how to handle lookup table data?

2006-08-29 Thread Dirk Eismann
Hmm, I would probably go this route - create a destination level - the identity of this destination is levelID - create an Assembler for this destination (e.g. LevelAssembler) - create a destination person - the identity of this destination is personID - it has another property level which is

RE: [flexcoders] FDMS: check, if an item exists on the client?

2006-08-28 Thread Dirk Eismann
Hi Jimmy, I don't think there's a getItem() method on ArrayCollection. There's only getItemAt() but that's useless as I don't have the index of the item. Actually, all I know about the item is the unique ID (i.e. the PK from the DB table) so what I need is something like

RE: [flexcoders] FDMS: check, if an item exists on the client?

2006-08-28 Thread Dirk Eismann
FYI: if an ArrayCollection is managed by a DataService, then the list property of the ArrayCollection is of type mx.data.DataList. This DataListholdsa localItems Array which seems to track the references to the items available in this list. As the items are [Managed] (implement

[flexcoders] FDMS: check, if an item exists on the client?

2006-08-25 Thread Dirk Eismann
Is there any way in FDMS to get an item without really going to the server if it's on the client already? I found that calling dataService.getItem(uid) always goes to the server, even if the item in question is available on the client. This is unnecessary overhead IMHO if the item is available

RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Dirk Eismann
Don't have the correct syntax in front of me, but it should also be noted that by calling System.loadPolicyFile(http://www.foo.com/some/nested/folder/crossdomain.xml) or somthing similar, Flash Player can load crossdomain files that do not live in the root of the server. Also, by using

RE: [flexcoders] Display rendered HTML in Flex?

2006-08-24 Thread Dirk Eismann
Hi, you may want to try this one: http://www.deitte.com/archives/2006/08/finally_updated.htm Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of daniel_croona Sent: Thursday, August 24, 2006 11:37 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Cairngorm on Labs

2006-08-21 Thread Dirk Eismann
Hi, some thoughts: 1) update the manifest file and add all Cairngorm classes to it 2) add the DestinationLocators provided by Peter Martin 3) update the library project so the SWC compiles against the Flex 2 framework without linking it (i.e. set the link type of the external Flex 2 SWCs to

RE: [flexcoders] ASDoc now available on Labs

2006-08-15 Thread Dirk Eismann
Yeah! Thanks! Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Monday, August 14, 2006 7:54 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] ASDoc now available on Labs

[flexcoders] Does ComboBox support paging?

2006-08-09 Thread Dirk Eismann
I use a ArrayCollection that is managed by a DataService, the destination uses paging. Paging works fine when I use this ArrayCollection as the dataProvider for a DataGrid. However, if I assign it to a ComboBox then only n items get displayed where n is the pageSize of the destination. So - does

RE: [flexcoders] Flex dataservices: fill vs asynctoken

2006-08-09 Thread Dirk Eismann
Asynchronous methods like fill() return an AsyncToken instance which you can use to add custom data to it (i.e. mark that ypu invoked a fill operation). In the result handling function the AsyncToken is available again, so you can add additional logic to your result handler, e.g. private

RE: [flexcoders] cant find the finger cursor that appears over some buttons

2006-08-09 Thread Dirk Eismann
Try: mx:Button useHandCursor=true buttonMode=true mouseChildren=false label=Click me! / Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank williams Sent: Wednesday, August 09, 2006 3:01 PM To: flexcoders@yahoogroups.com

[flexcoders] Does ComboBox support paging?

2006-08-08 Thread Dirk Eismann
I use a paged ArrayCollection that is managed by a DataService. Paging works fine when I use this ArrayCollection as the dataProvider for a DataGrid. However, if I assign it to a ComboBox then only n items get displayed where n is the pageSize of the destination. Do I have to implement my own

[flexcoders] Set resubscribeAttempts on DataService?

2006-08-01 Thread Dirk Eismann
Is there any way to set the resubscribeAttempts of the underlying Consumer instance used by a DataService? In the case where the remote destination endpoint is not accessible (i.e. network or server down) an attempt to connect to the destination by invoking a fill() operation neither fires a

RE: [flexcoders] Get the reference of a DataGrid cell in a itemRenderer

2006-07-26 Thread Dirk Eismann
Na Kollege :) You probably only have to cast listOwner to DataGrid to make it work, i.e. DataGrid(listData.owner).indexToItemRenderer(1); Cheers, Dirk. Von: flexcoders@yahoogroups.com im Auftrag von Artur Kordowski Gesendet: Mi 26.07.2006 11:56 An:

[flexcoders] FlashPlayerTrust files don't get updated by Flex Builder 2

2006-07-21 Thread Dirk Eismann
Has anyone experienced that when running a SWF from Flex Builder 2 which accesses a local file (i.e. pull XML file through HTTPService) sometimes Security Sandbox violations happen and sometimes not? On my machine it all boils down to the fact that the flexbuilder_plugin.cfg and

[flexcoders] TODO/FIXME extension for Flex Builder 2

2006-07-21 Thread Dirk Eismann
I finally found some time to finish the TODO/FIXME extension for Flex Builder 2 - thanks to Jean-Luc ;) Please go ahead and give it a try: http://www.richinternet.de/blog/index.cfm?entry=911D4B57-0F0D-5A73-AF6F4 D4D04099757 Dirk. Yahoo! Groups Sponsor

RE: [flexcoders] TODO/FIXME extension for Flex Builder 2

2006-07-21 Thread Dirk Eismann
Watch out for line breaks in the URL! Otherwise just go to http://www.richinternet.de/blog and grab it there. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann Sent: Friday, July 21, 2006 2:46 PM To: flexcoders

RE: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Dirk Eismann
Actually, you can subscribe without having an yahoo ID: http://www.flexcoders.org/index.html Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pan TroglodytesSent: Friday, July 21, 2006 4:48 PMTo: flexcoders@yahoogroups.comSubject: Re:

RE: [flexcoders] Re: Flex and CF

2006-07-20 Thread Dirk Eismann
Unfortunately not - if your authenticated against FDS (or a service behind FDS by using setRemoteCredentials()) you're not automatically authenticated against the RPC destination as this is running in a different process and vice versa. You'll have to set the same credentials on both RPC and DS

RE: [flexcoders] Flex 2.0 - Passing Custom Java Objects to Flex

2006-07-20 Thread Dirk Eismann
Hi Josh, _remoteClass has been deprecated since Flex 1.5 To create a mapping between AS3 and Java classes in Flex 2you have to use the [RemoteClass(alias=foo.bar.Classname)] metadata tag on your AS3 class. Check the Serializing data chapter (p. 1089) in the flex2_devguide.pdf for morre

RE: [flexcoders] Class instance inheritance check

2006-07-19 Thread Dirk Eismann
describeType tends to be slow the more complex your class and inheritance chain gets. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ralf Bokelberg Sent: Wednesday, July 19, 2006 12:29 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] initial loader color/style

2006-07-19 Thread Dirk Eismann
You'll have to create your own loader by subclassing mx.preloaders.DownloadProgressBar and then point the preloader property of your Application class to your subclass. Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank

RE: [flexcoders] TODO and FIXME in Builder ?

2006-07-19 Thread Dirk Eismann
No, it's not included in Flex Builder 2. I started developing a plugin extension for Flex Builder 2 that adds this kind of functionality to both the MXML and AS editors a while ago but it'sonly 50% finished yet. If I find a way to get rid of the"A-day-only-has-24-hours" problem then I

RE: [flexcoders] Are there any good flash fonts that will work well in flex

2006-07-18 Thread Dirk Eismann
You may want to take a look at FlashType fonts. These can be used in Flex 2 and display much better than normal fonts. The Flex 2 documentation has a chapter on how to use FlashType. Dirk. Von: flexcoders@yahoogroups.com im Auftrag von hank williams

RE: [flexcoders] How to detect whether DisplayObject is popup or not?

2006-07-17 Thread Dirk Eismann
In Flex 2 this property is called isPopUp and is defined in mx.core.UIComponent Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov Sent: Monday, July 17, 2006 10:33 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Bind label to class attributes

2006-07-17 Thread Dirk Eismann
You'll have to either make the name property of your FtpUser class [Bindable] as well or set [Bindable] on the FtpUser class level. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonas Windey Sent: Monday, July 17, 2006 10:07 AM To:

RE: [flexcoders] Declaring webservices??

2006-07-17 Thread Dirk Eismann
It's not out-of-the-box in Flex 2 but you can easily write a singleton-alike class that stores the references to your WebService instances and access it from anywhere in your application. The Cairngorm framework uses this approach for its ServiceLocator class. Dirk. From:

RE: [flexcoders] How to detect whether DisplayObject is popup or not?

2006-07-17 Thread Dirk Eismann
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How to detect whether DisplayObject is popup or not? Isn't it, that popups are not children of application? Maybe you can check this? Cheers, Ralf. On 7/17/06, Dirk Eismann [EMAIL PROTECTED] wrote: I see what you mean

RE: [flexcoders] Re: What is the difference between versions of Flex Data Services

2006-06-29 Thread Dirk Eismann
Last thing I heard was that Dual-Core is regarded 1 CPU. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jwc_wensan Sent: Thursday, June 29, 2006 11:44 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: What is the

[flexcoders] Announcing Flexforum.de

2006-06-29 Thread Dirk Eismann
Hey fellow German flexcoders, after Flex 2 has hit the streets we're pleased to announce the launch of Flexforum.de (http://www.flexforum.de) - our contribution to the Flex community and especially to the German speaking folks. Flexforum is not (and will never be) a counterpart to flexcoders but

RE: [flexcoders] Duplicate variable definition

2006-06-28 Thread Dirk Eismann
yes. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonas WindeySent: Wednesday, June 28, 2006 11:29 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Duplicate variable definition Hi, In flex 2 b3, it was allowed to do

RE: [flexcoders] Server Identity for FDS 2 in ColdFusion admin

2006-06-28 Thread Dirk Eismann
It's the identity/sub node of the properties/ node of a destination. Check the data-management-config.xml file inside your fds2/resources/config folder, at the very bottom there are three examples how to configure a CF destination and the first one ("cfcontact") lists this option, e.g.

RE: [flexcoders] FlexBuilder refactoring capabilities

2006-06-28 Thread Dirk Eismann
Not yet. But that's the good thing about Flex Builder 2 being based on Eclipse: we can expect *lots* of neat additions/plugins/fragments for FB2 in the near future :) Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Thomas Rühl

RE: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-28 Thread Dirk Eismann
The free one has no concurrent user limit - it's all up to your 1 CPU and how much it can handle. If you run a beefy app (not just using proxying but Data Management Services and Messaging etc.) then I bet it will die before you reach the 100 :) Dirk. -Original Message- From:

RE: [flexcoders] Generate sound

2006-06-28 Thread Dirk Eismann
Ahh, that hidden Metadata [FMSynthesis], eh? Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Roger GonzalezSent: Wednesday, June 28, 2006 10:30 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Generate sound Yes, but not

RE: [flexcoders] Re: About dates sent to a webservice. Is this correct?

2006-06-26 Thread Dirk Eismann
Yes - I think it's an issue with 1.1 In our last Flex 2/.NET 2 application we were able to correctly pass date objects between Flex and .NET The only thing you have to watchout for is to make sure that the DateTime object your return from .NET has its Kind set to UTC - if so, it should work

RE: [flexcoders] Access SOAP fault code

2006-06-20 Thread Dirk Eismann
If you can get hold of the pure HTTP response in .NET (which I doubt) then you could set the HTTP status code to 200. This way the exception will be handled correctly by Flash Player (and that's how the Flex WS proxy handle this, too) Another way would be to use servlet/ISAPI filters for

RE: [flexcoders] Re: Dates WebServices .NET (redux)

2006-06-18 Thread Dirk Eismann
Kelly, have you read my suggestions? We also had Date conversion issues but where able to resolve them (see my reply from Friday) Dirk. Yahoo! Groups Sponsor ~-- Check out the new improvements in Yahoo! Groups email.

RE: [flexcoders] Re: Dates WebServices .NET (redux)

2006-06-16 Thread Dirk Eismann
We had the same problems with a Flex 2/.NET 2 application. We where able to fix it like this: 1) From Flex 2, just pass Date objects (don't convert them, they'll be send as UTC Dates) 2) in .NET check the incoming DateTime object for it Kind. If it's send from Flex, it will be UTC 3) in .NET do

RE: [flexcoders] Re: Dates WebServices .NET (redux)

2006-06-16 Thread Dirk Eismann
Well, the thing is that any Date that gets send to a WebService by Flex will be passed in a string format that does include timezone information (in Flash/Flex, you cannot have Date objects without any time information - even if you set hours, minutes, seconds to 0 the Date still carries time

RE: [flexcoders] Flex2Beta3: CF/FDS/FMS setup

2006-06-14 Thread Dirk Eismann
For audio/video chat you definitely need FMS, text-chats only can be done with FDS. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Thomas Rühl -akitogo- Sent: Wednesday, June 14, 2006 2:57 PM To: flexcoders@yahoogroups.com

  1   2   3   >