[flexcoders] Flex XML editor

2009-10-16 Thread primo411
Hi everyone, I want to create an editor for XML files in Flex. Does anyone know if there are already existing projects (open-source) that implement this ? I could not find anything (excepted commercial apps), but I guess someone already had the need to do that :) Cheers

[flexcoders] Re: Does the Embed metatag still work in the latest versions of the SDK?

2009-10-16 Thread seanmcmonahan
Using Flex Builder 3 I had to add the leading slash to Embeds when using Ant as well. I'm pretty sure one of the previous posters is right: it's all about the paths and FB does some magic behind the scenes (adds a leading slash perhaps?) that Ant doesn't. --- In flexcoders@yahoogroups.com,

[flexcoders] Flex performance problem, pure MVC, AIR

2009-10-16 Thread Vladimir
I made Image Browser application. User can select any number of images and browse them in application. I use Flex SDK 3.4 AIR framework Pure MVC Framework Main screen contains big container for images and one container that preview same images just smaller (thumbnails). For thumbs I used

[flexcoders] popup window send event to main screen

2009-10-16 Thread markflex2007
Hi, Do you think if it is possible for popup Flex window to send event to main Application screen? Thanks Mark

[flexcoders] Re: Help me name this eclipse feature so I can log a bug

2009-10-16 Thread dfalling
I was referring to the mac keyboard shortcuts. The ones you pointed out are correct, but the behavior still isn't what I want- the cursor moves further than it should when doing ctr-left/right / alt-left/right. It should stop at periods, not just at spaces, parentheses, and quotes. --- In

RE: [flexcoders] Re: Does the Embed metatag still work in the latest versions of the SDK?

2009-10-16 Thread Josh On
Hi, I am using a leading slash in the path to the asset: [Embed(source='/image_assets/ui/arrow.gif')] Are you talking about a different path somewhere? The thing is, it does compile, I would think if it couldn't find the class at compile time then there would be a compile error

[flexcoders] Strange DragDrop problem

2009-10-16 Thread reflexactions
I have a HBox with two VBox's in. Initial lets say the VBox1 is 300px wide, but I hide same controls and reduce its width to 30. Now I am trying to drag and drop between two grids in VBox2. The problem I am having is I can't drop into a grid if that grid is within 300px of the edge i.e. where

[flexcoders] Re: popup window send event to main screen

2009-10-16 Thread valdhor
Yes you can. Add an event listener to the systemManager of the application. systemManager is the owner for popup windows. --- In flexcoders@yahoogroups.com, markflex2007 markflex2...@... wrote: Hi, Do you think if it is possible for popup Flex window to send event to main Application

[flexcoders] flex air custom chrome html control

2009-10-16 Thread deneme2010
Hi everyone, I try to do some air app with custom chrome. I download sample project from web, changed config file to work with air 1.5, put one html control on app to load external htmla and create air file. Everything works perfect, excluding one thing. when I try to load html page created by

[flexcoders] Re: Flex XML editor

2009-10-16 Thread Tracy
I created one for an example. It is in Flex 2, but maybe something in there will be useful to you. http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectID=544 Tracy Spratt --- In flexcoders@yahoogroups.com, primo411 primo...@... wrote: Hi everyone, I want to create an editor

[flexcoders] onMouseOver buttons - how to ? as in Flex Store

2009-10-16 Thread tex_learning_flex
Can anyone point me to an explanation of how to achieve the effect of buttons appearing onMouseOver as in the Flex Store http://examples.adobe.com/flex2/inproduct/sdk/flexstore/flexstore.html app ( http://examples.adobe.com/flex2/inproduct/sdk/flexstore/flexstore.html

[flexcoders] Re: defining more than one class in a simple .as file (ref)

2009-10-16 Thread Tracy
Please do not hijack threads. Unless your post is directly applicable to another, start a new topic. Do not just change the subject line. It confuses some threaded readers, like yahoo's html version. Tracy --- In flexcoders@yahoogroups.com, dennis den...@... wrote: I want to create more

[flexcoders] Re: Does the Embed metatag still work in the latest versions of the SDK?

2009-10-16 Thread tkdave
--- In flexcoders@yahoogroups.com, joshonemail j...@... wrote: This is the runtime error I get after compiling with no errors in 4.0.0.10485 and later:VerifyError: Error #1014: Class I think your problem is that RSL's are now used by default, and when compiling outside Flex builder, you have

RE: [flexcoders] Re: Does the Embed metatag still work in the latest versions of the SDK?

2009-10-16 Thread Josh On
Try adding the -static-link-runtime-shared-libraries mxmlc option to your build script. Thank you David - that did the trick - I don't know if I ever would have worked that out! Josh

[flexcoders] inline item editor component grow when selected?

2009-10-16 Thread mr_william_clark
How can I make my inline component grow to a size larger than the datagrid cell when a user selects it? Many thanks for any ideas. Bill

RE: [flexcoders] Flex XML editor

2009-10-16 Thread Julian Tenney
Xerte 3.0: http://www.nottingham.ac.uk/xerte/downloads/xerte3alpha.exe From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of primo411 Sent: Friday, October 16, 2009 9:29 AM To: FlexCoders Subject: [flexcoders] Flex XML editor Hi everyone, I want to

RE: [flexcoders] defining more than one class in a simple .as filem ref

2009-10-16 Thread dennis
Thank you for you reply. I am coming from .net and Delphi environments. There was pretty easy to have many classes in a single file. For instance, support I have a small class (lets call it Item) with one or two methods that will be used from only one class (lets call it Cart) where will