[flexcoders] asdocs does not generate html files if the script tag is having the source tag

2007-10-29 Thread ilikeflex
Hi Team I am trying to generate the help files from the source code(mxml + as ). the mxml tag has the code and it has script tag This Sales.as has all the action script code. When i run the asdoc tool P:\>asdoc -source-path C:\sandbox\client2\src -doc-sources C:\sandbox\client2\src -outpu

Re: [flexcoders] compile error with beta 2 sdk *** SOLVED ***

2007-10-29 Thread Scott Melby
It looks like I have resolved this. In the past, in order to compile an app that uses AdvancedDataGrid I needed to include only the datavisualtion.swc file in my compiler.library-path. But, now I need to include the datavisualization_rb.swc as well to get the resource bundles. Scott Scott M

[flexcoders] Re: Pulling in a webpage

2007-10-29 Thread essuark
BUMP? Anyone. I have run out of ideas with this thanks all --- In flexcoders@yahoogroups.com, "essuark" <[EMAIL PROTECTED]> wrote: > > Anyone have any hints on how to do something like this? I need to be > able to pull in a webpage to my flex application. I need the ability to > place a fl

RE: [flexcoders] dynamic images and copy protection

2007-10-29 Thread Jim Hayes
> also the client wants some protection for the images. That old chestnut! You can point out that pressing the printscreen key normally "overrides" any encryption that you have on images ... Sometimes that works :-) Last time I had that (years back, in fact) , I built a script that called ming t

[flexcoders] Re: Deep binding with Cairngorm question

2007-10-29 Thread ben.clinkinbeard
> This seems like a very dangerous design decision by Adobe. I don't know how its really avoidable. I suppose you could argue for automatic cleanup or something but I could see that causing problems as well, and it honestly falls outside the responsibility of a language/runtime IMO. Why can't you

RE: [flexcoders] How do I convert an object to an arrayCollection?

2007-10-29 Thread Samuel R. Neff
Paul, I don't think you should have to do any conversion, recent versions of Fluorine support sending DataSet and DataTable objects to Flex and are normally received as an ArrayCollection of Objects (optionally it can specify typed objects). The object structure you're seeing is what I've seen

[flexcoders] Re: FileReference upload passing parameters in URLRequest

2007-10-29 Thread letterpigeon
Hi, I've tried both method, GET and POST, but still couldn't get the parameters to be passed correctly. Thanks. Ban --- In flexcoders@yahoogroups.com, "Abdul Qabiz" <[EMAIL PROTECTED]> wrote: > > Note sure, but you might need to set the method in URLRequest. > > request.method = URLRequestMet

[flexcoders] compile error with beta 2 sdk

2007-10-29 Thread Scott Melby
Can anybody shed light on this compiler error I am getting after upgrading to the beta 2 sdk? [mxmlc] Error: Unable to resolve resource bundle "datamanagement" for locale "en_US". In case it helps... My app uses only HttpService to retrieve data from a back end web service. Any help is apprec

[flexcoders] Re: Deep binding with Cairngorm question

2007-10-29 Thread dbronk
This seems like a very dangerous design decision by Adobe. If somewhere in my application someone as set a listener on an object, and then in another place it is simply reinitialized should NOT cause a memory leak. I'm saying it will not, I'm saying that is a dangerous design for Flex. In this c

[flexcoders] Maven and SWC namespaces

2007-10-29 Thread Leftie Friele
I am trying to make the Israfil Maven plugin work in such a way that I can have MXML components in a SWC project and reference those in my SWF projects using a simple namespace. Getting this to work in Flex Builder is fairly easy so I know I've got the Namespace thing correct, my problems is to g

[flexcoders] dataGrid

2007-10-29 Thread niamath basha
Can we get the values of datagrid to an array or arraycollection

[flexcoders] Measuring TextField properties in TextArea subclass

2007-10-29 Thread jamalwally
Hi, I can't get the correct information about line numbers in the text of a custom class that extends TextArea (call it MyTextArea). If I set the text property of the TextArea in onCreationComplete() then getLineIndexAtPoint() returns -1. I imagine that after I update the text property, I must

[flexcoders] How to know when TextArea has updated

