Re: [flexcoders] Pop-up validation errors from ActionScript ?

2007-11-07 Thread John Grden
did you ever find a solution for this? showing an alert box isn't an option at the end - i need to be able to popup those little red errors within a DataGrid at the time they're dealing with the data rather than just a prolonged mouse over. Thanks for any help, John On 10/9/07, Samuel R. Neff <

[flexcoders] DateFormatter - going BC

2007-05-23 Thread John Grden
has anyone worked with DateFormatter and had to format dates for BC or, how about dates prior to 100AD? Entering apr 21, 100 = April 21, 100 Entering apr 21, 99 = April 21, 1999 now, I realize the issue of "why" a 2 digit date is going to be post 1900 and something formatted 07 will come back as

Re: [flexcoders] Adding a listener to a Move Effect with multiple instances

2007-01-08 Thread John Grden
Did you ever get an answer for this or figure out a solution? I'm getting the samething. If I create a new Sprite() it works, but if I create a new UIComponent() I get this same error. Thoughts? On 10/9/06, shuell2000 <[EMAIL PROTECTED]> wrote: I have something that was working and now is

[flexcoders] Boids algorithm in as2 or as3?

2006-12-07 Thread John Grden
I've seen several entries about people who've toyed with it, but no posts with actual code. has anyone done the 3D conversion? any links to 2d or 3d source would be much appreciated ;) thanks very much, oh and \m/ -- [ JPG ]

Re: [flexcoders] Red 5

2006-11-30 Thread John Grden
AMF3 is in the works, but we don't have an eta On 11/30/06, Mike Shaw <[EMAIL PROTECTED]> wrote: Hi Eduardo, I think Red5 only supports AMF0 so when you create your connection just tell it to use AMF0 connection = new NetConnection(); connection.objectEncoding = ObjectEncoding.AMF0; Mike.

[flexcoders] Compiling with FlashDevelopIDE/mxmlc.exe

2006-11-19 Thread John Grden
I'm getting this error and can't figure out why. I've reinstalled everthing (FD, sdk - you name it). the app compiles without error, but when it loads, I get this in a long line of messages: VerifyError: Error #1079: Native methods are not allowed in loaded code. anyone know what this is? Exp

Re: [flexcoders] how to remove the icons in a tree

2006-10-26 Thread John Grden
what's funny is, that seems to be the only time I get to do flex work ;)On 10/26/06, hank williams <[EMAIL PROTECTED] > wrote: Thanks guys. I thought I had tried assigning it to null but I think I had done "null" instead of "{null}" which of course makes total s

Re: [flexcoders] how to remove the icons in a tree

2006-10-26 Thread John Grden
Yeah, just do:var icon:Class;//return icon without actually assigning it a value:return icon;On 10/26/06, hank williams < [EMAIL PROTECTED]> wrote: I know you can replace the art with your own, and in a pinch I guess I can substitute a really small transparent j

Re: [flexcoders] Re: Drag and Drop tutorials/Samples of mixed types of dragging

2006-10-18 Thread John Grden
Thanks Derrick - that helped.  So essentially, you are using startDrag/stopDrag along doDrag() to accomplish a simple movementThat's what I was really wondering ;)  Thanks Derrick, this really helped,JPG On 10/18/06, Derrick Grigg <[EMAIL PROTECTED]> wrote: The

Re: [flexcoders] Re: Drag and Drop tutorials/Samples of mixed types of dragging

2006-10-17 Thread John Grden
oked through the tutorials and somethings were cleared up, but none of them showed an example of just dragging something around on stage using DragManager.  Seems like I'm barking up the wrong tree on this one. thoughts?On 10/17/06, John Grden <[EMAIL PROTECTED]> wrote: Yeah I had wonde

Re: [flexcoders] Re: Drag and Drop tutorials/Samples of mixed types of dragging

2006-10-17 Thread John Grden
Yeah I had wondered about what was going on with the drag proxy - I'm just getting into it, but this really helps DerrickOn 10/17/06, Derrick Grigg < [EMAIL PROTECTED]> wrote: There is a decent sample in the online Flex docs of dragging an image around. http://

Re: [flexcoders] Drag and Drop tutorials/Samples of mixed types of dragging

2006-10-17 Thread John Grden
awesome thanks for the links everyone, I'll do some homework and let you know how it pans outThanks very much!\m/On 10/17/06, Hua Wei < [EMAIL PROTECTED]> wrote: John,   here are a few examples that might be helpful.   Adding drag-and-drop support http://www

[flexcoders] Drag and Drop tutorials/Samples of mixed types of dragging

