[Flashcoders] ComboBox Halo

2006-06-15 Thread Matthew Simpson
drop down rolls back up. I can use the scroll wheel on my mouse to make a selection. Has anyone encountered this type of behavior? Sincerely, Matthew Simpson Senior U.I. Engineer SmartEquip Inc. 203.604.1309 [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> This e-mail, inc

RE: [Flashcoders] ComboBox Halo

2006-06-15 Thread Matthew Simpson
Steven, The problem went away with a save and compact. Thanks for the assistance! Matthew -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks Sent: Thursday, June 15, 2006 1:12 PM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Combo

RE: [Flashcoders] Junior Developer Flash/Flex Salary?

2006-06-20 Thread Matthew Simpson
55 - 60K is at the bottom of the ladder in the North East USA. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tristan Sent: Tuesday, June 20, 2006 12:03 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Junior Developer Flash/Flex Salary? Ok,

RE: [Flashcoders] Flash AICC tracking

2006-07-26 Thread Matthew Simpson
I have not read the prior posts so I'm not sure if this is what you are looking for, but I pass XML/Vars to JSP servlets all day using: poXML.sendAndLoad(acmm.servletURL+"POManager", poReplyXML); poXML is the doc I send Acmm.servletURL is a dynamic var containing the JSP URL "POManager" is the se

RE: [Flashcoders] Flash AICC tracking

2006-07-26 Thread Matthew Simpson
-- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Simpson Sent: Wednesday, July 26, 2006 2:50 PM To: Flashcoders mailing list Subject: RE: [Flashcoders] Flash AICC tracking I have not read the prior posts so I'm not sure if this is what you are looking for, but I pass XM

RE: [Flashcoders] load/send XML data | Flash/JavaScript Integration Kit

2006-07-28 Thread Matthew Simpson
Or is there a better approach to get the XML in and out of Flash (other than an external file)? Yes, load the data dynamically from the servlet and forget the external XML file altogether. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Maziak, Peter S

RE: [Flashcoders] WSIWYG HTML text editor in Flash?

2006-08-01 Thread Matthew Simpson
Jason, We found a copy of 5 on Limewire...If you fail to find one, let me know off-list. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Tuesday, August 01, 2006 10:29 AM To: Flashcoders mailing list Subject: RE: [Flashcoders] WSIWYG

[Flashcoders] Vanishing Accordion Labels

2006-08-08 Thread Matthew Simpson
re Configuring", icon: "wrenchIcon"}); //Load cart_obj.loadMovie("wgShoppingCartView.swf"); options_obj.loadMovie("wgSelectedOptionsView.swf"); Sincerely, Matthew Simpson Senior U.I. Engineer SmartEquip Inc. 203.604.1309 [EMAIL PROTECTED] <mailto:[EMAIL PROTE

RE: [Flashcoders] trouble with alert component

2006-03-27 Thread Matthew Simpson
We run into that problem here too and eliminate it by adding \n to our messages... HTH Matthew -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robin Burrer Sent: Monday, March 27, 2006 12:52 AM To: Flashcoders mailing list Subject: [Flashcoders] trouble

RE: [Flashcoders] "+" simbol issue help

2006-03-29 Thread Matthew Simpson
I believe your + is not showing b/c it is being interpreted as a mathematical operator and all content post the + sign as octal. Try the "dynamic string"+"+"+"dynamic string" HTH Matthew -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alfredo Laguia S

RE: [Flashcoders] WebService woes

2006-04-21 Thread Matthew Simpson
It's in their WS. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andreas Rønning Sent: Friday, April 21, 2006 10:15 AM To: Flashcoders mailing list Subject: [Flashcoders] WebService woes In the IDE, this works fine, and i have gotten no security sandbox

RE: [Flashcoders] ? page refresh loop ?

2006-04-25 Thread Matthew Simpson
At which point in the movie does the site refresh? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sibrand Hoekstra | Buyways B.V. Sent: Tuesday, April 25, 2006 3:54 AM To: Flashcoders mailing list Subject: [Flashcoders] ? page refresh loop ? Hello List,

RE: [Flashcoders] dynamic creation of a datagrid

2006-05-10 Thread Matthew Simpson
How is the data traveling back to flash from the DB? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, May 10, 2006 1:39 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] dynamic creation of a datagrid Hi, i

RE: [Flashcoders] dynamic creation of a datagrid

2006-05-10 Thread Matthew Simpson
import mx.controls.gridclasses.DataGridColumn; var colNamevar1:DataGridColumn = item_dg.addColumn(new DataGridColumn("colNamevar1")); colNamevar1.headerText = "Name:"; item_dg.addItem({colNamevar1:dynVal1, colNamevar2:dynVal2, colNamevar3:dynVal3}); Inside of a

RE: [Flashcoders] Restrict textarea

2006-05-12 Thread Matthew Simpson
Jonathon, I'm not sure I understand...A user is inputting the special characters as they type? Matthew -Original Message- From: [EMAIL PROTECTED] on behalf of Jonathan Berry Sent: Fri 5/12/2006 6:24 PM To: Flashcoders mailing list Subject: [Flashcoders] Restrict textarea Hello all, I

RE: [Flashcoders] Restrict textarea

