[flexcoders] unsubscribe

2006-01-27 Thread jraben
how to unsubscribe? the way written in footer doesn't work. -- 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 visit your group on the web, go to:

RE: [flexcoders] Problem with redawing tree xml content

2005-10-26 Thread jraben
Wow thanks. This works. Didn't know I have to do it in the result handler. On 20 Oct 2005 at 12:37, Tracy Spratt wrote: Try re-assigning the dataProvider to the tree in a result handler function. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Strange behaviour when using a label func in barchart

2005-10-17 Thread jraben
Hello, I tried this of course, but it results in two %-signs... Regards, On 11 Oct 2005 at 8:21, Matt Chotin wrote: This is because you™re modifying the mystring value yourself, you shouldn™t be doing += which I believe acts like append in AS2, instead you should simply return mystring

RE: [flexcoders] Strange behaviour by tree

2005-10-17 Thread jraben
Hello, here are the code snippets: -- mx:Script ![CDATA[ function selectRange() { ... rangesid = ranges.selectedItem.id; treeService.url = rangesid + .xml; treeService.send(); } function addTreePart(event) { ... } ]] /mx:Script

RE: [flexcoders] Embedding with GET variables

2005-10-07 Thread jraben
On 6 Oct 2005 at 11:56, Tracy Spratt wrote: If you use mx:Image, or mx:Loader to load the swf, you can access its public properties and methods through the content property. mx:Image id=imgLeaf source / Then in script: imgLeaf.content.color = whatever I recall reading that

Re: [flexcoders] images being cached w/ mx:image

2005-10-05 Thread jraben
Maybe its the flash plugin cache. Right mouse and set all to 0. On 4 Oct 2005 at 16:27, Raymond Camden wrote: I am calling a custom control that makes use of mx:image. When I update the jpg file on the file system, it isn't reflected in Flex, even after a restart. Any ideas? --