Re: [flexcoders] Re: Binding textinput width to datagrid column width?

2008-10-30 Thread Josh McDonald
Found a deferred bug. Fixed and submitted: https://bugs.adobe.com/jira/browse/SDK-16885 -Josh On Thu, Oct 30, 2008 at 3:14 PM, Josh McDonald [EMAIL PROTECTED] wrote: Hmm, my bad... 12 minutes to create the failing mxml file, 4 or 5 minutes to fix DataGridColumn. If somebody wants to dig up

Re: [flexcoders] Re: Binding textinput width to datagrid column width?

2008-10-30 Thread Maciek Sakrejda
Props for putting your money (err, time) where your mouth is, Josh. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com On Thu, 2008-10-30 at 15:14 +1000, Josh McDonald wrote: Hmm, my bad... 12 minutes to create the failing mxml file, 4 or 5 minutes to fix DataGridColumn. If somebody

[flexcoders] Re: States in UIMovieClip working properly?

2008-10-30 Thread florian.salihovic
What i can also add - forgot to post that one: When i trace the text Property of the TextField instances, the content is not null, oder - it is the text it should be. It's just not displayed. --- In flexcoders@yahoogroups.com, florian.salihovic [EMAIL PROTECTED] wrote: I have a strange

[flexcoders] Custom dataDescriptor and custom ICollectionView

2008-10-30 Thread franto
Hey all, it's long time I've posted something here :) But I can't find answer for my help, so I hope someone will help me here... I'm creating custom component which extends Tree. Structure must support different levels, but I cant use ArrayCollection or XMLListCollection. I think best way is

[flexcoders] Re: $visible?? What is it?

2008-10-30 Thread mookie298347
Hmm... So what would it mean if $visible is false but visible is true? The component isn't being displayed at all. Thanks for the help. --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: UIComponent overrides DisplayObject's 'visible' property, but it makes DisplayObject's

[flexcoders] Re: Custom dataDescriptor and custom ICollectionView

2008-10-30 Thread Cato Paus
Hi if You can use arrayCollection you can use this class just change the MainChapterListVO, SubChapterListVO to your Data Class waht I do here is I have a arraycollection called MainChapterListVO this holds data and a arraycollection named SubChapterListVO, the SubChapterListVO also holds data

[flexcoders] Re: Secure AMF - Error #2004: One of the parameters is invalid

2008-10-30 Thread taze170171
Hi Jeff! Thank you very much for your reply!! I tried to update to the newest Flex SDK Version to match LCDS 2.6. After doing that I get the following error: ArgumentError: Error #2173: Unable to read object in stream. The class DSQ does not implement flash.utils.IExternalizable but is

Re: [flexcoders] Re: Do you use a Mac?

2008-10-30 Thread Tom Chiverton
On Wednesday 29 Oct 2008, Brendan Meutzner wrote: Hi I'm a Mac... and I'm a PC... This must be some sort of reference to an advert or something. I don't see adverts :-) -- Tom Chiverton Helping to preemptively mesh unique visionary communities