2006-10-17 Thread John Grden
I'm just getting into DragManager, and I can succesfully drag a component to another and remove it from one display list to add it to another.but just simply dragging around on stage with DragManager.doDrag - I can't seem to make it work like a simple startDrag() when it just "moves" to that loc

Re: [flexcoders] Simple way to put a border around an image?

2006-10-15 Thread John Grden
p_target.graphics.lineStyle(1, 0xcc, 1.0);p_target.graphics.drawRect(0, 0, p_target.width, p_target.height);  That'll do it,jpgOn 10/16/06, dj <[EMAIL PROTECTED]> wrote: How do you do a simple border around an image, easiest way. Do I really have to use t

Re: [flexcoders] Logging in Flex

2006-09-28 Thread John Grden
Hey Anas, I've put out a test version of Xray's flex2 logger which comes with a panel component if you don't have the xray interface to see your trace out put.  Chris and I modeled it after log4j style of logging.here's an email I sent a while ago about it: I'm in the very early stages of gettin

Re: [flexcoders] bug in Array.splice?

2006-09-26 Thread John Grden
tional parameters: "one or more comma-separated values, or an array, to insert into the array" Cheers, Ralf. On 9/26/06, John Grden < [EMAIL PROTECTED]> wrote: I read the help, and it pretty well spells out that you send optional arguments in the sample, but I could see where it states &

Re: [flexcoders] bug in Array.splice?

2006-09-26 Thread John Grden
I read the help, and it pretty well spells out that you send optional arguments in the sample, but I could see where it states "[, value:Object]  that someone could find that confusing.   The sample at the bottom of the help file shows exactly what you ended up finaly doing:var myFurniture_array

Re: [flexcoders] bug in Array.splice?

2006-09-26 Thread John Grden
that's in case of using a for..in loop with objects.  Arrays are index based and in a for loop you're just asking for the index based on what "i" equals:   for(var i:Number=0;i {     trace(ary[i]); }   it'll trace in order that you pushed the values in.  On 9/26/06, Tracy Spratt <[EMAIL PROTECTE

Re: [flexcoders] suppressing Status Error?

2006-09-21 Thread John Grden
look at using try...catch...finaly in the docs, that's what you'll want to do to handle your errors   jpg  On 9/20/06, aaron smith <[EMAIL PROTECTED]> wrote: hey all, I am wondering how exaclty I suppress this error.. Error #2044: Unhandled StatusEvent:. level=error, code=It is happening wh

Re: [flexcoders] Finding the root clip + getting the URL

2006-09-01 Thread John Grden
icationComplete="{ showURL(); }"> John Grden wrote: > application.url is what you're looking for > > Look at mx.core.Application properties > > hth, > > JPG > > > On 8/31/06, *Daniel Wabyick* <[EMAIL PROTECTED] > [EMAIL PROTECTED]>> wrote:

[flexcoders] Xray Logger for Flex2 - Updated

2006-08-31 Thread John Grden
http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/connector/flex/XrayLogger_as3_alpha.zip?format=raw Apologies to those that tired to compile and got the error as well as the status event errors without having the xray interface open.  My bad!I've fixed those, and compiled and teste

Re: [flexcoders] Finding the root clip + getting the URL

2006-08-31 Thread John Grden
application.url is what you're looking for   Look at mx.core.Application properties   hth,   JPG  On 8/31/06, Daniel Wabyick <[EMAIL PROTECTED]> wrote: I am trying to find the URL in which an application is running. Reading the documentation, I get the impression that I can use the "root"

[flexcoders] XrayLogger for AS3

2006-08-31 Thread John Grden
I'm in the very early stages of getting Xray's connector ported over the AS3 and the first step has been to get the new Logger up and running.  So far, it's working great and I've included an OutputPanel.mxml that users can include it in their app if they don't want to use the xray interface ( p

Re: [flexcoders] Re: Blitz XRay

2006-08-25 Thread John Grden
a AS3 connnector? --- In flexcoders@yahoogroups.com, "John Grden" <[EMAIL PROTECTED]> wrote: > > Sorry, it doesn't support AS3 yet. 1.6 connector is for AS2 applications > only. The Xray interface that communicates with that connector is a Flex2 > application

Re: [flexcoders] Re: Blitz XRay

2006-08-24 Thread John Grden
sing if the OSFlash site stated it supported AS3. How do you put the connector directly into a Flex2 application? Do you have the SWC or AS source code for the connector? Thanks for the info, --- In flexcoders@yahoogroups.com, "John Grden" <[EMAIL PROTECTED]> wrote: > > Y

Re: [flexcoders] Re: Blitz XRay

2006-08-24 Thread John Grden
Yes, click on the link for the 1.6 version:http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/connector/xray_conn_1.6.mxp?format=raw On 8/24/06, Renaun Erickson <[EMAIL PROTECTED]> wrote: The connectors link shows: Connectors (8.11.2006) * La

Re: [flexcoders] Blitz XRay

2006-08-24 Thread John Grden
http://www.osflash.org/xray#connectors_8.11.2006Let mek now if you have any questionsJPGOn 8/24/06, Chad Callahan <[EMAIL PROTECTED]> wrote: I was looking at http://osflash.org/xray for the XRay connector for Flex2 but couldn't find any downloads or l

Re: [flexcoders] Finding the x/y position of an object

2006-08-08 Thread John Grden
I've been using this for a while now:public static function localToLocal(from:MovieClip, to:MovieClip, origin:Object):Object    {        var point:Object = origin == undefined ? {x: 0, y: 0} : origin;        from.localToGlobal(point);        to.globalToLocal(point);        return point;    }   

[flexcoders] Was: Why does it take so long

2006-08-08 Thread John Grden
I think it WAS the filter for gmail-- [  JPG  ] __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

Re: [flexcoders] Why does it take so long for a message to appear on this list?

2006-08-08 Thread John Grden
I see them on other lists, but maybe there is something wrong with the flexcoders filter - thanks for the tip ;)On 8/8/06, Tom Chiverton < [EMAIL PROTECTED]> wrote:On Monday 07 August 2006 21:50, John Grden wrote: > I think the issue is that on this list, you don't see your own

Re: [flexcoders] Why does it take so long for a message to appear on this list?

2006-08-07 Thread John Grden
I think the issue is that on this list, you don't see your own post.I think that's something they should turn on if that's possible.  I always check on other lists to make sure my post made it, it'd be nice if this one was the same ;) On 8/7/06, Dave Bobby <[EMAIL PROTECTED]> wrote:

Re: [flexcoders] Styles editor

2006-08-04 Thread John Grden
://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html . - Sam John Grden wrote: > > Has that little gem been updated for the final release of FP9/flex 2? > > -- > John Grden > > -- John Grden __._,_.___ -- Flexcoders

[flexcoders] Styles editor

2006-08-04 Thread John Grden
Has that little gem been updated for the final release of FP9/flex 2?-- John Grden __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] VideoPlayer.metadataReceived - were'd it go?

2006-07-24 Thread John Grden
I did a search on the archives and through gmail/google and can't seem to find the infoany clues, much appreciated -- John Grden __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archiv

[flexcoders] Re: Flash/ASO and ZoneAlarm Security Suite (v6.5.714.000).

2006-06-21 Thread John Grden
They're latest version fixes this issue.  Just released yesterdayOn 6/21/06, John Grden <[EMAIL PROTECTED]> wrote: If you use zone alarm and you did the latest update (like I did), you might notice that you're going through a slight nightmare right now with file modified dates n

[flexcoders] Flash/ASO and ZoneAlarm Security Suite (v6.5.714.000).

2006-06-21 Thread John Grden
4.000) apparently causes this issue.  You need to downgrade to the last version or un-install until they get a fix together.Hth,PS> I'm going to verbally harass them to tears and general weeping.  No need to spam them...nah, go ahead. -- John Grden - Blitz __._,_.___ -- Flexcoders Mailing L

[flexcoders] labs downloads site down?

2006-06-20 Thread John Grden
https://www.adobe.com/cfusion/entitlement/index.cfm?e=labsisn't working, anyone else seeing this?-- John Grden - Blitz __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexc

Re: [flexcoders] How to recover from 'cleaning' project?

2006-06-19 Thread John Grden
s. On 6/19/06, John Grden <[EMAIL PROTECTED]> wrote: This worked for me just fine ;)  Thanks for the help,JGOn 6/15/06, Michael Schmalle < [EMAIL PROTECTED] > wrote: Hi, This is what I do, Rename your project, oldProj or something. Create a new project

Re: [flexcoders] How to recover from 'cleaning' project?

2006-06-19 Thread John Grden
The University of Aberdeen Open Day 29th August 2006 Booking is essential www.abdn.ac.uk/openday email [EMAIL PROTECTED] or call 0800 027 1495 -- What goes up, does come down. -- John Grden - Blitz __._,_.___ -- Flexcoders Mailing List

Re: [flexcoders] How to drag a file into Flash?

2006-06-11 Thread John Grden
led me with dragndropn everywhere and anywhere :) -- John Grden - Blitz __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] Resize handle hack?

2006-06-10 Thread John Grden
thing?   private function updateSize(xdif:Number, ydif:Number):void{ width = mouseX+xdif; height = mouseY+ydif;} -- John Grden - Blitz __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail

[flexcoders] 2 Flash players, 2nd one seems to take over keyboard events

2006-06-08 Thread John Grden
nyone else experience this? in the application node:keyDown="trapKeys(event)" keyUp="trapKeys(event)" the simple method:private function trapKeys(event:KeyboardEvent):void{  OutputTools.tt([event]);}-- John Grden - Blitz __._,_.___ -- Flexcoders Mailing List FAQ: http://gro

Re: [flexcoders] Size of Stage when flash player 9 loads

2006-06-07 Thread John Grden
or the width and height. Good luck, Daniel On 6/5/06, John Grden <[EMAIL PROTECTED]> wrote: > > >Right now, it's a tiny 550x400 or something like that. Is there a way to specify the size when loaded in the player rather than the browser? > > -- > John Grden - Blitz

Re: [flexcoders] Release date? Maybe 15th

2006-06-06 Thread John Grden
Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -- What goes up, does come down. -- John Grden - Blitz __._,_.___ -- Flexcoders

[flexcoders] Size of Stage when flash player 9 loads

2006-06-05 Thread John Grden
Right now, it's a tiny 550x400 or something like that.  Is there a way to specify the size when loaded in the player rather than the browser?-- John Grden - Blitz __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Arc

Re: [flexcoders] Datagrid itemEditor different per row

2006-06-05 Thread John Grden
http://labs.blitzagency.com/wp-content/xray/flex2/Xray.htmlright click>View SourceOk, just be warned, although this is open source, I haven't cleaned up the source ;)  I had 5 days (yes, 5) to convert the old Xray interface into flex2, so there's some "not so elegant code" - go easy on me ;) Wha

Re: [flexcoders] Datagrid itemEditor different per row

2006-06-04 Thread John Grden
Macromedia flex Software development best practice YAHOO! GROUPS LINKS  Visit your group "flexcoders" on the web.   To unsubscribe from this group, send an email to:  [EMAIL PROTECTED]   Your use of Ya

[flexcoders] MetaData with VideoDisplay: Resolved

2006-06-04 Thread John Grden
audiodelay = 0  audiocodecid = 2   videodatarate = 512  creationdate = Sat Jun 03 22:23:00 2006-- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoo

[flexcoders] VideoDisplay and getting metadata

2006-06-04 Thread John Grden
the "info" property, it's nullThanks!-- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

Re: [flexcoders] [Flex2Beta3] Error in Tree.expandChildrenOf()

2006-06-04 Thread John Grden
excoders" on the web.   To unsubscribe from this group, send an email to:  [EMAIL PROTECTED]   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service . -- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flex

[flexcoders] LocalConnection - how to trap whether a send() failed or not

2006-06-02 Thread John Grden
quot;, error]);        }    with the status handler, I get this for all calls, even when I've removed the remoteMethod for testing: ec.status: [StatusEvent type="status" bubbles=false cancelable=false eventPhase=2 code=null level="status"]: How do I capture when send

Re: [flexcoders] Opening root node to show it's children just after loading data

2006-06-01 Thread John Grden
true);This seems retarded, and I know there's a very simple "hey, just access XMLDoc.root" type of thing, so that's why I'm posting this ;)Thanks agian for the help, On 6/1/06, John Grden <[EMAIL PROTECTED]> wrote: BindingAh ok yeah ;) I'll try that - thanks TracyO

Re: [flexcoders] Opening root node to show it's children just after loading data

2006-06-01 Thread John Grden
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of John Grden Sent: Thursday, June 01, 2006 3:59 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Opening root node to show it's children just after loading data   Yeah, I saw that, but how do I get "item"

Re: [flexcoders] Opening root node to show it's children just after loading data

2006-06-01 Thread John Grden
would be the root node of the xml dataProvider.   Tracy   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of John Grden Sent: Thursday, June 01, 2006 2:42 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Opening root node to show it's c

[flexcoders] Opening root node to show it's children just after loading data

2006-06-01 Thread John Grden
f the Tree control. The following example calls this method as part of the handler for the creationComplete event to expand the first root node of the tree : Tree id=" tree 1" ... creationComplete="init Tree ();" >... Tree >-- John Grden - Blitz -- Fl

[flexcoders] Open root node in Tree

2006-06-01 Thread John Grden
thought maybe it was timing, but I tried having it wait before calling that and still the same error exists. Any ideas?-- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders

Re: [flexcoders] Re: setting a property on a textfield not initialy shown yet

