[Flashcoders] Camera Privacy Dialog Box

2007-03-05 Thread Edmund Kim

Any way to re-skin this dialog box or to replace the "allow" camera
access interaction with a button/ActionScript within the Flash movie?

Thanks.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Re: Flashcoders Digest, Vol 18, Issue 60

2006-07-23 Thread kim
Thank you for your email.  I will be out of the office Friday, 7/21.  If you 
need any assistance, please contact Paul Sternglass at [EMAIL PROTECTED] or 
914-614-0046.


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Re: Flashcoders Digest, Vol 18, Issue 59

2006-07-22 Thread kim
Thank you for your email.  I will be out of the office Friday, 7/21.  If you 
need any assistance, please contact Paul Sternglass at [EMAIL PROTECTED] or 
914-614-0046.


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Re: Flashcoders Digest, Vol 18, Issue 58

2006-07-21 Thread kim
Thank you for your email.  I will be out of the office Friday, 7/21.  If you 
need any assistance, please contact Paul Sternglass at [EMAIL PROTECTED] or 
914-614-0046.


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Re: Flashcoders Digest, Vol 18, Issue 57

2006-07-21 Thread kim
Thank you for your email.  I will be out of the office Friday, 7/21.  If you 
need any assistance, please contact Paul Sternglass at [EMAIL PROTECTED] or 
914-614-0046.


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Re: Flashcoders Digest, Vol 18, Issue 56

2006-07-21 Thread kim
Thank you for your email.  I will be out of the office Friday, 7/21.  If you 
need any assistance, please contact Paul Sternglass at [EMAIL PROTECTED] or 
914-614-0046.


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Re: Flashcoders Digest, Vol 18, Issue 55

2006-07-20 Thread kim
Thank you for your email.  I will be out of the office Friday, 7/21.  If you 
need any assistance, please contact Paul Sternglass at [EMAIL PROTECTED] or 
914-614-0046.


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Strange XML loading issues

2006-03-02 Thread Harry Kim
Hi folks,

 

I'm hoping someone can help here with a strange XML issue I can't seem to
solve. I've created a few dozen lessons in Flash for a client, where each
lessons reads an XML file 11 - 15 KB in size. Everything works great, except
once in a while the XML doesn't load in IE (have no problems in Firefox). I
have a simple xml.onLoad function as follows:

 

my_xml = new XML();

my_xml ignoreWhite = true;

my_xml.onLoad = function (success) { 

if (success) {

...

} else {

trace("*** ERROR: Cannot load " + xmlFile);

}

}

my_xml.load(xmlFile);

 

Most of the time, this works. But sometimes in IE, I get the above error
message and it seems like the onLoad fails without timing out (I get the
error right away). It's kind of a serious issue for me because all my
lessons depend on these xml files. Has anyone encountered this before?

 

I know it's not the no cache headers issue because most of the time, the
lessons work. I figure it's not a timeout issue because I get the error
right instantaneously. It's difficult to debug because I can't seem to
replicate the error consistently. Can anyone help, please? Thanx!

 

harry

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] External class changes not being reflected in the output! Any idea?

2005-10-18 Thread Shinhee Kim
Try ASO Clear command made by Mike Chamber.

http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn111&extID=1016963#loc=en_us&view=sn111&extID=1016963&viewName=Flash%20Extension&avm=1
 Your problem sounds like related to cached class file, which is called ASO.

 On 10/17/05, David Lochhead <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I'm late to the party in adopting external classes for my work but
> hey, I'm here now! :)
>
> Anyway I have an incredibly frustrating problem in that when I change
> the code in my class it doesn't seem to be updated when I republish.
> I'm using Flash 8 and SEPY.
>
> E.g. Here's my class. Simple as it is.
>
> class Banana {
>
> private var owner:MovieClip;
>
> function Banana(createdBy:MovieClip) {
> owner = createdBy;
> tr('Banana Created');
> owner._x = 100;
> owner._y = 100;
> }
>
> public static function tr() {
> trace(arguments.join(" : "));
> }
> }
>
> And in my FLA the only code is.
>
> bob = new Banana(bob); - bob being a square movieclip.
>
> Now when I publish it i get the output: Banana Created
>
> However, if I change the trace in the class to "Apple Created" and
> republish I still get "Banana Created". i.e. it hasn't updated.
>
> It's driving me nuts. Am I missing something painfully obvious?
>
> Cheers,
>
> Dave
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders