RE: [Flashcoders] ASO files, file times, and classes, oh my

2007-05-08 Thread Matt Samet
com.plasticbrain.tools.Compiler { } // - On 2007-05-07, at 10:57 AM, Matt Samet wrote: Hi, I have a project I'm working on that contains multiple class files. Every now and then someone is working on these files who is located in a different time zone. They check

[Flashcoders] ASO files, file times, and classes, oh my

2007-05-07 Thread Matt Samet
Hi, I have a project I'm working on that contains multiple class files. Every now and then someone is working on these files who is located in a different time zone. They check in their changes, I get them, and all hell breaks loose with Flash. It's always the same error: **Error**

RE: [Flashcoders] Changing Green (halogreen) highlight color

2007-04-24 Thread Matt Samet
_global.style.setStyle(themeColor, 0x6092B8); Replace 0x6092B8 with whatever color you want. You can even use string literals like haloGreen, haloBlue, etc. -=matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Tuesday, April 24,

RE: [Flashcoders] links behaviors in a data grid component

2007-04-24 Thread Matt Samet
I'm not sure what you mean. Are you trying to display clickable links (instead of just regular text) inside cells in a DataGrid? If so, you probably want to use a CellRenderer to do this. CellRenderers allow you to display custom content in each cell of a column inside the DataGrid. They can be

RE: [Flashcoders] Getting frustrated. regarding set Interval, and for loop.

2007-02-28 Thread Matt Samet
Paul: I understand what you're trying to do (make a time-delay slide show of images). Using setInterval for that is fine, but you have to make sure you're using it correctly. Calling setInterval will set up a flash system timer that will call your function every X milliseconds. It will keep

[Flashcoders] Internet Explorer and CTRL keyboard trapping

2007-02-23 Thread Matt Samet
Hi, I was wondering if anyone here knew anything about how to get this to work in IE 6 or 7 (Windows XP or Vista; Flash Player 9): var listener = {}; listener.onKeyDown = function() { var lastKey = Key.getCode(); if(Key.isDown(Key.CONTROL) lastKey == 65) //65 == A {

RE: [Flashcoders] Transparent list component

2006-12-19 Thread Matt Samet
Hi, Try this code: _global.styles.ScrollSelectList.backgroundColor = null; mx.controls.listclasses.SelectableRow.prototype.drawRowFill = function (mc:MovieClip, newClr:Number):Void { mc.clear(); var bgAlpha = 100; //opaque - no alpha defined var dg =