[flexcoders] Flex Mojos beta 2 for Maven

2008-04-18 Thread loganallred
The second beta release of the Flex Mojos Maven plug-in has been released, including: * Better support for ASDocs * Integration of ASDocs with Maven site generation * Fixes to FlexUnit integration * Building several modules in the same project To find out more:

RE: [flexcoders] Re: AIR: Forcing a file to be opened By OS Default Application

2008-04-18 Thread Zoltan Csibi
Hi Jim, Yes there are 3 dlls included (simply added to the air project). The communication is via localconnection, the app checks if it can connect and if the dlls are there the app will get access automagically to the api provided (the api is specially written native COM libraries). I am going

Re: [flexcoders] custom component dataprovider

2008-04-18 Thread Derrick Anderson
Hey Tracy, I thought of that but it seems to limit me from what I'm trying to do. I need the UI of this component to respond when the dataprovider changes, I figured the best way would be to implement a dataprovider the way the mx components do it, it seems complicated but I'm getting throught

Re: [flexcoders] Re: Fade effect on a canvas

2008-04-18 Thread Stephen Downs
Changing from one child to another actually requires 2 effects. You see the first fade out, then the second fades in. PairedStackEffect enables you to combine the 2 effects into one. http://www.tink.ws/blog/pairedstackeffect-fade-squash/ There's a fade example there which might be what your

RE: [flexcoders] custom component dataprovider

2008-04-18 Thread Tracy Spratt
The setter is just an interface into your component property. How you implement the functionality is up to you and is unlimited. You can bind your property to whatever in the app, and the setter will be called when the model changes. The Adobe components implement the dataProvider with a setter

[flexcoders] crossdomain where is the server root?

2008-04-18 Thread hworke
Sorry for asking this question. I am using jetty and put the crossdomain.xml in webapps folder but look like it is not the root. Also which one is the tomcat root? ROOT folder?

[flexcoders] DragEvent question....

2008-04-18 Thread grimmwerks
So I'm dragging an item -- and when dropped I want the initiator to move to where the dropped item is. But I can't seem to find the x,y of the copied image is -- I've done it originally to the mouseX/Y, but there's a shift as these items can be dragged from the middle, etc.

RE: [flexcoders] Dynamic Instance Problem

2008-04-18 Thread Rick Winscot
Dale - you are right. the more dangling class (concrete) references you have to keep in your code to keep introspection from failing - the more your approach looks like a problem rather than a solution. My first recommendation is - if you have to use dangling references let them be interfaces.

RE: [flexcoders] Dynamic Instance Problem

2008-04-18 Thread Rick Winscot
Having a dangling concrete class reference is really a cheat. due to the nature of Flex/ActionScript class hierarchies. Perhaps a better term in lieu of 'dynamic' would be 'unknown.' This is where interfaces make a great deal of sense and provide a no-nonsense way of saying. I don't know what I'm

RE: [flexcoders] Looking for a website . . .

2008-04-18 Thread Rick Winscot
I think that you are referring to Ely Greenfield's work at Quietly Scheming: http://demo.quietlyscheming.com/IPE/index.html (bows to the 'G' man) Rick Winscot From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of srieger_1 Sent: Friday, April 18, 2008 11:19 AM

[flexcoders] Re: Click Lite: The right click now. But not now?

2008-04-18 Thread ben.clinkinbeard
I would definitely recommend reading the docs I linked to in my other post but since I know seeing progress is always helpful here is a quick block of pseudo code for what you're talking about. Creating menus/buttons from XML, ah nostalgia. :) for each( var node:XML in menuXML.children() ) {

RE: [flexcoders] DragEvent question....

2008-04-18 Thread Alex Harui
If you look at the DragProxy and DragManagerImpl code, it looks like the offset is computed at mouseDown. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Friday, April 18, 2008 5:55 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] comparing a string to a group of canvas's id and assigning them

2008-04-18 Thread Alex Harui
Can you give them ids that match the XML? Then you can use the XML to look them up. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Friday, April 18, 2008 3:55 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

[flexcoders] How to draw a cylinder

2008-04-18 Thread Swamy Nathan
Hi Folks, i have one problem how can i draw the cylinder. i have an idea about line and rectangle circle drawing. i want to draw some thin long cylinder like pipe shaped. can any one please reply. -- Thanks Regards Swaminathan. M

Re: [flexcoders] How to draw a cylinder

2008-04-18 Thread Aaron Miller
You can try to do the math yourself, or use a 3d engine like Papervision. http://blog.papervision3d.org/ Best Regards, ~Aaron On Fri, Apr 18, 2008 at 10:43 PM, Swamy Nathan [EMAIL PROTECTED] wrote: Hi Folks, i have one problem how can i draw the cylinder. i have an idea about line and

<    1   2