Re: [flexcoders] Is this a bug, or is it just me?

2006-08-05 Thread sinatosk
hmm... that shouldn't happen... so I'm gonna guessing it's something to do with the way you coded it. Can you post the code that outputs the text to the textarea? if so... post it please On 05/08/06, Rick Root [EMAIL PROTECTED] wrote: sinatosk wrote: no

[flexcoders] FLEX2/Flash devs Need More Clarity from Adobe on New Flash Player Install Methods : i.e. New Shake-Up in FLASH Install Options (Foxfire JS disabled by default, and IE embed activation)

2006-08-05 Thread Robert Thompson
There are 2 recent events that have complicated Flash Installs that even SWFObject (formerly FlashObject) cannot handle.#1. Foxfire Now Comes Installed Default with Script Blocking. So, the very thing that made Flash successful (almost instantaneous installation even over 56k modem) is now

[flexcoders] Re: Help with SharedObject please!

2006-08-05 Thread wayneposner
If I trace it locally the shared object returns what it's supposed to. I'm still relatively new to flex so pardon my asking, but how do you configure flex to trace data from a deployed swf (ie. running from a url). I know if I try to just simply run the debug files generated by flex, I get

Re: [flexcoders] Re: DataGrid ItemRenderer

2006-08-05 Thread Clarke Bishop
In case it helps anyone else, I've got this bullet thing working now. Three things were needed: - Setting the horizontal and vertical scroll policy as sinatosk suggested- Specifying the width, but not the height or the Text component. When you do this the text box will automatically adjust its

[flexcoders] Re: Help with SharedObject please!

2006-08-05 Thread Jason
Sephiroth, the author of the awsome AS2 editor SE|PY, wrote a free SharedObject viewer that I think will help out with your debugging. http://www.sephiroth.it/python/solreader.php SharedObjects are stored in this location when running from local HD: C:\Documents and

[flexcoders] Load customized mxml component dinamically?

2006-08-05 Thread user_abcxyz
Hi All, Does anyone know how to do it? For e.g. I created a customized mxml video component and a customized mxml audio component. At runtime, I allow the user to choose which one to load by clicking on the audio or video button. Thank you -- Flexcoders Mailing List FAQ:

[flexcoders] How can I get XML from XMLList and XMLListCollection?

2006-08-05 Thread Dave Bobby
How can I get XML from XMLList and XMLListCollection? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go to:

[flexcoders] gotoAndStop causing browser to crash

2006-08-05 Thread John Chipps-Harding
Hi:I am embedding a movieclip into one of my classes using this method:[Embed(source='/sprites.swf', symbol='PlayerSprite')]private var PlayerSprite:Class;I need to use gotoAndStop to reflect a state change... e.g.:if(_isMoving){ mc.gotoAndStop(walk_+angle);}else{

RE: [flexcoders] Flex 2 DS shared Managed Objects question

2006-08-05 Thread Jeff Vroom
Answers inline: From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Friday, August 04, 2006 8:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 2 DS shared Managed Objects question I'm using Data

[flexcoders] Re: Cairngorm: Managing Application State

2006-08-05 Thread Jason
I am facing the same question. What is the best way to manage application view states with Cairngorm2? The pattern where you use Model: public static var workflowState:Number = 0; public static var VIEWING_SOMETHING:Number = 0; public static var VIEWING_SOMETHING_ELSE:Number = 1;

Re: [flexcoders] Re: filter operator

2006-08-05 Thread Roman Protsiuk
Doh! Right -- e4x. Thanx a lot! 'Cause I've already been thinking of ghosts... ;-)Roma.On 8/5/06, Tim Hoff [EMAIL PROTECTED] wrote: Also, not to be confused with a filter function (Collections). :-) -TH --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL

Re: [flexcoders] Is this a bug, or is it just me?

2006-08-05 Thread Rick Root
sinatosk wrote: hmm... that shouldn't happen... so I'm gonna guessing it's something to do with the way you coded it. Can you post the code that outputs the text to the textarea? if so... post it please Right click on the flex app and view source.

Re: [flexcoders] Re: Help with SharedObject please!

2006-08-05 Thread Jeremy Lu
How about just adding a TextArea control to the stage then trace to it ? On 8/5/06, wayneposner [EMAIL PROTECTED] wrote: If I trace it locally the shared object returns what it's supposed to. I'm still relatively new to flex so pardon my asking, but how

Re: [flexcoders] Is this a bug, or is it just me?

2006-08-05 Thread sinatosk
for to mentionit will only output text what is between the XML tags NOT the attributesand here is the URL to the XML documentation http://livedocs.macromedia.com/flex/2/docs/1910.html#118717 __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Is this a bug, or is it just me?

2006-08-05 Thread sinatosk
ok I can't explain it exactly... but bottom line is... when you drag the one item in... for exampletag att1=v1 att2=v2/and the output will be blank... but if you dotag att1=v1 att2=v2/ tag att1=v3 att2=v4/the output is going to be tag att1=v1 att2=v2/ tag att1=v3 att2=v4/simply because it's not

[flexcoders] Re: Unable to detect change in text selection in textArea...

