RE: [Flashcoders] full screen window

2007-01-30 Thread Joey Rivera
and in IE 7 there's a bar left behind in fullscreen that you can't remove by default. So unless you plan to scale your content, adjust the area size of your file accordingly. Joey Rivera Flash Developer iLearn, Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: [Flashcoders] Switch case problem...

2006-12-05 Thread Joey Rivera
You putting breaks in the case statements? Joey Rivera Flash Developer iLearn, Inc. (770) 218-0972 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jose Maria Barros Sent: Tuesday, December 05, 2006 1:50 PM To: Flashcoders mailing list Subject

RE: [Flashcoders] Old Flash Problem - Clips stop receiving clicks

2006-11-29 Thread Joey Rivera
_root.focusManager.enabled = false; // or maybe this, we handle our own tabbing functionality MovieClip.prototype.tabEnabled = false; Button.prototype.tabEnabled = false; TextField.prototype.tabEnabled = false; Joey Rivera -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: [Flashcoders] Re: swf and referring domain

2006-11-16 Thread Joey Rivera
name=test align=middle allowScriptAccess=always type=application/x-shockwave-flash pluginspage=http://www.macromedia.com/go/getflashplayer; swLiveConnect=true / /object pbye/p /body /html Let me know if that helps, Joey Rivera ___ Flashcoders

RE: [Flashcoders] Key combination Ctrl+S not allowed?

2006-10-30 Thread Joey Rivera
I haven't tried that combination. But if you can't get that to work, maybe you can start an interval when ctrl is pressed and if s is pressed in the x ms you can run your code. Not sure if this would work but maybe worth a try. Joey Rivera -Original Message- From: [EMAIL PROTECTED

[Flashcoders] Graphics/Flash Animator Openings - Marietta, GA

2006-06-26 Thread Joey Rivera
We are currently looking for 3 or more qualified individuals for the position of Graphics/Flash Animator. More information is provided in the link below: http://www.ilearn.com/jobs Joey Rivera Flash Developer iLearn, Inc

RE: [Flashcoders] ComboBox and Other Flash Components

2006-06-15 Thread Joey Rivera
Are you loading the ComboBox from an external swf (loadMovie) into a movie clip? If so, try putting a copy of the ComboBox component in the library of the root fla or the fla that is doing the loadMovie. Joey Rivera -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: [Flashcoders] browser will not quit!!

2006-06-02 Thread Joey Rivera
Try the following, should close the browser window without a prompt: AS code: // call javascript function closeWindow in html page getURL(javascript:closeWindow()); and add this script in the head of the html page created when you publish your file (same file that loads your swf), JS code: