[flexcoders] How do I pause

2007-10-29 Thread [EMAIL PROTECTED]
My movie changes states when the user hits a button, but I want it to pause for 5 seconds. How do I do that ? I see something about pausing a sequence in the documentation. do I have to create a sequence first ?

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,

[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?

[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

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

[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

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,

[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?

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 [EMAIL

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 load

[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

[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,

[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] dataGrid

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

[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

[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

[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

[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 =

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: 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] 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 to

[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 flex

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

[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 mx:Script source=Sales.as / 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

[flexcoders] ComboBox ItemRenderer Selected Value

2007-10-29 Thread riaengineer
I'm familiar with using itemRenderer for a combobox, pretty straight forward. My question is IS IT POSSIBLE to have the 'selected' value displayed trough an itemRenderer as well. I have a combobox whose itemRenderer show an image per item in the drop down. HOWEVER when the user selects an item

[flexcoders] Re: Deep binding with Cairngorm question

2007-10-29 Thread dbronk
Well, Java takes care of it for you just fine with it's gc. But I realize its not fair to compare against another language, Flex is it's own and makes it's own decisions. But, hasEventListener means I have to check for all types of events individually since there is not a hasAnyEventListener (at

[flexcoders] Re: JS - How to send a byteArray using HTTPService??

2007-10-29 Thread Jeff Schuenke
Hello Abdul, I have looked at URLLoader and see how to send. On the server side, I see the data in a byte array but am not sure how to pull this inot a variable. Any samples from either php or java? Thanks, Jeff --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: Note

Re: [flexcoders] Measuring TextField properties in TextArea subclass

2007-10-29 Thread Daniel Freiman
It looks like the force update method you need for TextArea is validateProperties(). I forget if you're going to need to do more to get the internal textField to update. We'll cross the bridge later if we need to. - Dan Freiman On 10/28/07, jamalwally [EMAIL PROTECTED] wrote: Hi, I can't

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-29 Thread lrdvadersith
I had seen sortCompareFunction, but I hadn't seen labelFunction. Much nicer than using an ItemRenderer. It still left me with the uncomfortable situation where I would have to write a lot of display and sort functions to get the various behavior I want. Then I ran across your blog posting about

[flexcoders] Re: dynamic images and copy protection

2007-10-29 Thread flashcrow2000
Embedding the images in swfs might do the trick. the problem is that the application will be used on some scales in supermarkets, so there is no chance in hell i will be able to install a server or something on those machines. Also, the application will start inside a canvas from another

[flexcoders] Re: Measuring TextField properties in TextArea subclass

2007-10-29 Thread kramus0
I think it's nearly the the same issue that I dicussed in message 91764 Number of lines in mx:text/. But I didn't get an answer yet. Markus --- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: It looks like the force update method you need for TextArea is

[flexcoders] Carousel component

2007-10-29 Thread Anzer
Where can I get a good implementation of Carousel component in Flex 2 ?

[flexcoders] Project

2007-10-29 Thread Christopher Olsen
Hello, I'm working on a sort of VOD project however after a movie has queue into your buffer it gets a little jittery. The test app can be seen at www.ubixonline.com I'm not sure if anyone has any feedback on why it would do that. -Christopher

[flexcoders] Tree: Removing expand triangle from select nodes

2007-10-29 Thread djdyland
Hello, I'm building a scripting reference app that is populated from an XML file. The structure is something like this. groupOfAssociatedClasses name=name of container class name=className property name=propertyName typetheType/type /property method

Re: [flexcoders] Carousel component

2007-10-29 Thread Doug McCune
For 3D: http://theflashblog.com/?p=293 For 2D: http://blogs.digitalprimates.net/codeSlinger/index.cfm/2007/10/28/Max-Presentation Doug On 10/29/07, Anzer [EMAIL PROTECTED] wrote: Where can I get a good implementation of Carousel component in Flex 2 ?

[flexcoders] Drop down combo box via AS?

2007-10-29 Thread candysmate
How can I get a combobox to drop down (open) with AS3 please?

[flexcoders] Re: How to set Script time limit in Flex 2 (or 3)?

2007-10-29 Thread droponrcll
--- In flexcoders@yahoogroups.com, icykorpio [EMAIL PROTECTED] wrote: give ppl a real case, before i wrote a software which contain the swf by c++. and people can click button in flex to command c++ wrapper pop up a windows system file dialog. but if user doesn't choose a file in 15

RE: [flexcoders] Drop down combo box via AS?

2007-10-29 Thread Alex Harui
open() From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Monday, October 29, 2007 9:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Drop down combo box via AS? How can I get a combobox to drop down (open)

RE: [flexcoders] Re: dynamic images and copy protection

2007-10-29 Thread Jim Hayes
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flashcrow2000 Sent: 29 October 2007 14:43 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: dynamic images and copy protection Embedding the images in swfs might do the trick. the problem

RE: [flexcoders] How do I pause

2007-10-29 Thread Alex Harui
Pause effect? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, October 29, 2007 12:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How do I pause My movie changes states when the user hits a

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

2007-10-29 Thread Alex Harui
The source is mxml. Copy edit From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dorktown Sent: Monday, October 29, 2007 1:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]Simple method to separate the textarea

RE: [flexcoders] ComboBox ItemRenderer Selected Value

2007-10-29 Thread Alex Harui
http://blogs.adobe.com/aharui/2007/04/icons_in_combobox.html From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of riaengineer Sent: Monday, October 29, 2007 7:07 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox ItemRenderer

RE: [flexcoders] Re: dynamic images and copy protection

2007-10-29 Thread Jim Hayes
Eh? Don't know what happened there ... sorry ! What I did didn't use a server or internet access, in fact. The script ran through directories of images, embedded each one in it's swf wrapper and saved that out as

RE: [flexcoders] Tree: Removing expand triangle from select nodes

2007-10-29 Thread Alex Harui
Custom ITreeDataDescriptor From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djdyland Sent: Monday, October 29, 2007 8:41 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tree: Removing expand triangle from select nodes Hello,

[flexcoders] KB-001: base64 under flex doesn't work with non-ascii code.

2007-10-29 Thread icykorpio
hi, I find this problem. because flex use utf-16 internally to represent string. so operator [] will fetch a very big int(non ascii) for base64. so it failed. just share with guys. regards icykorpio

Re: [flexcoders] Multiple File Uploads and OSX Leopard

2007-10-29 Thread Paul Decoursey
What do you mean borked and what do you mean multiple file uploads? Don't you do one at a time? I don't have Leopard yet, but in a few days I will. Paul On Oct 29, 2007, at 6:37 AM, Mike Krotscheck wrote: I’m seeing blog reports that Multiple File Uploads are borked on Flash Player 9

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

2007-10-29 Thread icykorpio
I don't think the async is the reason, look, the button click cause the change. all images are well loaded. //Also play with creationPolicy=all or queued on container. I think this makes sense. let me try and thanks all!

RE: [flexcoders] load an image inside a UIComponent

2007-10-29 Thread Alex Harui
Use swfloader? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flashcrow2000 Sent: Monday, October 29, 2007 2:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] load an image inside a UIComponent Hello, I have the following

RE: [flexcoders] Re: transient properties of an object using RemoteClass

2007-10-29 Thread Dimitrios Gianninas
I believe so, first time I see it myself, never seen anything like this for Flex 2. Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of simonjpalmer Sent: Monday,

[flexcoders] Re: transient properties of an object using RemoteClass

2007-10-29 Thread simonjpalmer
Wait... this is 3, I am on 2... I can't find a reference to this in Flex 2, is it a new feature of 3? --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote:

Re: [flexcoders]Simple method to separate the textarea from the control toolbar

2007-10-29 Thread squillets
Here is one example: http://flexarena.blogspot.com/2006/05/richtexteditor-with-floating-toolb\ ar.html --- In flexcoders@yahoogroups.com, dorkie dork from dorktown [EMAIL PROTECTED] wrote: Is there a simple method to separate the Textarea from the control toolbar in the Rich Text Editor

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

2007-10-29 Thread Tracy Spratt
Here is an example that shows several ways to pass data between a popup and the main app. It does not show using events. http://www.cflex.net/showFileDetails.cfm?ObjectID=558 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

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

2007-10-29 Thread Alex Harui
Ok, I tried to help... From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of icykorpio Sent: Monday, October 29, 2007 9:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: removechild and addchild cause flickering , help~ I

RE: [flexcoders] Multiple File Uploads and OSX Leopard

2007-10-29 Thread Mike Krotscheck
Initial testing shows that using FileReference to upload an image just doesn't work. I'll have leopard tonight, so will be able to give more detailed information. For the time being, this link from flickr corroborates the testing (which Nicholas Mercer was kind enough to help me with):

[flexcoders] Re: Tree: Removing expand triangle from select nodes

2007-10-29 Thread djdyland
Hi, Thanks for the reply. Like I said I have a ITreeDataDescriptor. But I don't see how I can use that to disable the expand triagle for certain nodes. Thanks Dylan --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Custom ITreeDataDescriptor

[flexcoders] Flex 3 release date

2007-10-29 Thread simonjpalmer
What is the latest statement of intent from Adobe regarding the full Flex 3 release date?

[flexcoders] debugger problems

2007-10-29 Thread Scott Melby
I have recently setup a new development machine (Vista) and in the process upgraded to Flex Builder 3 Beta 2. On my old machine the debugger always used firefox... and all was good :) Now, on this new machine it is using IE and all is not nearly as good. I am only able to open the debugger

[flexcoders] application not expanding to fit content

2007-10-29 Thread davidch204
I have an issue with my application's height. I have the height and width of my application set to 100%. In testing the application will fill the browser window. However in production the height of the application seems to be fixed, it doesn't fill the div container, but the width of the

[flexcoders] Re: transient properties of an object using RemoteClass

2007-10-29 Thread ben.clinkinbeard
Nah, looks like it was just undocumented in 2: http://nondocs.blogspot.com/2007/04/metadatatransient.html http://www.darronschall.com/weblog/archives/000271.cfm HTH, Ben --- In flexcoders@yahoogroups.com, simonjpalmer [EMAIL PROTECTED] wrote: Wait... this is 3, I am on 2... I can't find a

[flexcoders] API that encapsulates both Native DnD andDragEvents?

2007-10-29 Thread ivo
Hey all, I am trying to get Drag and Drop deals with both Drag and Drop from the local filesystem as well as within the application itself. I see there are two APIs for Drag and Drop, each with its own DragManager and distinct events. Has anyone worked on encapsulating these two on a single

[flexcoders] htmlText in text that originates in XML

2007-10-29 Thread droponrcll
I have an XML file that looks like this: [!CDATA[ pageContent txt x=10 y=10 w=120 h=100 The quick brown fox jumped over the blazy/b kitten. /txt txt x=430 y=60 w=150 h=100The quick brown fox

Re: [flexcoders] MXML vs. pure ActionScript

2007-10-29 Thread George
MXML is for visual components or views/screens/states that will be changed/repositioned/skinned now and then in the future. If that's the case, go MXML only. The downside of MXML is it won't support Outline for scripts, you need to write script externally. If not case above, pure actionscript

Re: [flexcoders] MXML vs. pure ActionScript

2007-10-29 Thread Paul Decoursey
I like both. For some things, like components I prefer AS only. But for larger apps I prefer mxml simply because I can visualize the app better. I don't think that there is any one better way to do it, it depends on your strengths and your needs. Paul On Oct 29, 2007, at 1:02 PM,

RE: [flexcoders] Flex 3 release date

2007-10-29 Thread Matt Chotin
Early 2008. Where January is considered very early and April would be considered closer to mid. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of simonjpalmer Sent: Monday, October 29, 2007 10:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 3 release date

Re: [flexcoders] application not expanding to fit content

2007-10-29 Thread Paul Decoursey
100% height in html rarely works. the height of the div is the problem. It has been my experience the it will not expand to what it could. I have seen some workarounds out there where if you set the body to 100% height and all parent tags also to a height then it works, but I have now

[flexcoders] MXML vs. pure ActionScript

2007-10-29 Thread lrdvadersith
I am new to the Flex world, and I am trying to figure out if I should use MXML to lay out visual components, or go with a pure ActionScript approach. Google searches reveal pros and cons of each, but no real consensus on which is a better general approach. Even within our organization (all of

Re: [flexcoders] How do I pause

2007-10-29 Thread [EMAIL PROTECTED]
There no example of how to make a pause effect in actionscript here http://livedocs.adobe.com/flex/201/langref/mx/effects/Pause.html so I am pretty much at a loss on how to proceed. I guess I have to make a custom effect trigger like this, but I'm having a really hard time with it.

[flexcoders] Re: Getting Debugger window when running flex application

2007-10-29 Thread Mike Morearty
If this is happening, then you didn't install the new beta Flash player that shipped with Flex Builder (in Flex Builder's installer, you probably un-checked the box to install the player). Please install it from the Player subdir of Flex Builder. That will fix the problem. - Mike Morearty,

RE: [flexcoders] MXML vs. pure ActionScript

2007-10-29 Thread Mike Krotscheck
I'm with Paul on this one. MXML is wonderful for layout, because I'm familiar with the HTML world and the metaphors are all the same (which means you can get someone less experienced to do layout tweaks :-). But when it comes to a standalone and fairly complex component, pure actionscript enables

[flexcoders] Re: transient properties of an object using RemoteClass

2007-10-29 Thread simonjpalmer
Thanks! --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: http://livedocs.adobe.com/labs/flex/3/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Partsfile=metadata_066_15.html --- In flexcoders@yahoogroups.com, simonjpalmer simonjpalmer@

[flexcoders] Re: application not expanding to fit content

2007-10-29 Thread davidch204
Yea I feared as much. It looks like I'll have to set the height after its loaded. There's also some issues with the height in Safari where it will expand beyond the content of the application by at least another 100%. Thanks for the response. --- In flexcoders@yahoogroups.com, Paul Decoursey

[flexcoders] Re: Tree: Removing expand triangle from select nodes

2007-10-29 Thread djdyland
So I guess to simplify my question... how do I apply myTree.setStyle(disclosureOpenIcon, null); myTree.setStyle(disclosureCloseIcon, null); to individual nodes instead if the whole tree? Anyone have any idea --- In flexcoders@yahoogroups.com, djdyland [EMAIL PROTECTED] wrote: Hi, Thanks for

RE: [flexcoders] MXML vs. pure ActionScript

2007-10-29 Thread Seth Caldwell
I prefer to write components that use actionscript classes - and then use mxml that use these components. It makes use and reuse quite simple. Also combining this component into larger components seems easier this way as well. Often my development cycle is like this 1) Write actionscript to

RE: [flexcoders] Re: Tree: Removing expand triangle from select nodes

2007-10-29 Thread Jim Hayes
-Original Message- From: flexcoders@yahoogroups.com on behalf of djdyland Sent: Mon 29/10/2007 19:43 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Tree: Removing expand triangle from select nodes So I guess to simplify my question... how do I apply

RE: [flexcoders] Controlling MenuBar Submenus via Code frustrations

2007-10-29 Thread Alex Harui
The menudatadescriptor has methods isToggled/get/setToggled, IIRC. Usually that maps to toggled properties or attributes in the dataprovider you sent to the MenuBar. Manipulating the data in the dataprovider is the recommended way of changing the state of the buttons. It is not recommended

RE: [flexcoders] How do I pause

2007-10-29 Thread Alex Harui
If you really want to lock up your app for 5 seconds, do this: Var t:int = getTimer() + 5000; While (getTimer t); From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, October 29, 2007 11:48 AM To:

[flexcoders] Re: crossdomain.xml... real or not-so-real security?

2007-10-29 Thread geoffreymina
You guys misunderstood what I was talking about. Here is the landscape: Server 1: (www.foo.com) Owned by me and I have a crossdomain.xml which allows access to *.foo.com. This server is NOT compromised and nobody is modifying any files. Server 2: (www.evil.com) Owned by malicious user. A

[flexcoders] Re: htmlText in text that originates in XML

2007-10-29 Thread droponrcll
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: How much of that are you assigning to the htmlText property? That's what I am trying to figure out. I can't find anything in the XML properties or methods that gives me exactly the stuff between the beginning and ending

Re: SPAM-LOW: [flexcoders] component visibility question

2007-10-29 Thread Jeffry Houser
includeInLayout . George Georgiou wrote: Hi there, I am wondering whether there is an alternative to the 'visible' property of a component - which really 'removes' the component from the scene. I am having two panels and I want to be able to resize the first one to 100% when I

[flexcoders] Re: FileReference upload passing parameters in URLRequest

2007-10-29 Thread letterpigeon
Can someone please help? Thanks in advance. Ban --- In flexcoders@yahoogroups.com, letterpigeon [EMAIL PROTECTED] wrote: 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

RE: [flexcoders] Re: Tree: Removing expand triangle from select nodes

2007-10-29 Thread Alex Harui
hasChildren() should return false. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djdyland Sent: Monday, October 29, 2007 10:18 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Tree: Removing expand triangle from select

[flexcoders] Re: debugger problems

2007-10-29 Thread Mike Morearty
To use Firefox for debugging, you set the Eclipse-wide preference that controls which browser to use for any context where Eclipse needs a browser. It is not a Flex Builder-specific setting. To change it, go to preferences, General, Web Browser. As for the IE problems, I am pretty sure this is

[flexcoders] component visibility question

2007-10-29 Thread George Georgiou
Hi there, I am wondering whether there is an alternative to the 'visible' property of a component - which really 'removes' the component from the scene. I am having two panels and I want to be able to resize the first one to 100% when I 'hide' the second. Property visible works but I have to

[flexcoders] Controlling MenuBar Submenus via Code frustrations

2007-10-29 Thread Mike Anderson
Greetings All, I've burned an entire DAY searching the web for examples of how to control sub-menus in a MenuBar control, via code. The main types of things I need to accomplish, is toggling Checkboxes and Radio Buttons, when certain application variables change. My MenuBar has 6 primary menus

RE: [flexcoders] Re: Tree: Removing expand triangle from select nodes

2007-10-29 Thread Tracy Spratt
Here is one that draws lines between siblings, perhaps it will help you see what to do. http://www.cflex.net/showFileDetails.cfm?ObjectID=575 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Monday, October 29,

Re: [flexcoders] Re: Flex2Gateway Security Question

2007-10-29 Thread João Fernandes
that property that defines remote / remote public is for CF Server only. It will say if public methods can be invoked remotly through the flex2gateway or not. Even if you compile with a local version of your remoting-config.xml which has public methods enabled, if the remote server only allows

[flexcoders] Re: Flex2Gateway Security Question

2007-10-29 Thread geoffreymina
Well my current [local] services-config.xml is set to allow public invocations and the file on my remote server contains the following: [C:\CFusionMX7\wwwroot\WEB-INF\flex\services-config.xml] method-access-levelremote/method-access-level Now, all my Flex applications that I am compiling

Re: [flexcoders] Re: crossdomain.xml... real or not-so-real security?

2007-10-29 Thread Derrick Anderson
yeah there are some security holes and i don't think crossdomain.xml is a 'catch-all', read the following article from adobe on the subject- they have some suggestions for such vulnerabilities http://www.adobe.com/devnet/flashplayer/articles/cross_domain_policy.html On 10/29/07, geoffreymina

RE: [flexcoders] htmlText in text that originates in XML

2007-10-29 Thread Alex Harui
How much of that are you assigning to the htmlText property? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of droponrcll Sent: Monday, October 29, 2007 11:29 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] htmlText in text that

Re: [flexcoders] Re: Flex2Gateway Security Question

2007-10-29 Thread Derrick Anderson
Anyone who is compiling Flex applications with a local services- config.xml can control whether THEY want to access MY remote or public methods... that can't be right. no, it's not- the settings that are in the file you use to compile against are not hard-wired into the compiled app, if your

[flexcoders] Re: Flex2Gateway Security Question

2007-10-29 Thread geoffreymina
OK, I am not using FDS or CFMX8 so I guess the config is all done in the services-config.xml file. The problem I have with that is the fact that we are talking about a client side compiler file which is supposed to control server side security... seems like an extremely flawed model! Anyone

Re: [flexcoders] Re: debugger problems

2007-10-29 Thread Scott Melby
Mike - Thanks so much... you have saved me a ton of rebooting. I was so focused on flex builder specific settings related to debug that I didn't notice that setting under general. Thanks again Scott Mike Morearty wrote: To use Firefox for debugging, you set the Eclipse-wide preference

Re: [flexcoders] Changing the width to 100%

2007-10-29 Thread George Georgiou
Hi all there, thanks for your help. Indeed, the percentWidth is what i was looking for, thanks a lot! However, still I have this problem. I have an HBox with two panels, side by side. My mainPanel and my helpPanel. I have a 'hide helpPanel button' which does the obvious. This is my actionscript

Re: [flexcoders] Changing the width to 100%

2007-10-29 Thread Daniel Freiman
This should work. public function showHideHelp():void { if (helpPanel.visible == true) { mainPanel.percentWidth = 100; helpPanel.includeInLayout = false; helpPanel.visible = false; } else { mainPanel.percentWidth =

[flexcoders] Re: htmlText in text that originates in XML

2007-10-29 Thread droponrcll
--- In flexcoders@yahoogroups.com, droponrcll [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Alex Harui aharui@ wrote: How much of that are you assigning to the htmlText property? That's what I am trying to figure out. I can't find anything in the XML properties or

RE: [flexcoders] Re: Tree: Removing expand triangle from select nodes

2007-10-29 Thread Tracy Spratt
A custom TreeItemRenderer? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djdyland Sent: Monday, October 29, 2007 3:43 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Tree: Removing expand triangle from select nodes

[flexcoders] Re: Flex2Gateway Security Question

2007-10-29 Thread geoffreymina
I am using CFMX7... no remoting-config.xml file present. Just services-config.xml --- In flexcoders@yahoogroups.com, João Fernandes [EMAIL PROTECTED] wrote: that property that defines remote / remote public is for CF Server only. It will say if public methods can be invoked remotly

[flexcoders] Re: JS - How to send a byteArray using HTTPService??

2007-10-29 Thread andrewrbateman
HTTPService only allows text. You can however convert the ByteArray into Base64 and then transfer it via HTTPService. Note that this can be quite large, so you may want to encode it as JPEG first. There are two advantages to doing this...reduced network traffic, and you also then have the data in

  1   2   >