Re: [Flashcoders] Accessing an Associative Array

2007-03-12 Thread Bill Abel
uot; trace(this[myVar]["elem1"]) //traces "wassup" Jason Merrill Bank of America Global Technology & Operations Learning & Leadership Development eTools & Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [Flashcoders] Accessing an Associative Array

2007-03-12 Thread Bill Abel
7;re passing showPopup a string with the value "myarray", not the array. Remove the quotes and you should be good. -Andy On 3/12/07, Bill Abel <[EMAIL PROTECTED]> wrote: How do you access an associate array using a variable? Inside my function popup["text"]; won

Re: [Flashcoders] Accessing an Associative Array

2007-03-12 Thread Bill Abel
How do you do it where myVar is the array? Is this possible? Or do you always have to specify the array? arr = new Array() arr["elem1"] = "hello" arr["elem2"] = "hi" function testArray(myVar) { trace(myVar["elem2"]); }; testArray(arr); On Mar 12, 2007, at 3:17 PM, Merrill, Jason wrote: ar

[Flashcoders] Accessing an Associative Array

2007-03-12 Thread Bill Abel
How do you access an associate array using a variable? Inside my function popup["text"]; won't access the array. I can't find any information in the books I have Actionsript Cookbook and Actionscript for Flash MX. Anyone dealt with this before? // Define the text and titles for the popups

Re: [Flashcoders] Job - Flash Designer

2007-02-01 Thread Bill Abel
Send inquiries/resumes/portfolios to [EMAIL PROTECTED] On Feb 1, 2007, at 9:02 AM, Bill Abel wrote: Birmingham, AL Flash Designer ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

[Flashcoders] Job - Flash Designer

2007-02-01 Thread Bill Abel
Birmingham, AL Flash Designer About The Slaughter Group: The Slaughter Group is a brand development firm providing sound strategy and exceptional creativity in Corporate and Brand Identity and Strategic Design. The firm has a depth of experience in serving clients with the highest quality

Re: [Flashcoders] Mac Projector won't go fullscreen

2006-12-08 Thread Bill Abel
I've not had time to try it that way yet. I didn't have time to experiment. -b On Dec 7, 2006, at 8:13 PM, Bill Napier wrote: That's weird. I'll be doing this soon too. So, this won't work? //1 //2 fscommand("fullscreen","false"); //3 fscommand("fullscreen","true"); It would be worth it, to

Re: [Flashcoders] Mac Projector won't go fullscreen

2006-12-07 Thread Bill Abel
/4589a649457f5686?lnk=st&q=mac+projector+won%27t+go +full+screen&rnum=1&hl=en#4589a649457f5686 On Dec 7, 2006, at 11:11 AM, Bill Abel wrote: My projector won't go fullscreen on all macs. It works on some, and not on others. I think it works on machines with version 9 instal

Re: [Flashcoders] Mac Projector won't go fullscreen

2006-12-07 Thread Bill Abel
I'm using a projector not Flash Player. A projector is a stand-alone application that has the player embedded. On Dec 7, 2006, at 1:02 PM, T. Michael Keesey wrote: Just out of curiosity, if you're using FP9, then why are you using fscommand instead of ExternalInterface? On 12/

[Flashcoders] Mac Projector won't go fullscreen

2006-12-07 Thread Bill Abel
My projector won't go fullscreen on all macs. It works on some, and not on others. I think it works on machines with version 9 installed. I don't know why that would affect it since it is "stand-alone". I've searched all the forums and found someone having the problem just a few months ag

Re: [Flashcoders] loading external files with a mac projector on cd-rom

2006-12-07 Thread Bill Abel
ac. folderSep=":"; } var path="slides"+folderSep; HTH, Derek -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Bill Abel Sent: Thursday, December 07, 2006 12:27 AM To: Flashcoders mailing list Subject: [Flashcoders] loading external fil

[Flashcoders] loading external files with a mac projector on cd-rom

2006-12-06 Thread Bill Abel
I'm loading some JPEGs into a movieclip using a projector. When I burn the files to disc, it works fine in Windows, but my Mac projector can't find the JPEGs. myClip.loadMovie(path+slide+".jpg"); I tried adding in _url to the path, but that didn't solve the problem. I don't think I need co

Re: [Flashcoders] HTTP post request in the background

2006-09-21 Thread Bill Abel
/www.salescloser.com/XMLAddContact.aspx";, response); ... to the very end of your processForm() function. ― Mike Keesey -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Bill Abel Sent: Thursday, September 21, 2006 10:20 AM To: Flashcoders mailing list

Re: [Flashcoders] HTTP post request in the background

2006-09-21 Thread Bill Abel
MAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Bill Abel Sent: Thursday, September 21, 2006 10:20 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] HTTP post request in the background I'm still having one problem. When I test this movie from within Flash, it sen

Re: [Flashcoders] HTTP post request in the background

2006-09-21 Thread Bill Abel
I'm still having one problem. When I test this movie from within Flash, it sends both LoadVars, but when I try it from the .swf on the web server, it only sends to the .php script. Anyone see the problem? import mx.utils.Delegate; function onResponseComplete(success:Boolean):Void {

Re: [Flashcoders] HTTP post request in the background

2006-09-20 Thread Bill Abel
This works. Thanks so much! Here's the final code... // *** Post data to Sales Closer *** import mx.utils.Delegate; function onResponseComplete(success:Boolean):Void { trace("Completed"); } function processForm() { //process phone number var full_phone_number = phone_tb

Re: [Flashcoders] HTTP post request in the background

2006-09-20 Thread Bill Abel
; //formData.homephone3 = linenumber; formData.email = email_tb.text; //formData.Protocol = "Ing"; trace(formData); formData.send("http://www.hallmanhill.com/cgi-sys/FormMail.pl";, "_self", "POST"); //formData.sendAndLoad(&quo

[Flashcoders] HTTP post request in the background

2006-09-20 Thread Bill Abel
How do you post an array to a server side-script without loading the script's URL in the browser. I can post data using Ruby's Net::HTTP and it works great in a rails app. I want to do the same thing in Flash. LoadVars.send will only work if I load the script's URL into the browser. This