2006-05-13 Thread Matthew Simpson
behalf of Jonathan Berry Sent: Sat 5/13/2006 1:08 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Restrict textarea Users are copying and pasting from a command line program and we are getting some special characters that are coming through. On 5/12/06, Matthew Simpson <[EMAIL PROT

RE: [Flashcoders] datagGRid elements alignment

2006-05-15 Thread Matthew Simpson
col.setStyle("textAlign", "center"); -Original Message- From: [EMAIL PROTECTED] on behalf of [EMAIL PROTECTED] Sent: Mon 5/15/2006 12:03 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] datagGRid elements alignment Hi, there is a way to align a datagrid column on the left

RE: [Flashcoders] cellRender and editField questions

2006-05-22 Thread Matthew Simpson
Here's a snippet from one of the dg's I have to edit...HTH var mfrAdmin_dg:DataGrid; var mfrAdmin_dgListener:Object = new Object(); mfrAdmin_dgListener.change = function(evt:Object) { //trace("Selected MFR = "+evt.target.selectedItem.manufacturer); //trace("Selected USR

RE: [Flashcoders] problems loading an image into a movieclip

2006-05-22 Thread Matthew Simpson
this.createEmptyMovieClip("container_mc", 10); container_mc.loadMovie("penguin.bmp"); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, May 22, 2006 12:33 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] pro

RE: [Flashcoders] cellRender and editField questions

2006-05-22 Thread Matthew Simpson
I see...I looked at the example...stupid question is your dg.editable = true? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Monday, May 22, 2006 12:42 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] cellRender and editField

RE: [Flashcoders] dataGrid and editable text...

2006-05-22 Thread Matthew Simpson
As long as the grid itself and the columns within are set to editable, the grid through the IDE or programmatically and the columns programmatically, you should not have any problems accessing a field within...I'd have to look at the code... -Original Message- From: [EMAIL PROTECTED] [m

RE: [Flashcoders] dataGrid and editable text...

2006-05-22 Thread Matthew Simpson
Kool Beanz Grimm... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Monday, May 22, 2006 1:27 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] dataGrid and editable text... AH! Thanks Matthew -- though I didn't set the grid.edi

RE: [Flashcoders] dataGrid and editable text...

2006-05-22 Thread Matthew Simpson
Let me guess...column 1 is un-editable if you try and edit it first, but when you go from an editable column to column 1 sometimes it is editable right? Or is it always editable? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Monday, M

RE: [Flashcoders] dataGrid and editable text...

2006-05-22 Thread Matthew Simpson
Adding focusIn and focusOut listeners as shown below should help you out...I found that even though I set a column to editable.false it would open itself for data occasionally when going (clicking) from an editable cell to an un-editable one...HTH // admin_dg cell focus in listener object var m

RE: [Flashcoders] Can form based nested screens be delayed if not external

2006-05-22 Thread Matthew Simpson
We have found externals are the best way. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rich Rodecker Sent: Monday, May 22, 2006 2:50 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Can form based nested screens be delayed if not external

RE: [Flashcoders] Flex list

2006-05-23 Thread Matthew Simpson
I believe it is on Yahoo John... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Grden Sent: Tuesday, May 23, 2006 10:12 AM To: Flashcoders mailing list Subject: [Flashcoders] Flex list what's the main list people are using for Flex discussion? Tha

RE: [Flashcoders] gotoAndStop and Frame labels as Numbers

2006-05-23 Thread Matthew Simpson
Just curious, but why would you want to use numerics as frame labels then use frameLabel:String? Why not frameLabel:Number? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Fitzpatrick, Kevin Sent: Tuesday, May 23, 2006 1:33 PM To: Flashcoders mailing li

RE: [Flashcoders] gotoAndStop and Frame labels as Numbers

2006-05-23 Thread Matthew Simpson
thing incredibly wrong, too :) Thanks, Kevin Kevin Fitzpatrick Flash Designer, SAP.com Web Services Team - SAP Global Marketing SAP Global Solutions Center 3999 West Chester Pike Newtown Square, PA 19073 C (267) 254-6225 E [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailt

RE: [Flashcoders] Slides/Screens Question - Help!

2006-05-24 Thread Matthew Simpson
Loren, Have you tried using the output panel? EG. Get your external content loaded and running in your preso then debug using List Object/Variables to the output panel. CTRL F to find the .swf you loaded into the preso... -Original Message- From: [EMAIL PROTECTED] on behalf of Loren R.

RE: [Flashcoders] Test CPU/performance/rendering

2006-05-24 Thread Matthew Simpson
AFAIK the system.capabilities object is not capable of determining the highest FPS of the current viewer. Mostly it is for fairly vanilla info such as what FPlayer is running, OS, has Audio, has Video, etceteras. Which is not saying there is not a way to do so. If there is, peeps on this list wi

RE: [Flashcoders] self published.

2006-05-30 Thread Matthew Simpson
I might stand alone on this but these questions popped into my mind before I got to the second paragraph of your post: Why would I want an open channel of communication between my applications (swf's) and you? Why must your utility communicate with your servers? Why would you not create your uti

[Flashcoders] Tab component SDK

2006-05-31 Thread Matthew Simpson
Does anyone know where to acquire the SDK with the v2 tab component? I inquired with Adobe several months ago and was pointed to third party re-sellers which turned into dead ends. Googling returned the same third party dead end results. TIA Matthew __

RE: [Flashcoders] re: self published

2006-05-31 Thread Matthew Simpson
published reply to: Message: 5 Date: Tue, 30 May 2006 20:01:08 -0400 From: "Matthew Simpson" <[EMAIL PROTECTED]> Subject: RE: [Flashcoders] self published. To: "Flashcoders mailing list" Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=&