2007-10-29 Thread jamalwally
Hi, I am extending the TextArea class (call it MyTextArea) and want to get information about the text in the textField. I wait for the CREATION_COMPLETE event before accessing the textField, but the textField.getLineIndexOfChar() method returns -1 directly after an update of this.text. Is there

Re: [flexcoders] Re: Trigger a function in the main applicatoin mxml from a popup window.

2007-10-29 Thread Bailey
Hi Kal, I believe BJorn is talking about listening within your flex application for the closeEvent generated from your popup window upon the event. When your listener picks up the closeEvent, within your mxml application you may make your function call to do your state changing work For Example:

[flexcoders] custom container layout woes

2007-10-29 Thread Bailey
Hello, after some tossing and turning with my .fla and my flex app I just can't seem to figure out how to fix this problem, though I did come up with a semi fix but its more or less ghetto... I have made a custom container in flash and have exported it successfully to flex and can put components i

[flexcoders] Custom container layout woes

2007-10-29 Thread moyosa
Hello, after some tossing and turning with my .fla and my flex app I just can't seem to figure out how to fix this problem, though I did come up with a semi fix but its more or less ghetto... I have made a custom container in flash and have exported it to flex and can put components in it fine, th

Re: [flexcoders] dynamic images and copy protection

2007-10-29 Thread Abdul Qabiz
You can load images over URLStream or load images via server-side script that sets expire headers... You can load images over socket, it wouldn't go to browser cache at all :) -abdul On 10/29/07, flashcrow2000 <[EMAIL PROTECTED]> wrote: > > Another crazy idea from my clients :). > > I need to l

Re: [flexcoders] HTTP Cookie via ActionScript

2007-10-29 Thread Abdul Qabiz
Hi, I am also confirming this is an issue with current beta player on labs. Not sure if it is intentional or a bug? -abdul On 10/27/07, Abdul Qabiz <[EMAIL PROTECTED]> wrote: > > It seems to be Flash Player changes, what player version are you using? > > -abdul > > On 10/25/07, Sandeep Malik < [

[flexcoders] Multiple File Uploads and OSX Leopard

2007-10-29 Thread Mike Krotscheck
I'm seeing blog reports that Multiple File Uploads are borked on Flash Player 9 and OSX Leopard. Unfortunately I don't have my own Leopard environment yet, so can't confirm this, nor can I find any official acknowledgement from either Apple or Adobe. Can anyone out there confirm this for me? An

RE: [flexcoders] List change event to BubbleChart

2007-10-29 Thread Sunil Bannur
Flex 3 Charts has selection capabilities, and it has APIs to specify what items should be selected, which does exactly what you have described. Thanks -Sunil From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of picklzzz Sent: Sunday, Oc

[flexcoders] dynamic images and copy protection

2007-10-29 Thread flashcrow2000
Another crazy idea from my clients :). I need to load images from xml, and also the client wants some protection for the images. The only protection I can think of is to embed them, but how can i do that if i have an xml which defines the whole layout and content? Encrypting them us not an option

Re: [flexcoders] Re: removechild and addchild cause flickering , help~

2007-10-29 Thread Sebastian Zarzycki
Abdul Qabiz wrote: > Yup! To avoid that you can load the image in other loader and swap it > once it's loaded...Something like double-buffering.. > Also play with creationPolicy="all" or "queued" on container. -- | Sebastian Zarzycki / rat[tkin] | [EMAIL PROTECTED] | i'm a little lost in this p

[flexcoders] load an image inside a UIComponent

2007-10-29 Thread flashcrow2000
Hello, I have the following situation: I have an AS class which extends UIComponent, and based on some settings read from an xml, I must load an image, a movie or display a text inside that class. When I'm creating the image, and adding it with addChild(imageObject), if I don't set some values fo

[flexcoders]Simple method to separate the textarea from the control toolbar in the rich text editor

2007-10-29 Thread dorkie dork from dorktown
Is there a simple method to separate the Textarea from the control toolbar in the Rich Text Editor control?

Re: [flexcoders] Error with htmlText property of TextArea - "Error #2044: Unhandled IOErrorEvent:. text=Error #2124: Loaded file is an unknown type"?

2007-10-29 Thread arpan srivastava
Thanks Dan, i am now able to get rid of this error. what i am doing is, when IOErrorEvent is fired i am removing the images from the htmlText and just displaying the text. - Original Message From: Daniel Freiman <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Sunday, Octob

<    1   2