[flexcoders] Select item inside tree based on item id

2007-01-30 Thread jerome_cordiez
Hello, I have a Tree control, that represent a list of pages inside folders. When I save a page, I store it's id property locally before sending it to the server, which returns to me the updated list of pages, that I use to refresh my tree's dataprovider. Now, what i am trying to do, is using

[flexcoders] Re: Module subclass issue

2007-01-26 Thread jerome_cordiez
.) Dump out a link-report for each of the things that you're compiling and ensure that the interface is defined where you expect. -rg From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jerome_cordiez Sent: Tuesday, January

[flexcoders] Module subclass issue

2007-01-23 Thread jerome_cordiez
Hello, I finally decided to port an existing development towards the new Modules architecture, and i am facing a pretty tough issue here. I have a bunch of modules, that all extend BlockModule, which is a Module subclass that itself implements the IBlockModule interface. BlockModule and

[flexcoders] CSSStyleDeclaration to TextFormat?

2007-01-22 Thread jerome_cordiez
Hello all, is there a way we can elegantly convert CSSStyleDeclaration loaded via loadStyleDeclarations() to TextFormat or StyleSheet instances, for use with a flash textfield (ie not a component)? thanks a lot for your help, best regards, J.

[flexcoders] Re: player 9 security, crossdomain, permissions, local/network files, etc

2007-01-22 Thread jerome_cordiez
2007 20:13, jerome_cordiez wrote: I really don't have any clue of how to solve this. When deploying, everything will be on the same server, so i guess The obvious* solution is to fake things up in your dev. environment so it is a better match for live. This will reap benefits down the line

[flexcoders] Re: player 9 security, crossdomain, permissions, local/network files, etc

2007-01-18 Thread jerome_cordiez
of how to get around these pretty funky limitations, i'd be more than willing to hear it :) cheers, J. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 17 January 2007 15:39, jerome_cordiez wrote: Basically, in my case, I have a main SWF application

[flexcoders] player 9 security, crossdomain, permissions, local/network files, etc

2007-01-17 Thread jerome_cordiez
Hi all, being a long time flash user, but pretty new to flex and more generally as3/player 9 features, I am having a pretty hard time working out the in and outs of the new security features of fp9... The docs are pretty exhaustive (51 pages pdf!), but pretty much very difficult to read imho,

[flexcoders] Loading assets with inheritance issue ** UPDATE**

2007-01-16 Thread jerome_cordiez
... and I thought I was done with that issue :)... It just popped back again today during development. Let me recap what happened : I have a shell application, that loads at runtime other swfs that contain classes which all extend and implement the same superclass and interface. So far,

[flexcoders] Prevent canvas/container from resizing to content?

2007-01-08 Thread jerome_cordiez
Hello, well, the question is in the title^^... Is it possible to fix a canvas size so that it **doesn't** resize to its content? cheers, J.

[flexcoders] Loading assets with inheritance issue

2007-01-05 Thread jerome_cordiez
Hi Roger, thank you very much for your answer. The answer I wrote yesterday got lost somewhere in the flow of replying via a mail client, without using the correct subscription email I guess^^... Anyway, thank you for your answer, things are now back in order, it was indeed a problem with the

[flexcoders] Loading assets with inheritance issue

2007-01-03 Thread jerome_cordiez
Hi all, yet another issue I'm currently facing... I have a main swf file, loading multiple external swf, each containing a component in the library wich is linked to a specific class that inherits from one SuperClass that itself extends MovieClip. so we have : fileA.swf contains componentA

[flexcoders] Directory structure, applications inside subfolders, etc...

2007-01-02 Thread jerome_cordiez
Hi all, Still in the learning phase of Flex's subtleties, I'm currently facing an issue that is definitely starting to make me crazy :)...After searching for hours on the web and in archives of various groups with no luck, I thought maybe someone over here would be able to help me out on this

[flexcoders] Dataprovider for ViewStack and List

2006-12-27 Thread jerome_cordiez
Hi all, being pretty knew to Flex, I am currently wondering about the best way to define a single dataprovider for both a list component and a viewstack. On paper, I can see many ways to achieve this, but being a new flex user, I am still pretty unsure about what would be the best/easiest way...