Re: [flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Michael Schmalle
Amy, These functions are in place for very good reasons, and if you try to circumvent them you have a really good chance of running into problems. I will happily disagree with you on this and not say much else. I don't feel like getting into a pissing match with documentation, as I am sure this

Re: [flexcoders] need your advice on flash or flex

2008-10-30 Thread vuthecuong
Tom Chiverton-2 wrote: - about insert flash file (.fla?) to DB, this web app is for intranet use only, and size of flash file is less then 300kb. So should I need to pay attention on performance etc? Depends. Are there one insert a year or 3 million ? these fla files are templates, so

[flexcoders] coercion fail cannot convert com.event::[EMAIL PROTECTED] to com.event.AdEvent.

2008-10-30 Thread Nayan
Hi All, apologies if this email is repeated I have a Flex project which is loading in a swf file created using AS3, this swf file is broadcasting the adEvent for which i have listener in Flex. When the listener function is being fired i get the following error, cannot convert

[flexcoders] New framework for Flex and AIR enterprise applications

2008-10-30 Thread dev.apostiglioni
I'd like to share with all of you who develop enterprise applications this new framework: Aconcagua Flex http://code.google.com/p/aconcagua-flex/ (http://code.google.com/p/aconcagua-flex/). It's aim is to help in building enterprise Flex and AIR applications, and it has beeing designed to be:

Re: [flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Michael Schmalle
well big mouth has to say one more thing, Imagine commitProperties() committing property states :) , all of your properties have been committed. Children can be created at any time AFTER super(). What you fail to see is commitProperties() is a glorified createChildren(). This only thing cool

[flexcoders] Re: Flex builder annoyance - library projects

2008-10-30 Thread schtoo2
This is my #1 annoyance with FB. I can't tell you how many times I've been editing a file and gotten confused because it didn't seem to be compiling (because it wasn't selected in the build path). Or editing one file and confused why it wasn't able to import another (again because the other

[flexcoders] Extending Flex Builder

2008-10-30 Thread schtoo2
I'm extending Flex Builder with my own eclipse plugins. My plugins just compile some of my projects using the OEM compiler. I'm depending on the com.adobe.flexbuilder.flex plugin that exports the OEM compiler packages. So far so good - very straightforward. But now I'm encountering the

Re: [flexcoders] Re: Do you use a Mac?

2008-10-30 Thread Tyler Kocheran
Ubuntu [?] On Wed, Oct 29, 2008 at 10:46 AM, dnk [EMAIL PROTECTED] wrote: On 29-Oct-08, at 6:56 AM, Fotis Chatzinikos wrote: Are you sure that you cannot run Leopard (MacOSX) on a vm? The desktop, no (unless it is hacked?), however if you run OS X server, it is supported in VM's (IE I

[flexcoders] Re: textArea.setFocus();

2008-10-30 Thread jim.abbott45
For IE7 (at least), the following line of code works . . . body scroll=no onLoad=window.document.${application}.focus(); Just to be clear, it needs to be put in the html-template/index.template.html file of your project, and replacing the body tag that is already there. Good luck, Jim --- In

RE: [flexcoders] Re: textArea.setFocus();

2008-10-30 Thread Keith Reinfeld
Should it not put the cursor into the textArea and have the 10th through 20th characters selected? Even if you select a range of text with the mouse you will not see the blinking insertion cursor in the textarea. What matters is that your app has focus so that it can receive keyboard

Re: [flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Michael Schmalle
Clarification; Children can be created at any time AFTER super(). Since we all design software with a design, any property committal in a super() call has nothing to do with an instance of a child you create in the subclass (this is bad design). Thus, the above logic holds true. Mike On Thu,

RE: [flexcoders] Loading an image dynamically and making it a BitmapAsset

2008-10-30 Thread Jim Hayes
Can you not add a Bitmap to the sprite ? So (entirely off the top of my head) : function imgLoaded(e:Event):void{ var eventImg:Bitmap = new Bitmap( imgLdr.content as BitmapData) eventImg.smoothing = true; eventImg.setActualSize(300, 200); sheet.addChild(eventImg); } -Original

RE: [flexcoders] coercion fail cannot convert com.event::[EMAIL PROTECTED] to com.event.AdEvent.

2008-10-30 Thread Gregor Kiddie
Sounds suspiciously like a shared code problem. Check Alex's blog for further details. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit our

Re: [flexcoders] need your advice on flash or flex

2008-10-30 Thread Tom Chiverton
On Thursday 30 Oct 2008, vuthecuong wrote: and because they are templates so they rarely be edited. Is this OK to manage via DB? (Personally I think no problem. But I need your advice for sure) I'd stick them in the filesystem, with the location in the database, myself. OK. I understand. But

[flexcoders] Re: Invalid Embed directive

2008-10-30 Thread oneworld95
Thanks. This finally worked for me, Application { backgroundImage: global/media/flowers.jpg; } I'm guessing Embed directives are checked at compile time and for whatever reason, Flex compiler couldn't find the file. --- In flexcoders@yahoogroups.com, Douglas Knudsen [EMAIL PROTECTED]

[flexcoders] comboBox selectedIndex

2008-10-30 Thread Gökhan
How can i change the selectedIndex of a comboBox ? The selectedIndex is get 0 in any case. isn't it writeable ?

Re: [flexcoders] need your advice on flash or flex

2008-10-30 Thread vuthecuong
Tom Chiverton-2 wrote: On Thursday 30 Oct 2008, vuthecuong wrote: and because they are templates so they rarely be edited. Is this OK to manage via DB? (Personally I think no problem. But I need your advice for sure) I'd stick them in the filesystem, with the location in the database,

[flexcoders] Re: States in UIMovieClip working properly?

2008-10-30 Thread florian.salihovic
Just for the record: All references are gone and simply can't access the TextFields anymore. Wierd... not even with the []-dynamic accessor... It's easy to build komplex UIs in minutes with Flex but twio TextFields are making a lot of trouble... --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Using addChild() in Flex to add a Flash component.

2008-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, lagos_tout [EMAIL PROTECTED] wrote: Hi, all. Is it possible to use addChild() in Flex to add a Flash instance of SimpleButton to a Flex app's displayList? I exported the SimpleButton in a .swc from Flash IDE and set up the .swc as a library in Flex

[flexcoders] Ecard Designer in Flex ? How to build one in Flex

2008-10-30 Thread Cato Paus
Hi enyone have some code or links on the issue?

RE: [flexcoders] need your advice on flash or flex

2008-10-30 Thread Battershall, Jeff
After reading your spec, I would have some definite questions about the architecture of your app. It sounds a little odd and I'm doubting that what you're thinking will fly in the real world. 1) Is there some server or client side tool to read a .psd and grab and manipulate layers? I've never

Re: [flexcoders] comboBox selectedIndex

2008-10-30 Thread Adrian Williams
If you know what index (n) you want to set it to, comboBox.selectedIndex = n; Adrian Gökhan wrote: How can i change the selectedIndex of a comboBox ? The selectedIndex is get 0 in any case. isn't it writeable ?

[flexcoders] Re: How do arguments to an AS3 class translate to MXML?

2008-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Public properties or setter methods will be available in MXML. You can annotate them with various forms on [Inspectable] to get useful code-completion as well. If you implement IMXMLObject, initialize() will be called

[flexcoders] Flex with WebOrb Issues... no build

2008-10-30 Thread Eric Dunn
Hello all.. I've got Flex 3 Builder running on a XP machine with WebOrb for Java installed and the project is using SVN. I am in the process of trying to convert an existing Flex app over to try and run on WebOrb. I was successiful in converting the standalone app (not running on a server)

Re: [flexcoders] Re: How do arguments to an AS3 class translate to MXML?

2008-10-30 Thread Michael Schmalle
Note :: The IMXMLObject method signature is (d); initializedhttp://127.0.0.1:49487/help/topic/com.adobe.flexbuilder.help/langref/mx/core/IMXMLObject.html#initialized() (document:Objecthttp://127.0.0.1:49487/help/topic/com.adobe.flexbuilder.help/langref/Object.html,

Re: [flexcoders] Re: How do arguments to an AS3 class translate to MXML?

2008-10-30 Thread Michael Schmalle
Regarding The AS3 class takes an argument. For future reference, IMXMLObject implemented as3 classes cannot have arguments in their constructors. As josh said, just shift your constructor logic to a setter and treat it as if it were an argument. Mike -- Teoti Graphix, LLC

[flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Amy, These functions are in place for very good reasons, and if you try to circumvent them you have a really good chance of running into problems. I will happily disagree with you on this and not say much else.

RE: [flexcoders] Re: Read XML data in as ArrayCollection

2008-10-30 Thread Tracy Spratt
Yes, MyVO would be a custom object that uses strongly typed properties. This approach it the ideal from a performance standpoint, since access of strongly typed property values is significantly faster that either dynamic object properties, or XML. The blog example you referenced in the other

[flexcoders] Re: New framework for Flex and AIR enterprise applications

2008-10-30 Thread andrii_olefirenko
It seems like a trend :) I've just posted my own framework that do the same stuff but consists of one public class only :) (dependecy injection, Spring-style AOP , asynchronous command chaining etc) Check it out http://code.google.com/p/ctx/ --- In flexcoders@yahoogroups.com, dev.apostiglioni

[flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: well big mouth has to say one more thing, Imagine commitProperties() committing property states :) , all of your properties have been committed. Children can be created at any time AFTER super(). What you

[flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Clarification; Children can be created at any time AFTER super(). Since we all design software with a design, any property committal in a super() call has nothing to do with an instance of a child you create in

[flexcoders] Re: Read XML data in as ArrayCollection

2008-10-30 Thread oneworld95
Thanks, Tracy. I have a similar Premium class on the server side with Java so it's a good idea to do the same on the client with Flex. Now on to more coding and debugging :) --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Yes, MyVO would be a custom object that uses

[flexcoders] Trace/debug in Flex Builder 3

2008-10-30 Thread oneworld95
Hi. I've been trying to get the debugging working in FB 3 with no luck. I've downloaded and installed the debug version of FP 10. When I run the app, I can right click on it in the browser and see Debugger as an option. However, every time I start up the app in debug by clicking the little bug

RE: [flexcoders] Re: Read XML data in as ArrayCollection

2008-10-30 Thread Tracy Spratt
If you are using Java on the server, consider RemoteObject for the RPC protocol. You can pass objects directly into the client, without any manual loop or conversion by registering the class in Flex. I do not do any of this so I can't be more specific. Tracy

RE: [flexcoders] Trace/debug in Flex Builder 3

2008-10-30 Thread Tracy Spratt
Make sure of your installed version by hitting this site: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_15507 Make sure FB is configured to use the browser that has the debug player. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: textArea.setFocus();

2008-10-30 Thread valdhor
I found this bug in Jira: https://bugs.adobe.com/jira/browse/FB-429 It's been around since March of 06. Should we just vote on this one or create a new bug entry? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I believe the Java browser plug-ins don't have this problem

Re: [flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Michael Schmalle
Amy, I have read all that you have written. 2 years of sales, no complaints on the algorithm I use. So it very much matters where you create children when _other people_ are going to be subclassing your work. I have created a sub template in commitProperties(); That can be overridden from any

[flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Tim Hoff
Anyone taking bets? -TH --- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Michael Schmalle teoti.graphix@ wrote: Amy, These functions are in place for very good reasons, and if you try to circumvent them you have a really good

[flexcoders] Re: need your advice on flash or flex

2008-10-30 Thread valdhor
If it were me... 1. Use ImageMagick (http://www.imagemagick.org) on the server to extract the photoshop layers then modify and convert them. 2. Have the Flash files reference external images and text. Modify these external files rather than the flash files. Leave the flash files on disk and

[flexcoders] Re: Read XML data in as ArrayCollection

2008-10-30 Thread oneworld95
Thanks, Tracy. With the current version of Java we have on the production server (1.4.2_12-b03), I don't know if that's supported. We plan to upgrade to 1.5 next year. Where can I read more about the RemoteObject/RPC for Java? Thanks. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL

[flexcoders] Re: How to Embed an Application that Supports Deep-Linking?

2008-10-30 Thread andrii_olefirenko
does your page (that one you're trying embed into) have any other flash movies? Regards, Andrii --- In flexcoders@yahoogroups.com, Alexander Baetz [EMAIL PROTECTED] wrote: Hi, for Training i developed an application that uses the Flex 3 Deeplinking-Mechanism. I used the Flex Builder and

Re: [flexcoders] Flash CS4 - Flex Harmony

2008-10-30 Thread Tom Chiverton
On Wednesday 29 Oct 2008, djhatrick wrote: Also how do I configure Flex to use the stand alone Flash 10 debug player for actionscript projects? Change the run/debug settings for the project, or pick the appropriate option during the new project wizard. -- Tom Chiverton Helping to dynamically

[flexcoders] Re: Flex with WebOrb Issues... no build

2008-10-30 Thread valdhor
Eric I don't use WebORB for Java but I have a lot of experience with WebORB for PHP. It seems strange to me that WebORB would return a different data structure. If you could post some code, I may be able to figure out the problem (No guarantees though). --- In flexcoders@yahoogroups.com, Eric

[flexcoders] Re: New framework for Flex and AIR enterprise applications

2008-10-30 Thread dev.apostiglioni
Hi Andrii, I'll have a look. Cheers, Andres --- In flexcoders@yahoogroups.com, andrii_olefirenko [EMAIL PROTECTED] wrote: It seems like a trend :) I've just posted my own framework that do the same stuff but consists of one public class only :) (dependecy injection, Spring-style AOP ,

[flexcoders] Re: File name issue (php created file)

2008-10-30 Thread gabriela.perry
Oh My, Ryan, Im sorry. I really was a php problem... A well known issue, for us who use special carateres. But I was so tired and stressed that I couldn figure it out... 1. Save the file's name using utf8_decode 2. Retrieve it using utf8_encode It has nothing to do with Flex. Thank you so much

[flexcoders] Dynamicaly loading of images

2008-10-30 Thread Alexander Baetz
Hi, for a special tool i want to display buttons with icons that where loaded at runtime (based on an xml document loaded at runtime) in adobe livedocs i read that i cant load icons at runtime. To workaround that i switched to Images in buttonmode. But everytime the displayed image changes

[flexcoders] Re: Invalid Embed directive

2008-10-30 Thread arieljake
You can also use a source path like this from any source file: /../ EX: source=/../assets/images/logo.gif to get to the base of the src folder and then back out of it. --- In flexcoders@yahoogroups.com, oneworld95 [EMAIL PROTECTED] wrote: Thanks. This finally worked for me, Application

Re: [flexcoders] Dynamicaly loading of images

2008-10-30 Thread Adrian Williams
Hi Alexander, Not sure if this helps or not, but for images that I need in my app, I embed them from the get go, bind them and assign them to a var that I can reference on the fly laterand can change by simply changing the source for the image id: [Bindable]

RE: [flexcoders] Dynamicaly loading of images

2008-10-30 Thread Jim Hayes
I seem to remember the image component does that. You might try Ely Greenfields (?) superImage component instead, as I remember it keeps it's own cache. Or find a way to load them with a Loader and store their BitmapData somewhere. The trick is to do something like this when the Loader completes

[flexcoders] Advanced Data Grid - LockedRowCount property

2008-10-30 Thread grg_blls
Hi all, I am developing with Flex Plug-In build 3.0.194161 in Eclipse 3.3.2 build M20080221-1800. The application includes a Advanced Data Grid control, that I need to have the first row locked for vertical scrolling. Setting property lockedRowCount=1, though accepted - doesn't produce any

[flexcoders] Advanced Data Grid with Grouped Columns

2008-10-30 Thread grg_blls
Hi all, using a ADG control and having set for groupedColumns. I also use ItemEditors set as Renderers. The mxml code snippet is attached. This works finw as long as I don't use the vertical scroll bar (if there are enough data rows in the adg to need scrolling). If I try vertical scroll,

RE: [flexcoders] Re: textArea.setFocus();

2008-10-30 Thread Alex Harui
I think you can open bugs against the Flash Player now, so I would do that, and reference this bug From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of valdhor Sent: Thursday, October 30, 2008 9:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

[flexcoders] Re: How do arguments to an AS3 class translate to MXML?

2008-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Note :: The IMXMLObject method signature is (d); initializedhttp://127.0.0.1:49487/help/topic/com.adobe.flexbuilder.he lp/langref/mx/core/IMXMLObject.html#initialized()

[flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Amy, I have read all that you have written. 2 years of sales, no complaints on the algorithm I use. So it very much matters where you create children when _other people_ are going to be subclassing your work.

Re: [flexcoders] Re: How do arguments to an AS3 class translate to MXML?

2008-10-30 Thread Michael Schmalle
This wasn't a personal challenge. I didn't say you were wrong, I noted that the mxml interface method had a d on the end. I then said UIComponent has an initialized property like the method in the mxml interface. Writing emails to a forum is kind of relaxing compared to the rest of the day. Maybe

[flexcoders] rollOut event

2008-10-30 Thread Richard Rodseth
I have a window-like MXML component with a title bar (currently done with VBoxes and HBoxes) and a content area (a Canvas). Rolling over an info icon in the tile bar causes another component to be overlaid (made visible) in the content area. I used rollOver on the info button to make the overlay

[flexcoders] Re: Dynamicaly loading of images

2008-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Alexander Baetz [EMAIL PROTECTED] wrote: Hi, for a special tool i want to display buttons with icons that where loaded at runtime (based on an xml document loaded at runtime) in adobe livedocs i read that i cant load icons at runtime. To workaround

RE: [flexcoders] Re: UI component, a set function creationComplete

2008-10-30 Thread Alex Harui
I know I shouldn't step in here, but I'd like to ask for a cease-fire. Faithful Flex developers may know that Amy was the guinea pig for Gordon and my first article in Flex Authority magazine where we discussed the component lifecycle at length. It makes me happy to see that Amy has absorbed

[flexcoders] code going into a black whole

2008-10-30 Thread Aaron Miller
Hello, I have some strange behavior I'm trying to figure out. It seems like my code just stops working in mid-loop without giving any errors. == public function set pageModel( value:PageModel ): void { trace('PageCanvas.pageModel = '+value); if( _pageModel != value ) { _pageModel

RE: [flexcoders] code going into a black whole

2008-10-30 Thread Gordon Smith
My guess is that getNewElementInstance() threw an error and you're not running in a debugger. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Miller Sent: Thursday, October 30, 2008 2:27 PM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] code going into a black whole

2008-10-30 Thread Aaron Miller
Nope, I'm running the debugger. Application continues just fine, there's just a gap in the code that disappears for a bit. On Thu, Oct 30, 2008 at 3:03 PM, Gordon Smith [EMAIL PROTECTED] wrote: My guess is that getNewElementInstance() threw an error and you're not running in a debugger.

Re: [flexcoders] code going into a black whole

2008-10-30 Thread Josh McDonald
If your method gets invoked by a binding, the binding code will swallow most errors so you never see them. It's rather annoying when you're losing an error, but without it binding would be pretty much useless. Some sort of BindingUtils.logThrownErrors = true feature would be nice :) -Josh On

RE: [flexcoders] code going into a black whole

2008-10-30 Thread Gordon Smith
Try putting try/catch around the call. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Thursday, October 30, 2008 3:25 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] code going into a black whole If your method gets invoked by

Re: [flexcoders] code going into a black whole

2008-10-30 Thread Aaron Miller
Yup, looks like the binding was swallowing up the error so there didn't appear to be any problem. I ended up just scrapping all the code in the setter and dispatched an event instead. When that code was executed in the listener, I was getting a runtime error. All fixed now. Thanks for the insight

Re: [flexcoders] need your advice on flash or flex

2008-10-30 Thread vuthecuong
valdhor-2 wrote: If it were me... 1. Use ImageMagick (http://www.imagemagick.org) on the server to extract the photoshop layers then modify and convert them. 2. Have the Flash files reference external images and text. Modify these external files rather than the flash files. Leave

RE: [flexcoders] rollOut event

2008-10-30 Thread Alex Harui
Examine the event's target and relatedObject properties to see where it thinks it is going From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard Rodseth Sent: Thursday, October 30, 2008 12:12 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] rollOut event I

Re: [flexcoders] Dynamicaly loading of images

2008-10-30 Thread Mark Carter
Ben Stucki came up with a neat solution to this: http://blog.benstucki.net/?p=42 I took his idea a bit further: http://blog.flex.mark.carter.name/2008/05/displaying-icons-loaded-at-runtime-in.html Let me know if this helps - I've received no feedback on my icon stuff at all so far! -- View

[flexcoders] load fla file into web UI then edit image inside it

2008-10-30 Thread vuthecuong
Suppose that I biuld a wab app with php as back-end and flex sitting on font-end with porpose to load fla file to display on web UI, then extract text and image inside it, edit these text and images, then save back to that fla file. - How can do this with Flex or with anything else? I just want