2006-06-01 Thread John Grden
  When the text field control is created, the binding to the variable should execute. -TH --- In flexcoders@yahoogroups.com, "John Grden" <[EMAIL PROTECTED]> wrote: > > awesome, thanks very much, i'll take a gander ;) > > JG > > On 5/31/06, Tracy Spratt &

Re: [flexcoders] Re: setting a property on a textfield not initialy shown yet

2006-06-01 Thread John Grden
.  When the text field control is created, the binding to the variable should execute. -TH --- In flexcoders@yahoogroups.com, "John Grden" <[EMAIL PROTECTED]> wrote: > > awesome, thanks very much, i'll take a gander ;) > > JG > > On 5/31/06, Tracy Spratt &

Re: [flexcoders] setting a property on a textfield not initialy shown yet

2006-06-01 Thread John Grden
lto:flexcoders@yahoogroups.com] On Behalf Of John Grden Sent: Wednesday, May 31, 2006 8:22 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] setting a property on a textfield not initialy shown yet   I have a textfield I want to set the text to, but it's in a viewStack index that do

[flexcoders] setting a property on a textfield not initialy shown yet

2006-05-31 Thread John Grden
he viewStack to change (that I can do no problemo), and set the text on the next line.  What do I need to do to initialize() that sucker so I can do this?  wHen I trace it out, it's null and initialize() isn't even a method I can call. any ideas on what to do?Tanks!-- John Grden - Blitz

Re: [flexcoders] Flex + OpenAMF

2006-05-31 Thread John Grden
use of Yahoo! Groups is subject to the Yahoo! Terms of Service . -- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

Re: [flexcoders] CSS Value for '{cssValue}' not supported

2006-05-31 Thread John Grden
ut no replyhas anyone figured it out or have an answer?-- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

Re: [flexcoders] Re: Windowless floating Flex apps - ?

2006-05-30 Thread John Grden
send an email to:  [EMAIL PROTECTED]   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service . -- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/fl

Re: [flexcoders] Re: Updating the Tooltip for Datagrid

2006-05-30 Thread John Grden
m this group, send an email to:  [EMAIL PROTECTED]   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service . -- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archive

Re: [flexcoders] Windowless floating Flex apps - ?

2006-05-30 Thread John Grden
e swf to do this, sometimes I also use Zinc or other 3rd party projector to wrap swf inside. On 5/30/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: What exactly do you mean? A flex app that has windows or on the dexktop? Peace, MikeOn 5/30/06, John Grden < [EMAIL PROTECTED]> wrot

[flexcoders] Windowless floating Flex apps - ?

2006-05-30 Thread John Grden
What's the way to do this with Flex/FP9?   Has anyone tried it?-- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPON

Re: [flexcoders] Accessing child nodes from XMLDocument in a datagrid

2006-05-28 Thread John Grden
ware development best practice YAHOO! GROUPS LINKS  Visit your group "flexcoders" on the web.   To unsubscribe from this group, send an email to:  [EMAIL PROTECTED]   Your use of Yahoo! Groups is subject to the Yahoo! Term

Re: [flexcoders] Re: Updating the Tooltip for Datagrid

2006-05-28 Thread John Grden
orDescription}" toolTip="{ data.authorDescription}"/>                             --- In flexcoders@yahoogroups.com, "John Grden" <[EMAIL PROTECTED]> wrote: >> I've got a datagrid and have bou

[flexcoders] Updating the Tooltip for Datagrid

2006-05-28 Thread John Grden
s for your help,-- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

[flexcoders] CSS Value for '{cssValue}' not supported

2006-05-27 Thread John Grden
I searched the archives and found 1 question about this, but no replyhas anyone figured it out or have an answer?-- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders

Re: [flexcoders] addEventListener and setting events in mxml

2006-05-26 Thread John Grden
Yeah, that's what I just found out.  it used to be nodeOpen, now it's itemOpenTHanks just the same TomJGOn 5/26/06, Tom Chiverton < [EMAIL PROTECTED]> wrote:On Wednesday 24 May 2006 21:27, John Grden wrote: > 1.  Why won't this work? treeView.addEventListener("nodeO

[flexcoders] TextArea.maxVerticalScrollPosition - getting the box to continually scroll to the max v position

2006-05-25 Thread John Grden
every text addition btw. Thanks for the help,-- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

[flexcoders] addEventListener and setting events in mxml

2006-05-24 Thread John Grden
ugh the archives and demo Tree code was very helpful, but I couldn't locate a topic for this issue-- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.c

[flexcoders] addEventListener and setting events in xml

2006-05-23 Thread John Grden
ugh the archives and demo Tree code was very helpful, but I couldn't locate a topic for this issue-- John Grden - Blitz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.c