Re: [flexcoders] Re: html and swf file gone

2008-10-04 Thread Haykel BEN JEMIA
When talking about SVN I thought you were using the SVN version of the Flex SDK not for your own project. I suppose you are using the standard Flex SDK delivered with Flex Builder. In this case I don't know the problem. What's the content of the html-template folder of the project? How did you add

Re: [flexcoders] Re: Obtaining name of method

2008-10-04 Thread Ralf Bokelberg
I've done it in Cairngorm before. My business delegate extends the flash.utils.Proxy class and forwards all the calls to the backend. To make this work, you have to make the delegate dynamic though. This means you loose some type safety. Ralf On Sat, Oct 4, 2008 at 12:42 AM, frank_sommers

[flexcoders] Copy/Paste but removing HTML formatting

2008-10-04 Thread Mark Carter
I want the user to be able to copy text from an HTML-formatted Text Area and paste into a non-HTML TextArea. However, when they do this, the pasted text appears with the same formatting as in the original (indentation, font size etc). How can this be avoided? -- View this message in context:

Re: [flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-04 Thread shaun
hi Josh, Josh McDonald wrote: I think it's working. Tried installing VirtualBox to test it, but it doesn't work. UI is unusable too :( Perhaps allocate more memory to the OS instance. It should work fine for testing a web site. cheers, - shaun

[flexcoders] Anybody working with IntelliJ Idea?

2008-10-04 Thread Josh McDonald
Hey guys, Started a new project so I thought I'd have a crack at IntelliJ's support for Flex in 8M1. Anybody else using it and could drop me an email? I'm having some trouble getting it to build my project. Cheers, -Josh -- Therefore, send not to know For whom the bell tolls. It tolls for

Re: [flexcoders] Copy/Paste but removing HTML formatting

2008-10-04 Thread Mark Carter
I should have mentioned, this is within the same flex app. Therefore, I suppose I don't need to use the System clipboard at all. However, I still want the user to be able to use Ctrl-C/Ctrl-V and right-click context menu to perform these actions. Is it easy to override those from their default

Re: [flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-04 Thread Josh McDonald
Hey Saun, I gave it 1gb. I couldn't get it to recognise any shared folders, find its own //vboxsvr/ fileserver, any of my USB drives, or to mount the CD/DVD-ROM (even its own client tools ISO), so I killed it and paid for VMWare, I don't have the time. A shame, the world needs a nice easy-to-use

Re: [flexcoders] Re: Obtaining name of method

2008-10-04 Thread Josh McDonald
Off the top of my head, written in textmate and gmail, not Builder, YMMV, etc: public class UtilClass { private static nameCache : Dictionary = new Dictionaty(true); public static function getNameOf(f : Function, inInstace : Object) : String { if (f in nameCache)

Re: [flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-04 Thread Haykel BEN JEMIA
Isn't VMWare Server free? On Sat, Oct 4, 2008 at 10:24 AM, Josh McDonald [EMAIL PROTECTED] wrote: Hey Saun, I gave it 1gb. I couldn't get it to recognise any shared folders, find its own //vboxsvr/ fileserver, any of my USB drives, or to mount the CD/DVD-ROM (even its own client tools

[flexcoders] flex ui customization

2008-10-04 Thread stinasius
hi guys i am a developer(flex/cf) but my ui skill suck alot. i find my self spending alot of time trying to come up with a good looking ui. any resources on flex ui design (minus adobe.com) that a really good or any free books/tutorials that specifically address flex ui design and customization?

[flexcoders] Remove linked folder

2008-10-04 Thread markgoldin_2000
Somehow I have a linked folder in my project that has Location d:\. I am afraid to delete it because it points to my whole d drive. Is it safe to remove a linked folder from the project? Thanks

[flexcoders] Start development from scratch

2008-10-04 Thread markgoldin_2000
I want to reorganize all my projects so they can share .as classes. If I add more projects later on these projects will be able to use avaialble classes and other resources too. What is a preffred way of starting a brand new workspace and everything to provide to every project available

[flexcoders] undefined method getChildAt

2008-10-04 Thread [EMAIL PROTECTED]
I have a VBox in mxml called vidButtonBox mx:VBox id=vidButtonBox height=435 width=215 styleName=vidButtonBoxStyle paddingLeft=10 paddingRight=10 /mx:VBox In action script, I create a VBox with a Vbox child var vidArea:VBox = new VBox; var vidButton:VBox=newBbox;

[flexcoders] Re: Obtaining name of method

2008-10-04 Thread Amy
--- In flexcoders@yahoogroups.com, frank_sommers [EMAIL PROTECTED] wrote: Thanks. I wonder how the describeType() function does its work... that seems to have access to some reflective information about a class. This doesn't directly address your question, but I saw a presentation by

Re: [flexcoders] undefined method getChildAt

2008-10-04 Thread Haykel BEN JEMIA
You get the message because getChildAt returns a DisplayObject which does not have a getChildAt method (that's what the error message is saying). You have first to cast the object returned from the first getChildAt call to a DisplayObjectContainer or a subclass of it (in your case it's a VBox).

Re: [flexcoders] flex ui customization

2008-10-04 Thread Derrick Anderson
www.scalenine.com On Sat, Oct 4, 2008 at 5:58 AM, stinasius [EMAIL PROTECTED] wrote: hi guys i am a developer(flex/cf) but my ui skill suck alot. i find my self spending alot of time trying to come up with a good looking ui. any resources on flex ui design (minus adobe.com) that a really

[flexcoders] Can I play a video in slow motion? or frame by frame?

2008-10-04 Thread luvfotography
Is there a way for the video player to play in slow motion or step frame by frame, or play a video in reverse? thanks,

Re: [flexcoders] undefined method getChildAt

2008-10-04 Thread [EMAIL PROTECTED]
Haykel BEN JEMIA wrote: You get the message because getChildAt returns a DisplayObject which does not have a getChildAt method (that's what the error message is saying). You have first to cast the object returned from the first getChildAt call to a DisplayObjectContainer or a subclass of it

[flexcoders] Forcing / setting print orientation

2008-10-04 Thread Josh Millstein
Hello, I'm having a real hard time being able to force a certain print orientation on a user that is printing using FlexPrintJob in Flex 3. I would like to modify the printJOb.as code and making the orientation public and then extend FlexPrintJob to be able to modify the orientation value.

[flexcoders] Help with Flex with PHP/MySQL and moving to production server from local server.

2008-10-04 Thread brucewhealton
Hello all, I am having some difficulty with my first application that uses Flex with PHP/MySQL when I try to deploy it on the remote server that I am using to host my domains. I am taking a class and we created a Flex application that accesses a database using PHP. This was done

[flexcoders] Re: Sending parameters to server

2008-10-04 Thread ilikeflex
Hi It worked and i look into the action property. Thanks ilikeflex --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Debug the value of the action property, see what is the difference. If you can't figure it out, then post the error. Tracy