2006-08-05 Thread Jeff
So, no one else has figured this one out yet either? :( If you have and ideas to pursue, please share! I'm stuck. Cheers, Jeff --- In flexcoders@yahoogroups.com, Jeff [EMAIL PROTECTED] wrote: Seems like there should simply be an event on a textArea called selectionChanged... alas there is

RE: [flexcoders] Create variables dynamic in Flex 2

2006-08-05 Thread Tracy Spratt
Bracket notation works on both sides of an _expression_: this[myVar_+i].someProperty = someValue; someVar = this[myVar_+i].someProperty; Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Ortega Sent: Wednesday, August 02, 2006

[flexcoders] Timer to run function every 30 min

2006-08-05 Thread David Brown
Hello all, I could use some help. I have been livedocs.macromedia.com/flex/2docs looking for a way to create a timer function that would execute a function every 30 min. I found an example of mytimer and looked at a example for simple analog clock. But I am having a hard time

[flexcoders] [Flex Builder 2] Adding Project References doesn't affect classpath?

2006-08-05 Thread astgtciv
Hi, I am trying to refer to an interface InterfaceA defined in Project A from a ClassB in Project B. I checked off Project A in the Project References tab of Project B. However, the interface is still not seen by the compiler. When I add Project A's source directory as an extra source dir to

Re: [flexcoders] Timer to run function every 30 min

2006-08-05 Thread sinatosk
60 * 30 * 100060 secondstimes30 minutestimes1000 milisecondsequals180I recommend using 60 * 30 * 1000 instead of the 180 so it's easier for you to change/debug and then just add an event listener on timer event name along with the function you want it to call upon 30 minutes and then

[flexcoders] extending array functions....or how do I remove duplicates in an array?

2006-08-05 Thread Impudent1
I was beating on this combobox/datagrid thingy and was able to have a measure of success by using the same arraycollection .. BUT, this will populate the dropdown with duplicate entries. I was trying to figure a way around this with flex array manipulation but I just couldnt get it. Searching

[flexcoders] Dumping the State of a Flex 2 Application

2006-08-05 Thread Clarke Bishop
Is there an easy way to dump the state of a Flex 2 application? When there's an error or a user hits the Help button, I want to know where they are in the app. I have various view stacks containing tab navigators, etc. I'd like to know which view stack, tab navigator, etc. the user was on when

Re: [flexcoders] Timer to run function every 30 min

2006-08-05 Thread Jeremy Lu
side note: if you were to use 60 * 30 * 1000, try to write it like this: var interval:Number = 60 * 30 * 1000; then use the variable interval in the timer, so the value won't be calculated everytime needed. On 8/6/06, sinatosk [EMAIL PROTECTED] wrote: 60

Re: [flexcoders] Timer to run function every 30 min

2006-08-05 Thread David Brown
 Thank you for you're help. The timer event is the part I am having trouble with. I don't know how to write or where to start. Any suggestions would be great. David - Original Message - From: sinatosk To: flexcoders@yahoogroups.com Sent: Saturday, August 05, 2006

[flexcoders] Flex 2 documentation set

2006-08-05 Thread Paul Andrews
Anyone know if the Flex2 Documentation set will be made available for purchase? I have a love hate relationship with PDFs! Thanks, Paul -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Dumping the State of a Flex 2 Application

2006-08-05 Thread Nick Collins
why not add a getter setter for a currentLocation variable and each time they go to a section or page of your app, set the variable with some sort of code that you can use, whether descriptive (homePage) or a number code (page0001) or whatever, then tie that code in via your database or an XML

Re: [flexcoders] Is this a bug, or is it just me?

2006-08-05 Thread Rick Root
I still don't understand the following. When you drag one item over, it appears in the tree. The tree has a dataProvider. It contains that one item. dest.dataProvider.toString() absolutely should show something. I understand the whole root node thing, it still doesn't explain why I can't

Re: [flexcoders] will Flash (stand-alone) Remoting be upgraded for Flex 2.0? (ie not FDS)

2006-08-05 Thread Nick Collins
Nope, FDS is Java only, to the best of my knowledge. for .Net support the only current option is WebORB.On 8/3/06, Barry Beattie [EMAIL PROTECTED] wrote: If you dont mind spending $20,000 for flex in order to do something that used to cost 1k. which is kinda

Re: [flexcoders] Flex 2 documentation set

2006-08-05 Thread Nick Collins
http://fedex.kinkos.com/fpfk/index.php?CMP=ILC-FPFK34:-)On 8/5/06, Paul Andrews [EMAIL PROTECTED] wrote: Anyone know if the Flex2 Documentation set will be made available for purchase? I have a love hate relationship with PDFs! Thanks, Paul

[flexcoders] Re: Help with SharedObject please!

2006-08-05 Thread wayneposner
I tried downloading the app. It seems to work fine on any shared object created with earlier versions of Flash, but I was unable to get it to read any of my Shared Objectes created with Flex 2/Flash 9. I know some of my SO's have data in them because I have the data it's retrieving being

Re: [flexcoders] Dumping the State of a Flex 2 Application

2006-08-05 Thread Mike Britton
Alert.show(currentState);Hopefully I'm not oversimplifying this solution - but I think it's what you're asking.Mike __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: