Re: [Flashcoders] MovieClip Opacity

2009-02-04 Thread K-Dawg
On Wed, Feb 4, 2009 at 8:59 PM, -whispers-  wrote:

> are you embedding the fonts?
>

No.  Though when I do and then try to enumerate the fonts, I get 0 fonts and
no text shows up.  I guess I don't understand what the embedding fonts do.
I'll have to read more on that.

Thanks.

Kevin
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] MovieClip Opacity

2009-02-04 Thread -whispers-
are you embedding the fonts?
  - Original Message - 
  From: K-Dawg 
  To: Flash Coders List 
  Sent: Wednesday, February 04, 2009 6:10 PM
  Subject: [Flashcoders] MovieClip Opacity


  Hi,

  I am adding a jpg and two text boxes to a movieClip.  I am then changing the
  opacity on a timer to fade in, and fade out.  The jpg fades in and out just
  fine but the text boxes stay, so the whole image fades out and the text
  remains until it switches as the next set comes on screen.

  Is there anything I need to do to make the text get affected by the alpha
  change?

  Thanks.

  Kevin
  ___
  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


[Flashcoders] MovieClip Opacity

2009-02-04 Thread K-Dawg
Hi,

I am adding a jpg and two text boxes to a movieClip.  I am then changing the
opacity on a timer to fade in, and fade out.  The jpg fades in and out just
fine but the text boxes stay, so the whole image fades out and the text
remains until it switches as the next set comes on screen.

Is there anything I need to do to make the text get affected by the alpha
change?

Thanks.

Kevin
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] How to turn off the DEBUG mode with Google Analytics

2009-02-04 Thread ekameleon
Hello :)

?? use the value "false" in the last argument of the constructor ? Read the
documentation of the class :

http://code.google.com/p/gaforflash/wiki/API

search the GATracker class reference ;)

The full signature of the constructor is :

GATracker(display:DisplayObject,
account:String, mode:String = "AS3", visualDebug:Boolean = false, config:
Configuration=
null, debug:
DebugConfiguration=
null)

You can disable the visual debug with the parameter visualDebug :

var tracker:AnalyticsTracker = new GATracker( this, "UA-111-222", "AS3",
false );

or not use the last arguments :

var tracker:AnalyticsTracker = new GATracker( this, "UA-111-222", "AS3" ) ;

PS : you can use the constructor with only two arguments if you want use the
default AS3 mode :

var tracker:AnalyticsTracker = new GATracker( this, "UA-111-222" ) ;

EKA + :)

2009/2/4 ACE Flash 

> Hey there,
>
> How can I turn off the debug mode by as3? so I am able to run it on the
> production server.  thanks
>
> ===
>
> import com.google.analytics.AnalyticsTracker;
> import com.google.analytics.GATracker;
> import com.google.analytics.debug.*;
>
> var tracker:AnalyticsTracker = new GATracker( this, "UA-111-222", "AS3",
> true );
> playGame.addEventListener( MouseEvent.CLICK, onButtonClick );
> function onButtonClick( event:Event ):void {
>  trace("test");
>  tracker.trackPageview("/myGame1");
> }
> ___
> 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


[Flashcoders] How to turn off the DEBUG mode with Google Analytics

2009-02-04 Thread ACE Flash
Hey there,

How can I turn off the debug mode by as3? so I am able to run it on the
production server.  thanks

===

import com.google.analytics.AnalyticsTracker;
import com.google.analytics.GATracker;
import com.google.analytics.debug.*;

var tracker:AnalyticsTracker = new GATracker( this, "UA-111-222", "AS3",
true );
playGame.addEventListener( MouseEvent.CLICK, onButtonClick );
function onButtonClick( event:Event ):void {
 trace("test");
 tracker.trackPageview("/myGame1");
}
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] really help needed here.

2009-02-04 Thread Keith Reinfeld
You're welcome, Gus. No problem. 

Regards, 

-Keith 
http://keithreinfeld.home.comcast.net
 

> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-
> boun...@chattyfig.figleaf.com] On Behalf Of Gustavo Duenas LRS
> Sent: Wednesday, February 04, 2009 1:09 PM
> To: Flash Coders List
> Subject: Re: [Flashcoders] really help needed here.
> 
> You are the best, thanks yOu brother...GOD bless you.
> 
> Gus
> 
> 
> On Feb 4, 2009, at 12:24 AM, Keith Reinfeld wrote:
> 
> > trace("event.target.name =",event.target.name);
> 
> ___
> 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


Re: [Flashcoders] really help needed here.

2009-02-04 Thread Gustavo Duenas LRS

You are the best, thanks yOu brother...GOD bless you.

Gus


On Feb 4, 2009, at 12:24 AM, Keith Reinfeld wrote:


trace("event.target.name =",event.target.name);


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] jpeg enhancement

2009-02-04 Thread [p e r c e p t i c o n]
Hi,
I'm loading them...appreciate all the tips...
cheers

percy

On Wed, Feb 4, 2009 at 12:05 AM, Hans Wichman <
j.c.wich...@objectpainters.com> wrote:

> Hi,
>
> are you loading them or are they in the library?
> greetz
> JC
>
>
>
> On Tue, Feb 3, 2009 at 3:45 PM, Matt S.  wrote:
>
> > As Laurent said, check the smoothing, eg "image.smoothing = true;" ,
> > that's almost always the issue, especially if they're being scaled
> > down and appearing jaggy. This is assuming you're not scaling your
> > JPG's > 100%, for which there's not much you can do, although
> > smoothing helps somewhat.
> >
> > .m
> >
> > On Mon, Feb 2, 2009 at 7:21 PM, [p e r c e p t i c o n]
> >  wrote:
> > > Hi All,I have some JPEGs that I display in my app...the problem is that
> > the
> > > quality isn't so great...does anyone know of a way to enhance the
> quality
> > of
> > > a jpeg once you load it or am i skrewed
> > > thanks
> > > percy
> > > ___
> > > 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
> >
> ___
> 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


Re: [Flashcoders] OT: Internet Explorer 8

2009-02-04 Thread Nate Beck
 I use: http://browsershots.org/

To quickly check rendering in different browsers.

On Wed, Feb 4, 2009 at 8:39 AM, jonathan howe wrote:

> Regarding being able to test in older versions of IE (since you can't run
> parallel versions).
> I used this program for a little while:
> http://www.my-debugbar.com/wiki/IETester/HomePage
> I think they actually use the real rendering engine via OLE but it has its
> flaws as well.
> It's been a year or so since I've done that kind of work and thus since
> I've
> used the product but give it a shot.
>
> Looks like they included IE8 beta 2..
>
> -jonathan
>
>
> P.S. My gmail client is broken in IE8 beta as I type this, so if it's bad
> enough for Google, it's bad enough for your client! (Oh, wait, Gmail claims
> it's still in beta itself)
>
>
>
>
> On Tue, Feb 3, 2009 at 11:55 PM, Vayu Robins  wrote:
>
> > Thanks for all the good feedback on this! :-)
> >
> >
> > On 2/3/09 8:25 PM, "John Dowdell"  wrote:
> >
> > > Vayu Robins wrote, when finding that an existing HTML site was reported
> > > to not render correctly in this week's IE8 release candidate:
> > >> Does anybody have any comments on this? Should I download the IE8
> > version
> > >> and find the problem?  I am on a mac, using Parallels Desktop, Windows
> > XP.
> > >
> > > I've heard other reports of newer HTML clients not supporting existing
> > > websites, but I haven't tracked the pre-release details. Best resource
> I
> > > know of for user-experience changes is the IE team's own weblog:
> > > http://blogs.msdn.com/ie/
> > >
> > > That said, it may be a client/developer contractual agreement about
> > > which browsers to test against. If they specified IE6 and IE7 for the
> > > Microsoft-branded browsers, then it doesn't seem quite fair to suddenly
> > > add another version (particularly a pre-release) to that matrix. But if
> > > the required clientside runtimes were not specified in the original
> > > contract, then that could make things stickier... it sounds like they
> > > accepted the project, then wanted to make changes after the project was
> > > "finished". Tricky problem!  :(
> > >
> > > jd
> > >
> > >
> > >
> > >
> >
> >
> >  ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
>
>
>
> --
> -jonathan howe
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



-- 

Cheers,
Nate

http://blog.natebeck.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Does Flash fire any event(s) when...

2009-02-04 Thread Nate Beck
Use ExternalInterface and close out the browser using Javascript.

On Wed, Feb 4, 2009 at 7:31 AM, Cor  wrote:

> I have my swf in a html-page, but it is set to fullscreen.
> I create a close button.
> But I can't seem to figure out how to close the swf and at the same time
> the html page correctly with AS3.
> Any ideas?
>
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:
> flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Eric E. Dolecki
> Sent: woensdag 4 februari 2009 16:26
> To: Flash Coders List
> Subject: Re: [Flashcoders] Does Flash fire any event(s) when...
>
> Ya, too bad there isn't something akin to what AIR has
> (NativeApplication.nativeApplication.addEventListener(
> Event.EXITING,... )
>
> On Wed, Feb 4, 2009 at 9:58 AM, Andrew Murphy 
> wrote:
>
> > Hi Eric. :)
> >
> > Unfortunately Event.DEACTIVATE also fires if a user clicks on a different
> > tab in their browser or a different application in their desktop.
> >
> >
> > 
> > Andrew Murphy
> > Interactive Media Specialist
> > amur...@delvinia.com
> >
> > Delvinia
> > 214 King Street West, Suite 214
> > Toronto Canada M5H 3S6
> >
> > P 416.364.1455 ext. 232  F 416.364.9830  W www.delvinia.com
> >
> > CONFIDENTIALITY NOTICE
> > This email message may contain privileged or confidential information. If
> > you are not the intended recipient or received this communication by
> error,
> > please notify the sender and delete the message without copying or
> > disclosing it.
> >
> > AVIS DE CONFIDENTIALITÉ
> > Ce message peut contenir de l'information légalement privilégiée ou
> > confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir reçu
> par
> > erreur ce message, nous vous saurions gré d'en aviser l'émetteur et d'en
> > détruire le contenu sans le communiquer a d'autres ou le reproduire.
> >
> >
> >
> > > -Original Message-
> > > From: flashcoders-boun...@chattyfig.figleaf.com
> > > [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf
> > > Of Eric E. Dolecki
> > > Sent: Wednesday, February 04, 2009 8:50 AM
> > > To: Flash Coders List
> > > Subject: Re: [Flashcoders] Does Flash fire any event(s) when...
> > >
> > > There is
> > > stage.addEventListener( Event.DEACTIVATE, method );
> > > stage.addEventListener( Event.ACTIVATE, method );
> > >
> > > - eric
> > >
> > > 2009/2/4 Andrew Murphy 
> > >
> > > > Hi. :)
> > > >
> > > > I was wondering if a .swf embedded in a web page fires and
> > > event(s) when...
> > > >
> > > >
> > > > 1) ...the user navigates away from the page.
> > > >
> > > > 2) ...the user closes the browser window.
> > > >
> > > >
> > > > I doubt that it does but thought I'd check with the experts
> > > here first.
> > > > Thank you. :)
> > > >
> > > >
> > > > 
> > > > Andrew Murphy
> > > > Interactive Media Specialist
> > > >   amur...@delvinia.com
> > > >
> > > > Delvinia
> > > > 214 King Street West, Suite 214
> > > > Toronto Canada M5H 3S6
> > > >
> > > > P 416.364.1455 ext. 232  F 416.364.9830  W www.delvinia.com
> > > >
> > > > CONFIDENTIALITY NOTICE
> > > > This email message may contain privileged or confidential
> > > information.
> > > > If you are not the intended recipient or received this
> > > communication
> > > > by error, please notify the sender and delete the message without
> > > > copying or disclosing it.
> > > >
> > > > AVIS DE CONFIDENTIALITÉ
> > > > Ce message peut contenir de l'information légalement privilégiée ou
> > > > confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir
> > > > reçu par erreur ce message, nous vous saurions gré d'en aviser
> > > > l'émetteur et d'en détruire le contenu sans le communiquer
> > > a d'autres ou le reproduire.
> > > >
> > > >
> > > > ___
> > > > Flashcoders mailing list
> > > > Flashcoders@chattyfig.figleaf.com
> > > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > > >
> > >
> > >
> > >
> > > --
> > > http://ericd.net
> > > Interactive design and development
> > > ___
> > > 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
> >
>
>
>
> --
> http://ericd.net
> Interactive design and development
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> No virus found in this incoming message.
> Checked by AVG - http://www.avg.com
> Version: 8.0.176 / Virus Database: 270.10.17/1934 - Release Date: 4-2-2009
> 8:24
>
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyf

Re: [Flashcoders] OT: Internet Explorer 8

2009-02-04 Thread jonathan howe
Regarding being able to test in older versions of IE (since you can't run
parallel versions).
I used this program for a little while:
http://www.my-debugbar.com/wiki/IETester/HomePage
I think they actually use the real rendering engine via OLE but it has its
flaws as well.
It's been a year or so since I've done that kind of work and thus since I've
used the product but give it a shot.

Looks like they included IE8 beta 2..

-jonathan


P.S. My gmail client is broken in IE8 beta as I type this, so if it's bad
enough for Google, it's bad enough for your client! (Oh, wait, Gmail claims
it's still in beta itself)




On Tue, Feb 3, 2009 at 11:55 PM, Vayu Robins  wrote:

> Thanks for all the good feedback on this! :-)
>
>
> On 2/3/09 8:25 PM, "John Dowdell"  wrote:
>
> > Vayu Robins wrote, when finding that an existing HTML site was reported
> > to not render correctly in this week's IE8 release candidate:
> >> Does anybody have any comments on this? Should I download the IE8
> version
> >> and find the problem?  I am on a mac, using Parallels Desktop, Windows
> XP.
> >
> > I've heard other reports of newer HTML clients not supporting existing
> > websites, but I haven't tracked the pre-release details. Best resource I
> > know of for user-experience changes is the IE team's own weblog:
> > http://blogs.msdn.com/ie/
> >
> > That said, it may be a client/developer contractual agreement about
> > which browsers to test against. If they specified IE6 and IE7 for the
> > Microsoft-branded browsers, then it doesn't seem quite fair to suddenly
> > add another version (particularly a pre-release) to that matrix. But if
> > the required clientside runtimes were not specified in the original
> > contract, then that could make things stickier... it sounds like they
> > accepted the project, then wanted to make changes after the project was
> > "finished". Tricky problem!  :(
> >
> > jd
> >
> >
> >
> >
>
>
>  ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



-- 
-jonathan howe
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Does Flash fire any event(s) when...

2009-02-04 Thread Cor
I have my swf in a html-page, but it is set to fullscreen.
I create a close button.
But I can't seem to figure out how to close the swf and at the same time the 
html page correctly with AS3.
Any ideas?

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com 
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Eric E. Dolecki
Sent: woensdag 4 februari 2009 16:26
To: Flash Coders List
Subject: Re: [Flashcoders] Does Flash fire any event(s) when...

Ya, too bad there isn't something akin to what AIR has
(NativeApplication.nativeApplication.addEventListener(
Event.EXITING,... )

On Wed, Feb 4, 2009 at 9:58 AM, Andrew Murphy  wrote:

> Hi Eric. :)
>
> Unfortunately Event.DEACTIVATE also fires if a user clicks on a different
> tab in their browser or a different application in their desktop.
>
>
> 
> Andrew Murphy
> Interactive Media Specialist
> amur...@delvinia.com
>
> Delvinia
> 214 King Street West, Suite 214
> Toronto Canada M5H 3S6
>
> P 416.364.1455 ext. 232  F 416.364.9830  W www.delvinia.com
>
> CONFIDENTIALITY NOTICE
> This email message may contain privileged or confidential information. If
> you are not the intended recipient or received this communication by error,
> please notify the sender and delete the message without copying or
> disclosing it.
>
> AVIS DE CONFIDENTIALITÉ
> Ce message peut contenir de l'information légalement privilégiée ou
> confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir reçu par
> erreur ce message, nous vous saurions gré d'en aviser l'émetteur et d'en
> détruire le contenu sans le communiquer a d'autres ou le reproduire.
>
>
>
> > -Original Message-
> > From: flashcoders-boun...@chattyfig.figleaf.com
> > [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf
> > Of Eric E. Dolecki
> > Sent: Wednesday, February 04, 2009 8:50 AM
> > To: Flash Coders List
> > Subject: Re: [Flashcoders] Does Flash fire any event(s) when...
> >
> > There is
> > stage.addEventListener( Event.DEACTIVATE, method );
> > stage.addEventListener( Event.ACTIVATE, method );
> >
> > - eric
> >
> > 2009/2/4 Andrew Murphy 
> >
> > > Hi. :)
> > >
> > > I was wondering if a .swf embedded in a web page fires and
> > event(s) when...
> > >
> > >
> > > 1) ...the user navigates away from the page.
> > >
> > > 2) ...the user closes the browser window.
> > >
> > >
> > > I doubt that it does but thought I'd check with the experts
> > here first.
> > > Thank you. :)
> > >
> > >
> > > 
> > > Andrew Murphy
> > > Interactive Media Specialist
> > >   amur...@delvinia.com
> > >
> > > Delvinia
> > > 214 King Street West, Suite 214
> > > Toronto Canada M5H 3S6
> > >
> > > P 416.364.1455 ext. 232  F 416.364.9830  W www.delvinia.com
> > >
> > > CONFIDENTIALITY NOTICE
> > > This email message may contain privileged or confidential
> > information.
> > > If you are not the intended recipient or received this
> > communication
> > > by error, please notify the sender and delete the message without
> > > copying or disclosing it.
> > >
> > > AVIS DE CONFIDENTIALITÉ
> > > Ce message peut contenir de l'information légalement privilégiée ou
> > > confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir
> > > reçu par erreur ce message, nous vous saurions gré d'en aviser
> > > l'émetteur et d'en détruire le contenu sans le communiquer
> > a d'autres ou le reproduire.
> > >
> > >
> > > ___
> > > Flashcoders mailing list
> > > Flashcoders@chattyfig.figleaf.com
> > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > >
> >
> >
> >
> > --
> > http://ericd.net
> > Interactive design and development
> > ___
> > 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
>



-- 
http://ericd.net
Interactive design and development
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

No virus found in this incoming message.
Checked by AVG - http://www.avg.com 
Version: 8.0.176 / Virus Database: 270.10.17/1934 - Release Date: 4-2-2009 8:24


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Does Flash fire any event(s) when...

2009-02-04 Thread Eric E. Dolecki
Ya, too bad there isn't something akin to what AIR has
(NativeApplication.nativeApplication.addEventListener(
Event.EXITING,... )

On Wed, Feb 4, 2009 at 9:58 AM, Andrew Murphy  wrote:

> Hi Eric. :)
>
> Unfortunately Event.DEACTIVATE also fires if a user clicks on a different
> tab in their browser or a different application in their desktop.
>
>
> 
> Andrew Murphy
> Interactive Media Specialist
> amur...@delvinia.com
>
> Delvinia
> 214 King Street West, Suite 214
> Toronto Canada M5H 3S6
>
> P 416.364.1455 ext. 232  F 416.364.9830  W www.delvinia.com
>
> CONFIDENTIALITY NOTICE
> This email message may contain privileged or confidential information. If
> you are not the intended recipient or received this communication by error,
> please notify the sender and delete the message without copying or
> disclosing it.
>
> AVIS DE CONFIDENTIALITÉ
> Ce message peut contenir de l'information légalement privilégiée ou
> confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir reçu par
> erreur ce message, nous vous saurions gré d'en aviser l'émetteur et d'en
> détruire le contenu sans le communiquer a d'autres ou le reproduire.
>
>
>
> > -Original Message-
> > From: flashcoders-boun...@chattyfig.figleaf.com
> > [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf
> > Of Eric E. Dolecki
> > Sent: Wednesday, February 04, 2009 8:50 AM
> > To: Flash Coders List
> > Subject: Re: [Flashcoders] Does Flash fire any event(s) when...
> >
> > There is
> > stage.addEventListener( Event.DEACTIVATE, method );
> > stage.addEventListener( Event.ACTIVATE, method );
> >
> > - eric
> >
> > 2009/2/4 Andrew Murphy 
> >
> > > Hi. :)
> > >
> > > I was wondering if a .swf embedded in a web page fires and
> > event(s) when...
> > >
> > >
> > > 1) ...the user navigates away from the page.
> > >
> > > 2) ...the user closes the browser window.
> > >
> > >
> > > I doubt that it does but thought I'd check with the experts
> > here first.
> > > Thank you. :)
> > >
> > >
> > > 
> > > Andrew Murphy
> > > Interactive Media Specialist
> > >   amur...@delvinia.com
> > >
> > > Delvinia
> > > 214 King Street West, Suite 214
> > > Toronto Canada M5H 3S6
> > >
> > > P 416.364.1455 ext. 232  F 416.364.9830  W www.delvinia.com
> > >
> > > CONFIDENTIALITY NOTICE
> > > This email message may contain privileged or confidential
> > information.
> > > If you are not the intended recipient or received this
> > communication
> > > by error, please notify the sender and delete the message without
> > > copying or disclosing it.
> > >
> > > AVIS DE CONFIDENTIALITÉ
> > > Ce message peut contenir de l'information légalement privilégiée ou
> > > confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir
> > > reçu par erreur ce message, nous vous saurions gré d'en aviser
> > > l'émetteur et d'en détruire le contenu sans le communiquer
> > a d'autres ou le reproduire.
> > >
> > >
> > > ___
> > > Flashcoders mailing list
> > > Flashcoders@chattyfig.figleaf.com
> > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > >
> >
> >
> >
> > --
> > http://ericd.net
> > Interactive design and development
> > ___
> > 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
>



-- 
http://ericd.net
Interactive design and development
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Does Flash fire any event(s) when...

2009-02-04 Thread Andrew Murphy
Hi Eric. :)

Unfortunately Event.DEACTIVATE also fires if a user clicks on a different tab 
in their browser or a different application in their desktop.



Andrew Murphy
Interactive Media Specialist
amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W www.delvinia.com

CONFIDENTIALITY NOTICE
This email message may contain privileged or confidential information. If you 
are not the intended recipient or received this communication by error, please 
notify the sender and delete the message without copying or disclosing it.

AVIS DE CONFIDENTIALITÉ
Ce message peut contenir de l'information légalement privilégiée ou 
confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir reçu par 
erreur ce message, nous vous saurions gré d'en aviser l'émetteur et d'en 
détruire le contenu sans le communiquer a d'autres ou le reproduire.

 

> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com 
> [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
> Of Eric E. Dolecki
> Sent: Wednesday, February 04, 2009 8:50 AM
> To: Flash Coders List
> Subject: Re: [Flashcoders] Does Flash fire any event(s) when...
> 
> There is
> stage.addEventListener( Event.DEACTIVATE, method ); 
> stage.addEventListener( Event.ACTIVATE, method );
> 
> - eric
> 
> 2009/2/4 Andrew Murphy 
> 
> > Hi. :)
> >
> > I was wondering if a .swf embedded in a web page fires and 
> event(s) when...
> >
> >
> > 1) ...the user navigates away from the page.
> >
> > 2) ...the user closes the browser window.
> >
> >
> > I doubt that it does but thought I'd check with the experts 
> here first.
> > Thank you. :)
> >
> >
> > 
> > Andrew Murphy
> > Interactive Media Specialist
> >   amur...@delvinia.com
> >
> > Delvinia
> > 214 King Street West, Suite 214
> > Toronto Canada M5H 3S6
> >
> > P 416.364.1455 ext. 232  F 416.364.9830  W www.delvinia.com
> >
> > CONFIDENTIALITY NOTICE
> > This email message may contain privileged or confidential 
> information. 
> > If you are not the intended recipient or received this 
> communication 
> > by error, please notify the sender and delete the message without 
> > copying or disclosing it.
> >
> > AVIS DE CONFIDENTIALITÉ
> > Ce message peut contenir de l'information légalement privilégiée ou 
> > confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir 
> > reçu par erreur ce message, nous vous saurions gré d'en aviser 
> > l'émetteur et d'en détruire le contenu sans le communiquer 
> a d'autres ou le reproduire.
> >
> >
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> 
> 
> 
> --
> http://ericd.net
> Interactive design and development
> ___
> 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


Re: [Flashcoders] Does Flash fire any event(s) when...

2009-02-04 Thread Charles Parcell
I am not aware of Flash making these event calls but JavaScript can
(unLoad).

Charles P.



2009/2/4 Andrew Murphy 

> Hi. :)
>
> I was wondering if a .swf embedded in a web page fires and event(s) when...
>
>
> 1) ...the user navigates away from the page.
>
> 2) ...the user closes the browser window.
>
>
> I doubt that it does but thought I'd check with the experts here first.
> Thank you. :)
>
>
> 
> Andrew Murphy
> Interactive Media Specialist
>   amur...@delvinia.com
>
> Delvinia
> 214 King Street West, Suite 214
> Toronto Canada M5H 3S6
>
> P 416.364.1455 ext. 232  F 416.364.9830  W www.delvinia.com
>
> CONFIDENTIALITY NOTICE
> This email message may contain privileged or confidential information. If
> you are not the intended recipient or received this communication by error,
> please notify the sender and delete the message without copying or
> disclosing it.
>
> AVIS DE CONFIDENTIALITÉ
> Ce message peut contenir de l'information légalement privilégiée ou
> confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir reçu par
> erreur ce message, nous vous saurions gré d'en aviser l'émetteur et d'en
> détruire le contenu sans le communiquer a d'autres ou le reproduire.
>
>
> ___
> 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


Re: [Flashcoders] Does Flash fire any event(s) when...

2009-02-04 Thread Eric E. Dolecki
There is
stage.addEventListener( Event.DEACTIVATE, method );
stage.addEventListener( Event.ACTIVATE, method );

- eric

2009/2/4 Andrew Murphy 

> Hi. :)
>
> I was wondering if a .swf embedded in a web page fires and event(s) when...
>
>
> 1) ...the user navigates away from the page.
>
> 2) ...the user closes the browser window.
>
>
> I doubt that it does but thought I'd check with the experts here first.
> Thank you. :)
>
>
> 
> Andrew Murphy
> Interactive Media Specialist
>   amur...@delvinia.com
>
> Delvinia
> 214 King Street West, Suite 214
> Toronto Canada M5H 3S6
>
> P 416.364.1455 ext. 232  F 416.364.9830  W www.delvinia.com
>
> CONFIDENTIALITY NOTICE
> This email message may contain privileged or confidential information. If
> you are not the intended recipient or received this communication by error,
> please notify the sender and delete the message without copying or
> disclosing it.
>
> AVIS DE CONFIDENTIALITÉ
> Ce message peut contenir de l'information légalement privilégiée ou
> confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir reçu par
> erreur ce message, nous vous saurions gré d'en aviser l'émetteur et d'en
> détruire le contenu sans le communiquer a d'autres ou le reproduire.
>
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



-- 
http://ericd.net
Interactive design and development
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Does Flash fire any event(s) when...

2009-02-04 Thread Andrew Murphy
Hi. :)

I was wondering if a .swf embedded in a web page fires and event(s) when...
 
 
1) ...the user navigates away from the page.
 
2) ...the user closes the browser window.
 
 
I doubt that it does but thought I'd check with the experts here first.
Thank you. :)
 


Andrew Murphy
Interactive Media Specialist
  amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W www.delvinia.com

CONFIDENTIALITY NOTICE
This email message may contain privileged or confidential information. If
you are not the intended recipient or received this communication by error,
please notify the sender and delete the message without copying or
disclosing it.

AVIS DE CONFIDENTIALITÉ
Ce message peut contenir de l'information légalement privilégiée ou
confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir reçu par
erreur ce message, nous vous saurions gré d'en aviser l'émetteur et d'en
détruire le contenu sans le communiquer a d'autres ou le reproduire.

 
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] jpeg enhancement

2009-02-04 Thread Hans Wichman
Hi,

are you loading them or are they in the library?
greetz
JC



On Tue, Feb 3, 2009 at 3:45 PM, Matt S.  wrote:

> As Laurent said, check the smoothing, eg "image.smoothing = true;" ,
> that's almost always the issue, especially if they're being scaled
> down and appearing jaggy. This is assuming you're not scaling your
> JPG's > 100%, for which there's not much you can do, although
> smoothing helps somewhat.
>
> .m
>
> On Mon, Feb 2, 2009 at 7:21 PM, [p e r c e p t i c o n]
>  wrote:
> > Hi All,I have some JPEGs that I display in my app...the problem is that
> the
> > quality isn't so great...does anyone know of a way to enhance the quality
> of
> > a jpeg once you load it or am i skrewed
> > thanks
> > percy
> > ___
> > 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
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders