RE: [Flashcoders] Flash Player and IT Security Policies

2007-08-14 Thread John Dowdell
[Hey! You crossposted to multiple groups! Now all the volunteer listmasters 
will have to deal with busywork when someone hits "reply all!"  :(  ]


Chris Velevitch wrote:
> A large corporate/government organisation's IT department has refused
> to update the flash player due "IT security policy".
>
> Any ideas on why they would do that and what can be done to convince
> them to change?

First, find out more... knowing the most about what's driving that decision can 
give you the most leverage to change it.

Some things I'd try to learn:
 --  current major version they're installing (sometimes they approve new 
software only once every few years)
 --  whether they're currently up-to-date on the minor version (in such cases 
security fixes are okay)
 --  what their actual policies on updates and security fixes are
 --  how they're handling other updates, like Adobe Reader or anti-viral
 --  what is it that makes them think they should not keep their Internet 
software current

No answer, I know, but a path...?

jd/adobe
___
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] Flash Player and IT Security Policies

2007-08-14 Thread Chris Velevitch
A large corporate/government organisation's IT department has refused
to update the flash player due "IT security policy".

Any ideas on why they would do that and what can be done to convince
them to change?

-- 
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
m: 0415 469 095
www.flashdev.org.au
___
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] Random Question about throwing/catching Error

2007-08-14 Thread Jer Brand
I get the jist of it, and it make sense. Originally I was just hoping for
some magical trigger or hidden method of the Error object, or some side
effect of catch, but I'm guessing that's entirely handled by the vm. This
makes sense though

I'm still looking at my class above saying "How can a parent class know what
the child is doing!!"  But it works... scary!

On 8/14/07, Hans Wichman <[EMAIL PROTECTED]> wrote:
>
> ps i noticed they are still old sources online, but the general principle
> is
> the same, contact me offlist if you'd like the latest sources of that
> example.
>
> On 8/14/07, Hans Wichman <[EMAIL PROTECTED]> wrote:
> >
> > Hi,
> > ive implemented this for AS2:
> > http://www.objectpainters.com/downloads/globalerrorhandler.zip
> >
> > Basically, each exception subclasses RuntimeException.
> >
> > Each time a RuntimeException is created, is it scheduled to be displayed
> > to the user after the current call unwinds, unless the exception is
> > consumed. This adds a little overhead, eg instead of
> >
> > try {
> > ..} catch (e) {
> > print
> > }
> >
> > you would have to do:
> >  try {
> > ..} catch (e) {
> > print
> > e.consume();
> > }
> >
> > If the error is not consumed before the current call returns, the
> > onUncaughtException method will be called on a IRuntimeExceptionHandler.
> You
> > can implement and set this handler yourself, be it a dialog, a call to a
> > serverside script etc.
> >
> > HTH
> > JC
> >
> >
> >
> > On 8/14/07, Jer Brand <[EMAIL PROTECTED]> wrote:
> > >
> > > What I was after was a little different.  I was originally hoping to
> > > have
> > > uncaught errors trigger a loadvars object to send a message to a php
> > > page
> > > using error_log().
> > >
> > > I did come up with an alternative, though I have a nagging feeling
> that
> > > I'm
> > > utilizing a bug to do what I want -- unless a parent class should know
> > > it's
> > > been implemented in a subclass using a particular interface.
> > >
> > > Here's my cheesize solution for my primary Error class:
> > >
> > > import ICritical ;
> > > import IReported ;
> > >
> > > class StdError extends Error
> > > {
> > >public var message:String ;
> > >private static var sendError:LoadVars ;
> > >private static var errorSrc:String  = "";
> > >
> > >function StdError(msg:String)
> > >{
> > >message = msg ;
> > >
> > >if(this instanceof ICritical)
> > >{
> > >// display a message
> > >stdout.error("error is critical") ;
> > >}
> > >if(this instanceof IReported)
> > >{
> > >stdout.error("error was reported to qa") ;
> > >if(sendError == undefined)
> > >{
> > >StdError.sendError = new LoadVars() ;
> > >}
> > >StdError.sendError.message = message ;
> > >StdError.sendError.name  =
> > > name ;
> > >StdError.sendError.sendAndLoad(StdError.errorSrc, null) ;
> > >}
> > >}
> > >
> > >public function get name():String
> > >{
> > >return "StdError";
> > >}
> > >
> > >public function toString():String
> > >{
> > >return name + ": " + message ;
> > >}
> > > }
> > >
> > > with child classes just implementing the interface to trigger the
> > > behavior
> > > like :
> > >
> > > class CriticalReportedError extends StdError implements ICritical,
> > > IReported
> > > {
> > >function CriticalReportedError(message)
> > >{
> > >super(message) ;
> > >}
> > >public function get name():String
> > >{
> > >return "CriticalReportedError";
> > >}
> > >
> > > This feels like I'm doing something very, very wrong... Seem stupid to
> > > anyone else?
> > > ___
> > > 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@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@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] IOError on https under IE7

2007-08-14 Thread Ammon Lauritzen
I have a swf that is being loaded off of an https server. As it fires
up, it attempts to call a simple authentication service that lives on
the same host. This works fine under Firefox, Opera, and Safari.

However, under IE, it throws an exception:

[IOErrorEvent type="ioError" bubbles=false cancelable=false
eventPhase=2 text="Error #2032: Stream Error. URL:
https://host/path/script.php?username=allaryin&passwd=hash";]

Obviously, if I just load the url directly into IE, it loads fine.
This problem only occurs when flash tries to load the url for me.

When I monitor the query with Charles, it shows that the request is
being made correctly and that the information I am expecting is
successfully being returned. However, Flash is apparently ignoring the
response.

This behavior has been observed on different machines, running both XP
and Vista.

Thoughts?

Ammon
___
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] Random Question about throwing/catching Error

2007-08-14 Thread Hans Wichman
ps i noticed they are still old sources online, but the general principle is
the same, contact me offlist if you'd like the latest sources of that
example.

On 8/14/07, Hans Wichman <[EMAIL PROTECTED]> wrote:
>
> Hi,
> ive implemented this for AS2:
> http://www.objectpainters.com/downloads/globalerrorhandler.zip
>
> Basically, each exception subclasses RuntimeException.
>
> Each time a RuntimeException is created, is it scheduled to be displayed
> to the user after the current call unwinds, unless the exception is
> consumed. This adds a little overhead, eg instead of
>
> try {
> ..} catch (e) {
> print
> }
>
> you would have to do:
>  try {
> ..} catch (e) {
> print
> e.consume();
> }
>
> If the error is not consumed before the current call returns, the
> onUncaughtException method will be called on a IRuntimeExceptionHandler. You
> can implement and set this handler yourself, be it a dialog, a call to a
> serverside script etc.
>
> HTH
> JC
>
>
>
> On 8/14/07, Jer Brand <[EMAIL PROTECTED]> wrote:
> >
> > What I was after was a little different.  I was originally hoping to
> > have
> > uncaught errors trigger a loadvars object to send a message to a php
> > page
> > using error_log().
> >
> > I did come up with an alternative, though I have a nagging feeling that
> > I'm
> > utilizing a bug to do what I want -- unless a parent class should know
> > it's
> > been implemented in a subclass using a particular interface.
> >
> > Here's my cheesize solution for my primary Error class:
> >
> > import ICritical ;
> > import IReported ;
> >
> > class StdError extends Error
> > {
> >public var message:String ;
> >private static var sendError:LoadVars ;
> >private static var errorSrc:String  = "";
> >
> >function StdError(msg:String)
> >{
> >message = msg ;
> >
> >if(this instanceof ICritical)
> >{
> >// display a message
> >stdout.error("error is critical") ;
> >}
> >if(this instanceof IReported)
> >{
> >stdout.error("error was reported to qa") ;
> >if(sendError == undefined)
> >{
> >StdError.sendError = new LoadVars() ;
> >}
> >StdError.sendError.message = message ;
> >StdError.sendError.name  =
> > name ;
> >StdError.sendError.sendAndLoad(StdError.errorSrc, null) ;
> >}
> >}
> >
> >public function get name():String
> >{
> >return "StdError";
> >}
> >
> >public function toString():String
> >{
> >return name + ": " + message ;
> >}
> > }
> >
> > with child classes just implementing the interface to trigger the
> > behavior
> > like :
> >
> > class CriticalReportedError extends StdError implements ICritical,
> > IReported
> > {
> >function CriticalReportedError(message)
> >{
> >super(message) ;
> >}
> >public function get name():String
> >{
> >return "CriticalReportedError";
> >}
> >
> > This feels like I'm doing something very, very wrong... Seem stupid to
> > anyone else?
> > ___
> > 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@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] Random Question about throwing/catching Error

2007-08-14 Thread Hans Wichman
Hi,
ive implemented this for AS2:
http://www.objectpainters.com/downloads/globalerrorhandler.zip

Basically, each exception subclasses RuntimeException.

Each time a RuntimeException is created, is it scheduled to be displayed to
the user after the current call unwinds, unless the exception is consumed.
This adds a little overhead, eg instead of

try {
..} catch (e) {
print
}

you would have to do:
 try {
..} catch (e) {
print
e.consume();
}

If the error is not consumed before the current call returns, the
onUncaughtException method will be called on a IRuntimeExceptionHandler. You
can implement and set this handler yourself, be it a dialog, a call to a
serverside script etc.

HTH
JC



On 8/14/07, Jer Brand <[EMAIL PROTECTED]> wrote:
>
> What I was after was a little different.  I was originally hoping to have
> uncaught errors trigger a loadvars object to send a message to a php page
> using error_log().
>
> I did come up with an alternative, though I have a nagging feeling that
> I'm
> utilizing a bug to do what I want -- unless a parent class should know
> it's
> been implemented in a subclass using a particular interface.
>
> Here's my cheesize solution for my primary Error class:
>
> import ICritical ;
> import IReported ;
>
> class StdError extends Error
> {
>public var message:String ;
>private static var sendError:LoadVars ;
>private static var errorSrc:String  = "";
>
>function StdError(msg:String)
>{
>message = msg ;
>
>if(this instanceof ICritical)
>{
>// display a message
>stdout.error("error is critical") ;
>}
>if(this instanceof IReported)
>{
>stdout.error("error was reported to qa") ;
>if(sendError == undefined)
>{
>StdError.sendError = new LoadVars() ;
>}
>StdError.sendError.message = message ;
>StdError.sendError.name = name ;
>StdError.sendError.sendAndLoad(StdError.errorSrc, null) ;
>}
>}
>
>public function get name():String
>{
>return "StdError";
>}
>
>public function toString():String
>{
>return name + ": " + message ;
>}
> }
>
> with child classes just implementing the interface to trigger the behavior
> like :
>
> class CriticalReportedError extends StdError implements ICritical,
> IReported
> {
>function CriticalReportedError(message)
>{
>super(message) ;
>}
>public function get name():String
>{
>return "CriticalReportedError";
>}
>
> This feels like I'm doing something very, very wrong... Seem stupid to
> anyone else?
> ___
> 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@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] Random Question about throwing/catching Error

2007-08-14 Thread Jer Brand
What I was after was a little different.  I was originally hoping to have
uncaught errors trigger a loadvars object to send a message to a php page
using error_log().

I did come up with an alternative, though I have a nagging feeling that I'm
utilizing a bug to do what I want -- unless a parent class should know it's
been implemented in a subclass using a particular interface.

Here's my cheesize solution for my primary Error class:

import ICritical ;
import IReported ;

class StdError extends Error
{
public var message:String ;
private static var sendError:LoadVars ;
private static var errorSrc:String  = "";

function StdError(msg:String)
{
message = msg ;

if(this instanceof ICritical)
{
// display a message
stdout.error("error is critical") ;
}
if(this instanceof IReported)
{
stdout.error("error was reported to qa") ;
if(sendError == undefined)
{
StdError.sendError = new LoadVars() ;
}
StdError.sendError.message = message ;
StdError.sendError.name = name ;
StdError.sendError.sendAndLoad(StdError.errorSrc, null) ;
}
}

public function get name():String
{
return "StdError";
}

public function toString():String
{
return name + ": " + message ;
}
}

with child classes just implementing the interface to trigger the behavior
like :

class CriticalReportedError extends StdError implements ICritical, IReported
{
function CriticalReportedError(message)
{
super(message) ;
}
public function get name():String
{
return "CriticalReportedError";
}

This feels like I'm doing something very, very wrong... Seem stupid to
anyone else?
___
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] Fonts on a Mac not working in Flash

2007-08-14 Thread Andrew Guldman
Does anybody have any idea why this happens? Can anybody provide any 
suggestions for identifying which font names differ within Flash? Any 
way we might determine this programmatically?


Thanks!
Andrew

Mario Piepenbrink wrote:
just for fun some of the fonts get named differently when in the  
dropdown where for instance a bold version of a font would be named  'B 
Fontname' this happens to about 10% of my fonts, good thing is  that 
they always are named that way so it isn't random. Flash is  probably 
picking up on the internal naming of the font I guess. When  using CSS 
or font on OSX you will have to use the name as in the  dropdown.


e.g. happy hunting

cheers,
mario



On Jan 26, 2007, at 1:59 AM, Chris W. Paterson wrote:

So, I copied them to the system library and even enable them in  font 
book but the font will now show up in my font drop down...  It  works 
fine in photoshop.  I tried restarting the flash IDE over and  over 
and even rebooting my Mac like 6 times!


it's an open type font (.otf).  Has anyone ever had this problem?

Thanks in advance!
Chris









__ 
__

Never miss an email again!
Yahoo! Toolbar alerts you the instant new Mail arrives.
http://tools.search.yahoo.com/toolbar/features/mail/
___
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@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@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] Random Question about throwing/catching Error

2007-08-14 Thread T. Michael Keesey
This isn't a foolproof idea, but you could do something like this:

package myErrors {
class TrackedError extends Error {
function TrackedError(message:String = "", id:int = 0) {
super(message, id);
_instances.push(this);
}
public static function get instances():Array {
return _instances.concat();
}
private static var _instances:Array = [];
}
}

With that, TrackedError.instances would be a way to access a list of
all TrackedError objects (and instances of subclasses of TrackedError)
which have ever been instantiated. But if, in your code, you
instantiate TrackedError (or a subclass thereof) and don't throw it,
it would still appear in TrackedError.instances, so it's not a
reliable way to get a list of errors which have been thrown but not
caught, just a list of all instances. Also, it requires that you only
use TrackedError or subclasses thereof, which is not terribly elegant.

Maybe there's a better way, but I'm not sure.

On 8/14/07, Jer Brand <[EMAIL PROTECTED]> wrote:
> I'm thinking there's no real answer to this question, but here goes:  Is
> there any way for a subclass of Error to know whether it has been caught?
>
> This is working in AS2, but if AS3 is different, it would be good to know.
>
> My [un]bright idea was to have an ErrorHandler class record any uncaught
> errors to the server logs, and potentially display a message to the user,
> send email, etc.
>
> My guess is that the FlashPlayer is the only thing that's aware of uncaught
> Errors, but I'd thought  I'd ask the experts.
>
> Thanks for the help
> Jer
> ___
> 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
>


-- 
T. Michael Keesey
Director of Technology
Exopolis, Inc.
2894 Rowena Avenue Ste. B
Los Angeles, California 90039
--
The Dinosauricon: http://dino.lm.com
Parry & Carney: http://parryandcarney.com
ISPN Forum: http://www.phylonames.org/forum/
___
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] Random Question about throwing/catching Error

2007-08-14 Thread Jer Brand
I'm thinking there's no real answer to this question, but here goes:  Is
there any way for a subclass of Error to know whether it has been caught?

This is working in AS2, but if AS3 is different, it would be good to know.

My [un]bright idea was to have an ErrorHandler class record any uncaught
errors to the server logs, and potentially display a message to the user,
send email, etc.

My guess is that the FlashPlayer is the only thing that's aware of uncaught
Errors, but I'd thought  I'd ask the experts.

Thanks for the help
Jer
___
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] as3 ColorMatrix class

2007-08-14 Thread quinrou .
Thx Jack will take a look at it.

On 8/14/07, Jack Doyle <[EMAIL PROTECTED]> wrote:
>
> Seb, there's something very similar built into the TweenFilterLite class
> which is available in AS2 and AS3. It lets you tween contrast, hue,
> saturation, brightness, colorization, threshold, etc. as well as other
> filters like glows, blurs, etc.
>
> www.TweenFilterLite.com (there's a link to the AS3 version)
>
> Jack
>
>
> -Original Message-
> Date: Tue, 14 Aug 2007 16:21:02 +0100
> From: "quinrou ." <[EMAIL PROTECTED]>
> Subject: [Flashcoders] as3 ColorMatrix class
> To: "Flashcoders mailing list" 
> Message-ID:
> <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hi all,
>
> I after the AS3 versino of the grant Skinner ColorMatrix class (
> http://www.gskinner.com/blog/archives/2005/09/flash_8_source.html ). Has
> anyone converted to AS3?
>
> If yes could you share it?
>
> many thanks
>
> Seb
>
>
>
> ___
> 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@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] Classes 101 [was: Version control and Flash ]

2007-08-14 Thread T. Michael Keesey
On 8/14/07, Hans Wichman <[EMAIL PROTECTED]> wrote:
> Just on a side note, its not just -ow-what-shall-we-use-today- its a more
> fundamental conceptual issue as well, such as are you dealing with a is-a
> relationship or has-a or is-part-of-a etc.
>
> I don't know if better class hierarchies change that, but maybe they
> could...

Try working in Flex for a while and get back to me

One of the big problems with extending MovieClip in AS2 is that things
like _x, _y, etc. are basically just public variables. Thus
composition is often a good strategy simply because there's no way to
override these properties otherwise. But with the AS3 classes, you can
override anything: x, y, width, height, rotation, etc. (That's exactly
how the MX components work.)

Another advantage is that there are more classes to extend. In AS2, it
has to be a MovieClip, even if you just want to draw a box. But AS3
has Shape, Sprite, MovieClip, etc. You can extend the class that has
the functionality you need and no more. (Well, not much more)

Of course there are still cases where composition (as in a non-display
object wrapping a display object) is better, but I find them to be
much fewer in AS3.

-- 
T. Michael Keesey
Director of Technology
Exopolis, Inc.
2894 Rowena Avenue Ste. B
Los Angeles, California 90039
--
The Dinosauricon: http://dino.lm.com
Parry & Carney: http://parryandcarney.com
ISPN Forum: http://www.phylonames.org/forum/
___
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] Q: Best solution for 360 pans in flash

2007-08-14 Thread Jesse Graupmann
http://www.visicam.de/ - Panorama360 ( Papervision3D )
http://www.popforge.de/ - CubicVR360

___
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] no list updates for several days!

2007-08-14 Thread Brenda Hicks
I had the same problem last week and then all of a sudden, a flood of
messages. Mail programs... who can figure 'em?

Regards,

BH 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Hans Wichman
Sent: Tuesday, August 14, 2007 10:13 AM
To: [EMAIL PROTECTED]; Flashcoders mailing list
Subject: Re: [Flashcoders] no list updates for several days!

Hi,
the list is working m8, lots of posts coming in.
You can check this for yourself in the online flashcoder archive, all posts
can be found there as well.

greetz
JC


On 8/14/07, dave matthews <[EMAIL PROTECTED]> wrote:
>
> hi all,
>
> Haven't seen a list posting from flashcoders for several days...
> wondering what's up?
>
> Maybe hotmail is stopping the list.
>
> Seems weird, any feedback appreciated.
>
> Thanks,
> Dave Matthews
>
> _
> Booking a flight? Know when to buy with airfare predictions on MSN Travel.
> http://travel.msn.com/Articles/aboutfarecast.aspx&ocid=T001MSN25A07001
>
> ___
> 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@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@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] as3 ColorMatrix class

2007-08-14 Thread Jack Doyle
Seb, there's something very similar built into the TweenFilterLite class
which is available in AS2 and AS3. It lets you tween contrast, hue,
saturation, brightness, colorization, threshold, etc. as well as other
filters like glows, blurs, etc.

www.TweenFilterLite.com (there's a link to the AS3 version)

Jack


-Original Message-
Date: Tue, 14 Aug 2007 16:21:02 +0100
From: "quinrou ." <[EMAIL PROTECTED]>
Subject: [Flashcoders] as3 ColorMatrix class
To: "Flashcoders mailing list" 
Message-ID:
<[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

Hi all,

I after the AS3 versino of the grant Skinner ColorMatrix class (
http://www.gskinner.com/blog/archives/2005/09/flash_8_source.html ). Has
anyone converted to AS3?

If yes could you share it?

many thanks

Seb



___
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] no list updates for several days!

2007-08-14 Thread Hans Wichman
Hi,
the list is working m8, lots of posts coming in.
You can check this for yourself in the online flashcoder archive, all posts
can be found there as well.

greetz
JC


On 8/14/07, dave matthews <[EMAIL PROTECTED]> wrote:
>
> hi all,
>
> Haven't seen a list posting from flashcoders for several days...
> wondering what's up?
>
> Maybe hotmail is stopping the list.
>
> Seems weird, any feedback appreciated.
>
> Thanks,
> Dave Matthews
>
> _
> Booking a flight? Know when to buy with airfare predictions on MSN Travel.
> http://travel.msn.com/Articles/aboutfarecast.aspx&ocid=T001MSN25A07001
>
> ___
> 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@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] no list updates for several days!

2007-08-14 Thread dave matthews

hi all,

 Haven't seen a list posting from flashcoders for several days...  
wondering what's up?


 Maybe hotmail is stopping the list.

 Seems weird, any feedback appreciated.

Thanks,
Dave Matthews

_
Booking a flight? Know when to buy with airfare predictions on MSN Travel. 
http://travel.msn.com/Articles/aboutfarecast.aspx&ocid=T001MSN25A07001


___
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] Issues with Limelight/Streaming Video

2007-08-14 Thread jean philippe
try flv HOSTING


2007/8/14, Johannes Nel <[EMAIL PROTECTED]>:
>
> charles doe snot say anothing past the innitial connection
> also port 80 you need to use the rtmpt protocol
>
> On 8/14/07, Sean Scott <[EMAIL PROTECTED]> wrote:
> >
> > Will,
> >
> > Sounds like their RTMP port is allowing you to handshake but it's not
> > pushing any kind of data.
> >
> > Have you tried using Charles to see what kind of data you are receiving?
> >
> > Hope this helps
> >
> > you've tried port 1935, 443 & 80?
> >
> > Hope that helps
> > Sean
> >
> > On 8/14/07, Will McHenry <[EMAIL PROTECTED]> wrote:
> > >
> > > *The Problem:
> > > *Currently we're using Limelight as our CDN for streaming video, and
> > > we've randomly been getting these strange
> > > 'blackouts' - you load the file, the netConnection is successful, the
> > > netStream connects correctly, you load the movie, then ... nothing.
> Just
> > > a blank screen, no video at all. I've traced out the status of each
> > > step, and nothing is throwing and error - it all thinks it's working
> > > correctly - except nothing plays. The kicker is that the SAME file,
> > > untouched, will be working fine - then all of a sudden, for two hours,
> > > it's not - then, it's working again. We've tested this with Adobe's
> FLV
> > > playback compononet, custom classes, custom players,
> > > barebones-4-line-actionscript, etc.
> > >
> > > We've talked to Limelight support, they have no idea and have offered
> no
> > > suggestions. We've checked our internal network for port blocking, etc
> -
> > > and it's all fine, correct ports open.
> > >
> > >
> > > *The Question:*
> > > Now before we all say "Limelight sucks," I was wondering if anyone has
> > > had any problems like this with Limelight or any other CDN before? Or
> > > can offer any suggestions for troubleshooting?
> > >
> > >
> > >
> > > Many thanks for your help!
> > > -will-
> > > ___
> > > 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@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
> >
>
>
>
> --
> j:pn
> http://www.memorphic.com/news/
> ___
> 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@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] AS 2.0 constructor inheritance

2007-08-14 Thread Matthias Dittgen
Interesting thread, Alan!
What is ECMA Specification saying to that situation?

Matthias

slightly OT, but I have noticed some time ago, that Flash IDE claims
the super() call to be the first line in the constructor of the
extending class. But I noticed to the same time, that when compiling
with mtasc this is not true and even with Flash only claims (warning
only) but does allow this.
Example:

class Bird
{
public var name:String = "bird";

public function Bird()
{
trace("--> "+name);
}

public static function main()
{
var b:Bird = new Bird();
var e:Eagle = new Eagle();
}
}


class Eagle extends Bird
{
public function Eagle()
{
name = "eagle";
super(); // this is not allowed, but works
}
}

traces:
--> bird
--> eagle


2007/8/14, Hans Wichman <[EMAIL PROTECTED]>:
> Hi,
>
> when the superclass has a default contructor without parameters, there is no
> need to call it explicitly.
> I'd like to turn it around though, no matter what or how you have defined
> them, always call them explicitly for clarity's sake and self documentation.
>
> greetz
> JC
>
>
> On 8/14/07, Alan MacDougall <[EMAIL PROTECTED]> wrote:
> >
> > Compare these two situations:
> >
> > class SuperClass
> > {
> >private var list:Array;
> >
> >public function SuperClass()
> >{
> >   list = new Array();
> >}
> > }
> >
> > class SubClass extends SuperClass
> > {
> >// when instantiated, the list variable is automatically initialized
> > }
> >
> > This is as it should be. The superclass constructor is executed when the
> > subclass is instantiated, as long as the subclass doesn't override it.
> >
> > class Button
> > {
> >private var clip:MovieClip;
> >
> >public function Button(clip:MovieClip)
> >{
> >   clip.onRelease = Delegate.create(this, handlerMethod);
> >}
> > }
> >
> > class SpecialButton extends Button
> > {
> >// does not override the superclass constructor
> > }
> >
> > In this case, code such as "var foo:Button = new SpecialButton(clip);"
> > does NOT execute the superclass constructor. Instead, I need this:
> >
> > class SpecialButton extends Button
> > {
> >public function SpecialButton(clip:MovieClip)
> >{
> >   super(clip);   // now it works
> >}
> > }
> >
> > My understanding of inheritance is that I should not need to explicitly
> > call the superclass constructor as long as I'm not overriding or
> > extending that method of the superclass. What gives? Is it a language
> > quirk?
> >
> > ___
> > 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@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@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] as3 ColorMatrix class

2007-08-14 Thread quinrou .
Hi all,

I after the AS3 versino of the grant Skinner ColorMatrix class (
http://www.gskinner.com/blog/archives/2005/09/flash_8_source.html ). Has
anyone converted to AS3?

If yes could you share it?

many thanks

Seb
___
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] Issues with Limelight/Streaming Video

2007-08-14 Thread Will McHenry
Sean, Johannes, thanks for your reply. We've double checked all the 
ports, and have made sure they're open. The rtmp's (for limelight at 
least) default port is 1935 - if that's blocked, it switches to http and 
uses port 80. 443 is also open. We'll try charles out and see what we 
get with that.


Thanks again!



Johannes Nel wrote:

charles doe snot say anothing past the innitial connection
also port 80 you need to use the rtmpt protocol

On 8/14/07, Sean Scott <[EMAIL PROTECTED]> wrote:
  

Will,

Sounds like their RTMP port is allowing you to handshake but it's not
pushing any kind of data.

Have you tried using Charles to see what kind of data you are receiving?

Hope this helps

you've tried port 1935, 443 & 80?

Hope that helps
Sean

On 8/14/07, Will McHenry <[EMAIL PROTECTED]> wrote:


*The Problem:
*Currently we're using Limelight as our CDN for streaming video, and
we've randomly been getting these strange
'blackouts' - you load the file, the netConnection is successful, the
netStream connects correctly, you load the movie, then ... nothing. Just
a blank screen, no video at all. I've traced out the status of each
step, and nothing is throwing and error - it all thinks it's working
correctly - except nothing plays. The kicker is that the SAME file,
untouched, will be working fine - then all of a sudden, for two hours,
it's not - then, it's working again. We've tested this with Adobe's FLV
playback compononet, custom classes, custom players,
barebones-4-line-actionscript, etc.

We've talked to Limelight support, they have no idea and have offered no
suggestions. We've checked our internal network for port blocking, etc -
and it's all fine, correct ports open.


*The Question:*
Now before we all say "Limelight sucks," I was wondering if anyone has
had any problems like this with Limelight or any other CDN before? Or
can offer any suggestions for troubleshooting?



Many thanks for your help!
-will-
___
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@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@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] AS 2.0 constructor inheritance

2007-08-14 Thread Alan MacDougall

Hans Wichman wrote:

Hi,

when the superclass has a default contructor without parameters, there is no
need to call it explicitly.
I'd like to turn it around though, no matter what or how you have defined
them, always call them explicitly for clarity's sake and self documentation.
  
So if the superclass constructor DOES have parameters, I can't call "new 
SubClass(parameters)" without explicitly calling the superclass 
constructor in the subclass constructor. i.e. this works:


// in superclass definition
public function SuperClass()   { blah; }
// in code
var foo:SuperClass = new SubClass();

but not this:

// in superclass definition
public function SuperClass(parameter:Type)   { blah; }
// in code
var foo:SuperClass = new SubClass(parameter);

That sounds like a language quirk rather than the nature of inheritance, 
but I can live with it now that I've identified it. 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


Re: [Flashcoders] AS 2.0 constructor inheritance

2007-08-14 Thread Ian Thomas
On 8/14/07, Alan MacDougall <[EMAIL PROTECTED]> wrote:
>
>
> My understanding of inheritance is that I should not need to explicitly
> call the superclass constructor as long as I'm not overriding or
> extending that method of the superclass. What gives? Is it a language
> quirk?



Nope, not a language quirk - your parent constructor doesn't know what
parameter it should use for 'clip', so you have to explicitly state it. It's
the same in Java, IIRC.

Ian
___
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] Issues with Limelight/Streaming Video

2007-08-14 Thread Johannes Nel
charles doe snot say anothing past the innitial connection
also port 80 you need to use the rtmpt protocol

On 8/14/07, Sean Scott <[EMAIL PROTECTED]> wrote:
>
> Will,
>
> Sounds like their RTMP port is allowing you to handshake but it's not
> pushing any kind of data.
>
> Have you tried using Charles to see what kind of data you are receiving?
>
> Hope this helps
>
> you've tried port 1935, 443 & 80?
>
> Hope that helps
> Sean
>
> On 8/14/07, Will McHenry <[EMAIL PROTECTED]> wrote:
> >
> > *The Problem:
> > *Currently we're using Limelight as our CDN for streaming video, and
> > we've randomly been getting these strange
> > 'blackouts' - you load the file, the netConnection is successful, the
> > netStream connects correctly, you load the movie, then ... nothing. Just
> > a blank screen, no video at all. I've traced out the status of each
> > step, and nothing is throwing and error - it all thinks it's working
> > correctly - except nothing plays. The kicker is that the SAME file,
> > untouched, will be working fine - then all of a sudden, for two hours,
> > it's not - then, it's working again. We've tested this with Adobe's FLV
> > playback compononet, custom classes, custom players,
> > barebones-4-line-actionscript, etc.
> >
> > We've talked to Limelight support, they have no idea and have offered no
> > suggestions. We've checked our internal network for port blocking, etc -
> > and it's all fine, correct ports open.
> >
> >
> > *The Question:*
> > Now before we all say "Limelight sucks," I was wondering if anyone has
> > had any problems like this with Limelight or any other CDN before? Or
> > can offer any suggestions for troubleshooting?
> >
> >
> >
> > Many thanks for your help!
> > -will-
> > ___
> > 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@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
>



-- 
j:pn
http://www.memorphic.com/news/
___
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] Q: Best solution for 360 pans in flash

2007-08-14 Thread moveup
After diving into Sandy recently, I was excited to see how easy it is to 
simulate QTVR like 360 panoramas.

There are also a couple of 'closed' solutions out there, which are ok for 
non-coders, but not if you want to customize and add new features

http://flashpanoramas.com/

and

http://www.pano2qtvr.com/

Has anyone done a lot of work with 360 pans in Flash?
With all the momentum behind Papervision was curious how it compares with the 
above.


[e] jbach at bitstream.ca
[c] 416.668.0034
[w] www.bitstream.ca

"...all improvisation is life in search of a style."
 - Bruce Mau,'LifeStyle'
___
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] AS 2.0 constructor inheritance

2007-08-14 Thread Hans Wichman
Hi,

when the superclass has a default contructor without parameters, there is no
need to call it explicitly.
I'd like to turn it around though, no matter what or how you have defined
them, always call them explicitly for clarity's sake and self documentation.

greetz
JC


On 8/14/07, Alan MacDougall <[EMAIL PROTECTED]> wrote:
>
> Compare these two situations:
>
> class SuperClass
> {
>private var list:Array;
>
>public function SuperClass()
>{
>   list = new Array();
>}
> }
>
> class SubClass extends SuperClass
> {
>// when instantiated, the list variable is automatically initialized
> }
>
> This is as it should be. The superclass constructor is executed when the
> subclass is instantiated, as long as the subclass doesn't override it.
>
> class Button
> {
>private var clip:MovieClip;
>
>public function Button(clip:MovieClip)
>{
>   clip.onRelease = Delegate.create(this, handlerMethod);
>}
> }
>
> class SpecialButton extends Button
> {
>// does not override the superclass constructor
> }
>
> In this case, code such as "var foo:Button = new SpecialButton(clip);"
> does NOT execute the superclass constructor. Instead, I need this:
>
> class SpecialButton extends Button
> {
>public function SpecialButton(clip:MovieClip)
>{
>   super(clip);   // now it works
>}
> }
>
> My understanding of inheritance is that I should not need to explicitly
> call the superclass constructor as long as I'm not overriding or
> extending that method of the superclass. What gives? Is it a language
> quirk?
>
> ___
> 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@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] AS 2.0 constructor inheritance

2007-08-14 Thread Johannes Nel
the constructer gets invoked automatically (and its the only function which
does all other overrides this is not the case for) but the super class's
constructer is being called without arguments so whats happening on a code
level is this

super();

On 8/14/07, Alan MacDougall <[EMAIL PROTECTED]> wrote:
>
> Compare these two situations:
>
> class SuperClass
> {
> private var list:Array;
>
> public function SuperClass()
> {
>list = new Array();
> }
> }
>
> class SubClass extends SuperClass
> {
> // when instantiated, the list variable is automatically initialized
> }
>
> This is as it should be. The superclass constructor is executed when the
> subclass is instantiated, as long as the subclass doesn't override it.
>
> class Button
> {
> private var clip:MovieClip;
>
> public function Button(clip:MovieClip)
> {
>clip.onRelease = Delegate.create(this, handlerMethod);
> }
> }
>
> class SpecialButton extends Button
> {
> // does not override the superclass constructor
> }
>
> In this case, code such as "var foo:Button = new SpecialButton(clip);"
> does NOT execute the superclass constructor. Instead, I need this:
>
> class SpecialButton extends Button
> {
> public function SpecialButton(clip:MovieClip)
> {
>super(clip);   // now it works
> }
> }
>
> My understanding of inheritance is that I should not need to explicitly
> call the superclass constructor as long as I'm not overriding or
> extending that method of the superclass. What gives? Is it a language
> quirk?
>
> ___
> 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
>



-- 
j:pn
http://www.memorphic.com/news/
___
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] Issues with Limelight/Streaming Video

2007-08-14 Thread Sean Scott
Will,

Sounds like their RTMP port is allowing you to handshake but it's not
pushing any kind of data.

Have you tried using Charles to see what kind of data you are receiving?

Hope this helps

you've tried port 1935, 443 & 80?

Hope that helps
Sean

On 8/14/07, Will McHenry <[EMAIL PROTECTED]> wrote:
>
> *The Problem:
> *Currently we're using Limelight as our CDN for streaming video, and
> we've randomly been getting these strange
> 'blackouts' - you load the file, the netConnection is successful, the
> netStream connects correctly, you load the movie, then ... nothing. Just
> a blank screen, no video at all. I've traced out the status of each
> step, and nothing is throwing and error - it all thinks it's working
> correctly - except nothing plays. The kicker is that the SAME file,
> untouched, will be working fine - then all of a sudden, for two hours,
> it's not - then, it's working again. We've tested this with Adobe's FLV
> playback compononet, custom classes, custom players,
> barebones-4-line-actionscript, etc.
>
> We've talked to Limelight support, they have no idea and have offered no
> suggestions. We've checked our internal network for port blocking, etc -
> and it's all fine, correct ports open.
>
>
> *The Question:*
> Now before we all say "Limelight sucks," I was wondering if anyone has
> had any problems like this with Limelight or any other CDN before? Or
> can offer any suggestions for troubleshooting?
>
>
>
> Many thanks for your help!
> -will-
> ___
> 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@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] AS 2.0 constructor inheritance

2007-08-14 Thread Alan MacDougall

Compare these two situations:

class SuperClass
{
   private var list:Array;
  
   public function SuperClass()

   {
  list = new Array();
   }
}

class SubClass extends SuperClass
{
   // when instantiated, the list variable is automatically initialized
}

This is as it should be. The superclass constructor is executed when the 
subclass is instantiated, as long as the subclass doesn't override it.


class Button
{
   private var clip:MovieClip;

   public function Button(clip:MovieClip)
   {
  clip.onRelease = Delegate.create(this, handlerMethod);
   }
}

class SpecialButton extends Button
{
   // does not override the superclass constructor
}

In this case, code such as "var foo:Button = new SpecialButton(clip);" 
does NOT execute the superclass constructor. Instead, I need this:


class SpecialButton extends Button
{
   public function SpecialButton(clip:MovieClip)
   {
  super(clip);   // now it works
   }
}

My understanding of inheritance is that I should not need to explicitly 
call the superclass constructor as long as I'm not overriding or 
extending that method of the superclass. What gives? Is it a language quirk?


___
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] Issues with Limelight/Streaming Video

2007-08-14 Thread Will McHenry

*The Problem:
*Currently we're using Limelight as our CDN for streaming video, and 
we've randomly been getting these strange
'blackouts' - you load the file, the netConnection is successful, the 
netStream connects correctly, you load the movie, then ... nothing. Just 
a blank screen, no video at all. I've traced out the status of each 
step, and nothing is throwing and error - it all thinks it's working 
correctly - except nothing plays. The kicker is that the SAME file, 
untouched, will be working fine - then all of a sudden, for two hours, 
it's not - then, it's working again. We've tested this with Adobe's FLV 
playback compononet, custom classes, custom players, 
barebones-4-line-actionscript, etc.


We've talked to Limelight support, they have no idea and have offered no 
suggestions. We've checked our internal network for port blocking, etc - 
and it's all fine, correct ports open.



*The Question:*
Now before we all say "Limelight sucks," I was wondering if anyone has 
had any problems like this with Limelight or any other CDN before? Or 
can offer any suggestions for troubleshooting?




Many thanks for your help!
-will-
___
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] Classes 101 [was: Version control and Flash ]

2007-08-14 Thread Zárate
Hi there,

Maybe this is spam(ish) but for those of you who are more comfortable
reading in Spanish, i wrote an open "book" about AS2 and OOP basics
here:

http://loqueyosede.com/as2/

Hope it helps!

Juan

On 8/14/07, Hans Wichman <[EMAIL PROTECTED]> wrote:
> Just on a side note, its not just -ow-what-shall-we-use-today- its a more
> fundamental conceptual issue as well, such as are you dealing with a is-a
> relationship or has-a or is-part-of-a etc.
>
> I don't know if better class hierarchies change that, but maybe they
> could...
>
>
> On 8/13/07, T. Michael Keesey <[EMAIL PROTECTED]> wrote:
> >
> > On 8/13/07, Steven Sacks <[EMAIL PROTECTED]> wrote:
> > >  > You can override the getter and/or setter of any
> > >  > property: x, y, width, height, etc.
> > >
> > > This is actually one of the benefits in AS2 of using composition instead
> > > of inheritance with MovieClip.
> >
> > But it should be noted that there are problems with using composition,
> > too. For example, you could pass control of one movie clip to more
> > than one View object. (Well, in some circumstances that could be seen
> > as a benefit, but I think it would usually be not so good.)
> >
> > In the end, you just have to familiarize yourself with everything, try
> > different patterns, and see what makes the most sense on a
> > case-by-case basis. And oftentimes there are cases where two or more
> > solutions make roughly equal sense, perhaps in different ways. You
> > just have to go with something and, if it later turns out to be
> > awkward, refactor it.
> >
> > One last note: there are many cases where it might be better to use
> > composition in AS2 but inheritance in AS3. Adobe's display classes in
> > AS3 are much better set up for extension, with a far more intelligent
> > class hierarchy.
> > --
> > Mike Keesey
> > ___
> > 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@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
>


-- 
Juan Delgado - Zárate
http://zarate.tv
http://dandolachapa.com
http://loqueyosede.com
___
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] Pls suggest some good source for video streaming with media server

2007-08-14 Thread Johannes Nel
http://www.wowzamedia.com/index.html

On 8/14/07, Jer Brand <[EMAIL PROTECTED]> wrote:
>
> Confused lurker...
>
> Red 5 check. FMS check. WOZA == ??
>
> On 8/14/07, Johannes Nel <[EMAIL PROTECTED]> wrote:
> >
> > 
> > I have idea of streaming, xml, php etc. But i need some insight to use
> > them
> > together effectively for this
> > 
> > thats not really streaming.
> > 
> > 1. video uploads over hired media server through dynamic admin
> > 
> > file upload
> > 
> > for dynamic online video
> > streaming live as well as from stored videos.
> > 
> > progressive vs streaming. for streaming you need an active netconnection
> > the
> > other you don't
> > 
> > 2. Dynamic calling of videos
> > 
> > progressive and streaming are slighty different in this regard but its
> all
> > the netstream object
> > . automatic run of videos after on another as listed by dynamic
> > admin
> > panel.
> > 
> > playlist
> > 
> > I need some good book
> > 
> > people's books that come recomended  lisa larson, bill sanders, stefan
> > richter (http://www.flashcomguru.com/) he also has the best fms list
> going
> > around.
> > check out red5, fms and woza perhaps.
> >
> >
> >
> > On 8/14/07, creativity <[EMAIL PROTECTED]> wrote:
> > >
> > > Hi,
> > >
> > > I need some good book or online resource to utilize for dynamic online
> > > video
> > > streaming live as well as from stored videos. I f somebody can help in
> > > this
> > > regard it will be great. I need somme of these features
> > >
> > > 1. video uploads over hired media server through dynamic admin
> > > 2. Dynamic calling of videos
> > > 3. Bandwidth detection and streaming as per user bandwidth
> > > 4. automatic run of videos after on another as listed by dynamic admin
> > > panel.
> > >
> > > I have idea of streaming, xml, php etc. But i need some insight to use
> > > them
> > > together effectively for this
> > >
> > > --
> > > Abhishek Kumar
> > > ___
> > > 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
> > >
> >
> >
> >
> > --
> > j:pn
> > http://www.memorphic.com/news/
> > ___
> > 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@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
>



-- 
j:pn
http://www.memorphic.com/news/
___
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] Pls suggest some good source for video streaming with media server

2007-08-14 Thread Jer Brand
Confused lurker...

Red 5 check. FMS check. WOZA == ??

On 8/14/07, Johannes Nel <[EMAIL PROTECTED]> wrote:
>
> 
> I have idea of streaming, xml, php etc. But i need some insight to use
> them
> together effectively for this
> 
> thats not really streaming.
> 
> 1. video uploads over hired media server through dynamic admin
> 
> file upload
> 
> for dynamic online video
> streaming live as well as from stored videos.
> 
> progressive vs streaming. for streaming you need an active netconnection
> the
> other you don't
> 
> 2. Dynamic calling of videos
> 
> progressive and streaming are slighty different in this regard but its all
> the netstream object
> . automatic run of videos after on another as listed by dynamic
> admin
> panel.
> 
> playlist
> 
> I need some good book
> 
> people's books that come recomended  lisa larson, bill sanders, stefan
> richter (http://www.flashcomguru.com/) he also has the best fms list going
> around.
> check out red5, fms and woza perhaps.
>
>
>
> On 8/14/07, creativity <[EMAIL PROTECTED]> wrote:
> >
> > Hi,
> >
> > I need some good book or online resource to utilize for dynamic online
> > video
> > streaming live as well as from stored videos. I f somebody can help in
> > this
> > regard it will be great. I need somme of these features
> >
> > 1. video uploads over hired media server through dynamic admin
> > 2. Dynamic calling of videos
> > 3. Bandwidth detection and streaming as per user bandwidth
> > 4. automatic run of videos after on another as listed by dynamic admin
> > panel.
> >
> > I have idea of streaming, xml, php etc. But i need some insight to use
> > them
> > together effectively for this
> >
> > --
> > Abhishek Kumar
> > ___
> > 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
> >
>
>
>
> --
> j:pn
> http://www.memorphic.com/news/
> ___
> 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@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] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Matthias Dittgen
trace(Key.getCode());
returns "13"

my workaround is sufficient for my needs. But I think, it is not a
problem of Enter, only. I have to check if Muzak is right and this is
a kind of a scope issue.



2007/8/14, Danny Kodicek <[EMAIL PROTECTED]>:
>  > Don't rant me for using _root, cause this was only for
> > testing. I count the doubles out, which works fine for
> > keyDown. The following code traces:
> > enter down
> > enter up
> > enter up
>
> If this is only happening with Enter, I wonder if it's because Enter is
> actually putting two characters into the text? (\n and \r?). Maybe you're
> getting both of them from the OS. Is this a platform-specific problem?
>
> Danny
>
> ___
> 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@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] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread 方林勇
 as i know , in the windows os, the Enter as \n!  
在2007-08-14,"Danny Kodicek" <[EMAIL PROTECTED]> 写道:
 > Don't rant me for using _root, cause this was only for > testing. I count 
 > the doubles out, which works fine for > keyDown. The following code traces: 
 > > enter down > enter up > enter up If this is only happening with Enter, I 
 > wonder if it's because Enter is actually putting two characters into the 
 > text? (\n and \r?). Maybe you're getting both of them from the OS. Is this a 
 > platform-specific problem? Danny 
 > ___ 
 > 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@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] Gaia - Anybody wanna share?

2007-08-14 Thread 方林勇
  ye, i think that's right.
在2007-08-14,"Federico Bebber" <[EMAIL PROTECTED]> 写道:
2007/8/14, Arul Prasad M L <[EMAIL PROTECTED]>: > May be we should keep 
discussions in here discrete as well; Don't want to > get him into trouble, for 
doing something good to the community. yes this is the best thing to do. 
___ 
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@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] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread 方林勇
 yes, i think this is good, studyingthanks !!!  
在2007-08-14,Muzak <[EMAIL PROTECTED]> 写道:
The event will fire to all listeners, meaning that if you have multiple 
instances (of a class) that listens to Key events, you'l see multiple trace 
output. The following on the main timeline only displays output once: function 
onKeyUp() { if (Key.getCode() == Key.ENTER) trace("Enter pressed"); } 
Key.addListener(this); regards, Muzak - Original Message - From: 
"Matthias Dittgen" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" 
 Sent: Tuesday, August 14, 2007 11:26 AM 
Subject: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField > Hello, > 
> in my current project the onKeyDown event is fired twice, when the key > is 
hit in Textfields. > I googled already this problem and always found only a 
description of > the same problem as my one but no solution. Anyone solved this 
> already? > > Here's some example code (nothing special): > > // trace "Enter 
pressed" twice, while Enter is pressed only once > keyListener.onKeyUp = 
function() > { > if (Key.getCode() == Key.ENTER) > trace("Enter pressed"); > } 
> > Thanks, > Matthias ___ 
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@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] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Danny Kodicek
 > Don't rant me for using _root, cause this was only for 
> testing. I count the doubles out, which works fine for 
> keyDown. The following code traces:
> enter down
> enter up
> enter up

If this is only happening with Enter, I wonder if it's because Enter is
actually putting two characters into the text? (\n and \r?). Maybe you're
getting both of them from the OS. Is this a platform-specific problem? 

Danny

___
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] Pls suggest some good source for video streaming with media server

2007-08-14 Thread Johannes Nel

I have idea of streaming, xml, php etc. But i need some insight to use them
together effectively for this

thats not really streaming.

1. video uploads over hired media server through dynamic admin

file upload

for dynamic online video
streaming live as well as from stored videos.

progressive vs streaming. for streaming you need an active netconnection the
other you don't

2. Dynamic calling of videos

progressive and streaming are slighty different in this regard but its all
the netstream object
. automatic run of videos after on another as listed by dynamic admin
panel.

playlist

I need some good book

people's books that come recomended  lisa larson, bill sanders, stefan
richter (http://www.flashcomguru.com/) he also has the best fms list going
around.
check out red5, fms and woza perhaps.



On 8/14/07, creativity <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I need some good book or online resource to utilize for dynamic online
> video
> streaming live as well as from stored videos. I f somebody can help in
> this
> regard it will be great. I need somme of these features
>
> 1. video uploads over hired media server through dynamic admin
> 2. Dynamic calling of videos
> 3. Bandwidth detection and streaming as per user bandwidth
> 4. automatic run of videos after on another as listed by dynamic admin
> panel.
>
> I have idea of streaming, xml, php etc. But i need some insight to use
> them
> together effectively for this
>
> --
> Abhishek Kumar
> ___
> 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
>



-- 
j:pn
http://www.memorphic.com/news/
___
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] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Muzak
The event will fire to all listeners, meaning that if you have multiple 
instances (of a class) that listens to Key events, you'l see 
multiple trace output.

The following on the main timeline only displays output once:

function onKeyUp() {
 if (Key.getCode() == Key.ENTER)
 trace("Enter pressed");
}
Key.addListener(this);

regards,
Muzak

- Original Message - 
From: "Matthias Dittgen" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, August 14, 2007 11:26 AM
Subject: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField


> Hello,
>
> in my current project the onKeyDown event is fired twice, when the key
> is hit in Textfields.
> I googled already this problem and always found only a description of
> the same problem as my one but no solution. Anyone solved this
> already?
>
> Here's some example code (nothing special):
>
> // trace "Enter pressed" twice, while Enter is pressed only once
> keyListener.onKeyUp = function()
> {
> if (Key.getCode() == Key.ENTER)
> trace("Enter pressed");
> }
>
> Thanks,
> Matthias


___
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] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Matthias Dittgen
Don't rant me for using _root, cause this was only for testing. I
count the doubles out, which works fine for keyDown. The following
code traces:
enter down
enter up
enter up


var keyListener:Object = new Object();
_root.onEnter = function() {};
_root.countEnter = 0;
keyListener.onKeyDown = function()
{
if (Key.getCode() == Key.ENTER && 0==_root.countEnter++)
{
trace("enter down ");
_root.onEnter();
}
};
keyListener.onKeyUp = function()
{
if (Key.getCode() == Key.ENTER)
{
_root.countEnter = 0;
trace("enter up");
}
};
Key.addListener(keyListener);


Thank you all,
Matthias

2007/8/14, Dennis - I Sioux <[EMAIL PROTECTED]>:
> Guess you could check the focus?
> And count the doubles out.
>
> - Original Message -
> From: "Matthias Dittgen" <[EMAIL PROTECTED]>
> To: "Flashcoders mailing list" 
> Sent: Tuesday, August 14, 2007 11:26 AM
> Subject: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField
>
>
> > Hello,
> >
> > in my current project the onKeyDown event is fired twice, when the key
> > is hit in Textfields.
> > I googled already this problem and always found only a description of
> > the same problem as my one but no solution. Anyone solved this
> > already?
> >
> > Here's some example code (nothing special):
> >
> > // trace "Enter pressed" twice, while Enter is pressed only once
> > keyListener.onKeyUp = function()
> > {
> > if (Key.getCode() == Key.ENTER)
> > trace("Enter pressed");
> > }
> >
> > Thanks,
> > Matthias
> > ___
> > 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
> >
> > --
> > This message has been scanned for viruses and
> > dangerous content by MailScanner, and is
> > believed to be clean.
> >
>
>
> --
> This message has been scanned for viruses and
> dangerous content by MailScanner, and is
> believed to be clean.
>
> ___
> 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@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] Pls suggest some good source for video streaming with media server

2007-08-14 Thread creativity
Hi,

I need some good book or online resource to utilize for dynamic online video
streaming live as well as from stored videos. I f somebody can help in this
regard it will be great. I need somme of these features

1. video uploads over hired media server through dynamic admin
2. Dynamic calling of videos
3. Bandwidth detection and streaming as per user bandwidth
4. automatic run of videos after on another as listed by dynamic admin
panel.

I have idea of streaming, xml, php etc. But i need some insight to use them
together effectively for this

-- 
Abhishek Kumar
___
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] division operand

2007-08-14 Thread natalia Vikhtinskaya
THANK YOU!!!

2007/8/14, Muzak <[EMAIL PROTECTED]>:
> Use the unicode notation: \u00F7
>
> math_txt.text = "a\u00F7b";
>
> http://www.unicode.org/charts/
>
> It's in the Latin-1 chart, page 5:
> http://www.unicode.org/charts/PDF/U0080.pdf
>
> regards,
> Muzak
>
> - Original Message -
> From: "natalia Vikhtinskaya" <[EMAIL PROTECTED]>
> To: "Flashcoders mailing list" 
> Sent: Tuesday, August 14, 2007 11:05 AM
> Subject: [Flashcoders] division operand
>
>
> Hi
> Do anybody know how to solve one problem.I need to show in string
> variables division operand as the horizontal line  with the dot above
> and below.
> So instead of  "10 / 2=" I need "10 ÷ 2 ="
>
>  Thanks in advance.
>
>
> ___
> 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@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] division operand

2007-08-14 Thread Ivan Dembicki
Hello,

http://sharedfonts.com/eng/faq.html#include
[q]
I highly recommend you to input the desired glyphs into text field
before writing them to "Include these characters:" box by pressing
Auto Fill. There is a simple reason for that: font can have these
glyphs missing. If you do not see a glyph after inserting it into text
field, that will show you that the chosen font doesn't include such
symbol. If you input the glyphs directly into "Include these
characters:" string, you will see the symbols there, but you will not
have them in the compiled swf file, and will spend some time trying to
guess the reason.
[/q]



> I have this
> operand="÷";
> item.text=operand+" "+String(i);
> trace(item.text) /// ÷ 1
> but I don't see that operand in text area.
> text area: not html, Arial, all embedded
> text area HTML: the same I see operand in trace but I don't see on the screen
>
> Any idea?
>
> 2007/8/14, Cedric Muller <[EMAIL PROTECTED]>:
> > Hello,
> >
> > You mean that you just need this 'convention' for display purposes ?
> >
> > var str = "10 / 2=";
> > trace(str); //  outputs: 10 / 2=
> > str = str.split("/").join("÷");
> > trace(str); //  outputs: 10 ÷ 2=
> >
> > hth,
> > Cedric
> >
> > > "10 / 2=" I need "10 ÷ 2 ="
> >
> > ___
> > 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@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
>


-- 
iv
___
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] division operand

2007-08-14 Thread Danny Kodicek
 > I have this
> operand="÷";
> item.text=operand+" "+String(i);
> trace(item.text) /// ÷ 1
> but I don't see that operand in text area.
> text area: not html, Arial, all embedded text area HTML: the 
> same I see operand in trace but I don't see on the screen

It sounds like you just haven't embedded the character. Add it to the
embedded characters list and it should be fine.

Danny

___
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] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Matthias Dittgen
But there is probably no guaranty that the event is fired twice on all
FlashPlayers/OSes.
So I would have to reset the state variable "manually".

2007/8/14, Ricky Bacon <[EMAIL PROTECTED]>:
> Matthias Dittgen wrote:
> > Hello,
> >
> > in my current project the onKeyDown event is fired twice, when the key
> > is hit in Textfields.
> > I googled already this problem and always found only a description of
> > the same problem as my one but no solution. Anyone solved this
> > already?
> >
> > Here's some example code (nothing special):
> >
> >   // trace "Enter pressed" twice, while Enter is pressed only 
> > once
> >   keyListener.onKeyUp = function()
> >   {
> >   if (Key.getCode() == Key.ENTER)
> >   trace("Enter pressed");
> >   }
>
> Use a state tracking variable instead of an event based call for
> repeatable input events.
>
> -Ricky
> ___
> 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@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] division operand

2007-08-14 Thread Cedric Muller


I did a quick test with Arial embedded and it works: I see the '÷'  
character in my textfield.
Be sure to specifically add '÷' to the Embed Panel (Include these  
characters:)


hth,
Cedric



I have this
operand="÷";
item.text=operand+" "+String(i);
trace(item.text) /// ÷ 1
but I don't see that operand in text area.
text area: not html, Arial, all embedded
text area HTML: the same I see operand in trace but I don't see on  
the screen


Any idea?

2007/8/14, Cedric Muller <[EMAIL PROTECTED]>:

Hello,

You mean that you just need this 'convention' for display purposes ?

var str = "10 / 2=";
trace(str); //  outputs: 10 / 2=
str = str.split("/").join("÷");
trace(str); //  outputs: 10 ÷ 2=

hth,
Cedric


"10 / 2=" I need "10 ÷ 2 ="


___
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@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@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] division operand

2007-08-14 Thread Jesse Graupmann

On the TextField properties, try Embed > Include these characters > ÷



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of natalia
Vikhtinskaya
Sent: Tuesday, August 14, 2007 2:41 AM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] division operand

I have this
operand="÷";
item.text=operand+" "+String(i);
trace(item.text) /// ÷ 1
but I don't see that operand in text area.
text area: not html, Arial, all embedded
text area HTML: the same I see operand in trace but I don't see on the
screen

Any idea?

2007/8/14, Cedric Muller <[EMAIL PROTECTED]>:
> Hello,
>
> You mean that you just need this 'convention' for display purposes ?
>
> var str = "10 / 2=";
> trace(str); //  outputs: 10 / 2=
> str = str.split("/").join("÷");
> trace(str); //  outputs: 10 ÷ 2=
>
> hth,
> Cedric
>
> > "10 / 2=" I need "10 ÷ 2 ="
>
> ___
> 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@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@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] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Dennis - I Sioux

Guess you could check the focus?
And count the doubles out.

- Original Message - 
From: "Matthias Dittgen" <[EMAIL PROTECTED]>

To: "Flashcoders mailing list" 
Sent: Tuesday, August 14, 2007 11:26 AM
Subject: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField



Hello,

in my current project the onKeyDown event is fired twice, when the key
is hit in Textfields.
I googled already this problem and always found only a description of
the same problem as my one but no solution. Anyone solved this
already?

Here's some example code (nothing special):

// trace "Enter pressed" twice, while Enter is pressed only once
keyListener.onKeyUp = function()
{
if (Key.getCode() == Key.ENTER)
trace("Enter pressed");
}

Thanks,
Matthias
___
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

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.




--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
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] division operand

2007-08-14 Thread Muzak
Use the unicode notation: \u00F7

math_txt.text = "a\u00F7b";

http://www.unicode.org/charts/

It's in the Latin-1 chart, page 5:
http://www.unicode.org/charts/PDF/U0080.pdf

regards,
Muzak

- Original Message - 
From: "natalia Vikhtinskaya" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, August 14, 2007 11:05 AM
Subject: [Flashcoders] division operand


Hi
Do anybody know how to solve one problem.I need to show in string
variables division operand as the horizontal line  with the dot above
and below.
So instead of  "10 / 2=" I need "10 ÷ 2 ="

 Thanks in advance.


___
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] division operand

2007-08-14 Thread natalia Vikhtinskaya
I have this
operand="÷";
item.text=operand+" "+String(i);
trace(item.text) /// ÷ 1
but I don't see that operand in text area.
text area: not html, Arial, all embedded
text area HTML: the same I see operand in trace but I don't see on the screen

Any idea?

2007/8/14, Cedric Muller <[EMAIL PROTECTED]>:
> Hello,
>
> You mean that you just need this 'convention' for display purposes ?
>
> var str = "10 / 2=";
> trace(str); //  outputs: 10 / 2=
> str = str.split("/").join("÷");
> trace(str); //  outputs: 10 ÷ 2=
>
> hth,
> Cedric
>
> > "10 / 2=" I need "10 ÷ 2 ="
>
> ___
> 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@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] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Ricky Bacon

Matthias Dittgen wrote:

Hello,

in my current project the onKeyDown event is fired twice, when the key
is hit in Textfields.
I googled already this problem and always found only a description of
the same problem as my one but no solution. Anyone solved this
already?

Here's some example code (nothing special):

// trace "Enter pressed" twice, while Enter is pressed only once
keyListener.onKeyUp = function()
{
if (Key.getCode() == Key.ENTER)
trace("Enter pressed");
}


Use a state tracking variable instead of an event based call for 
repeatable input events.


-Ricky
___
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] NetStream time and seek

2007-08-14 Thread Ricky Bacon

Helmut Granda wrote:

I was wondering if there was a way to send some one to a certain frame
within the FLV since that is how they are treated, but then I figured I
could use coepoints. Still since what I am using is a thirdparty component
it seems like this method is not allowed within this specific item.


If you are encoding the video, yes.  If you are not encoding the video, 
no.  The best you can do is an approximation.


As Pete B pointed out, a better description would help.

-Ricky
___
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] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Matthias Dittgen
Hello,

in my current project the onKeyDown event is fired twice, when the key
is hit in Textfields.
I googled already this problem and always found only a description of
the same problem as my one but no solution. Anyone solved this
already?

Here's some example code (nothing special):

// trace "Enter pressed" twice, while Enter is pressed only once
keyListener.onKeyUp = function()
{
if (Key.getCode() == Key.ENTER)
trace("Enter pressed");
}

Thanks,
Matthias
___
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] division operand

2007-08-14 Thread Danny Kodicek
 > Hi
> Do anybody know how to solve one problem.I need to show in 
> string variables division operand as the horizontal line  
> with the dot above and below.
> So instead of  "10 / 2=" I need "10 ÷ 2 ="

So put it in :)

Just add the character and it should display fine (you may need to embed it,
though)

Danny

___
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] division operand

2007-08-14 Thread Cedric Muller

Hello,

You mean that you just need this 'convention' for display purposes ?

var str = "10 / 2=";
trace(str); //  outputs: 10 / 2=
str = str.split("/").join("÷");
trace(str); //  outputs: 10 ÷ 2=

hth,
Cedric


"10 / 2=" I need "10 ÷ 2 ="


___
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] division operand

2007-08-14 Thread natalia Vikhtinskaya
Hi
Do anybody know how to solve one problem.I need to show in string
variables division operand as the horizontal line  with the dot above
and below.
So instead of  "10 / 2=" I need "10 ÷ 2 ="

 Thanks in advance.
___
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] NetStream time and seek

2007-08-14 Thread Peter B
> Thanks for the info. I assumed that but I wasnt sure. Is there anyway to
> send the user to specific "keyframe" instead of time for a movie?

Could you elaborate please? What exactly are you trying to do?

Pete
___
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] Gaia - Anybody wanna share?

2007-08-14 Thread Federico Bebber
2007/8/14, Arul Prasad M L <[EMAIL PROTECTED]>:

> May be we should keep discussions in here discrete as well; Don't want to
> get him into trouble, for doing something good to the community.

yes this is the best thing to do.
___
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] Gaia - Anybody wanna share?

2007-08-14 Thread Hans Wichman
Got it. Thread closed :).

On 8/14/07, Arul Prasad M L <[EMAIL PROTECTED]> wrote:
>
> Heard that Steve's previous employer has raised intellectual property
> claims
> on it; And he is working it out. He is not supposed discuss any details.
>
> May be we should keep discussions in here discrete as well; Don't want to
> get him into trouble, for doing something good to the community.
>
> Regards,
> Arul Prasad.
>
>
> On 8/14/07, Hans Wichman <[EMAIL PROTECTED]> wrote:
> >
> > Hi,
> > why isnt it up anymore then?
> >
> > greetz
> > JC
> >
> >
> > On 8/14/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> > >
> > > You can pick it up here.
> > >
> > > HTH
> > > Hermit
> > >
> > > http://hermitscastle.com/flashStuff/
> > >
> > > > I understand why it isn't up there anymore, so If someone else who
> > > > downloaded this (during the brief period it was online) can pass it
> to
> > > me
> > > > offlist, it would be great.
> > > >
> > > > Thanks,
> > > > Arul Prasad.
> > >
> > > ___
> > > 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@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
> >
>
>
>
> --
> Arul Prasad
> http://arulprasad.blogspot.com
> ___
> 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@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] Gaia - Anybody wanna share?

2007-08-14 Thread Arul Prasad M L
Heard that Steve's previous employer has raised intellectual property claims
on it; And he is working it out. He is not supposed discuss any details.

May be we should keep discussions in here discrete as well; Don't want to
get him into trouble, for doing something good to the community.

Regards,
Arul Prasad.


On 8/14/07, Hans Wichman <[EMAIL PROTECTED]> wrote:
>
> Hi,
> why isnt it up anymore then?
>
> greetz
> JC
>
>
> On 8/14/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> >
> > You can pick it up here.
> >
> > HTH
> > Hermit
> >
> > http://hermitscastle.com/flashStuff/
> >
> > > I understand why it isn't up there anymore, so If someone else who
> > > downloaded this (during the brief period it was online) can pass it to
> > me
> > > offlist, it would be great.
> > >
> > > Thanks,
> > > Arul Prasad.
> >
> > ___
> > 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@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
>



-- 
Arul Prasad
http://arulprasad.blogspot.com
___
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] Classes 101 [was: Version control and Flash ]

2007-08-14 Thread Hans Wichman
Just on a side note, its not just -ow-what-shall-we-use-today- its a more
fundamental conceptual issue as well, such as are you dealing with a is-a
relationship or has-a or is-part-of-a etc.

I don't know if better class hierarchies change that, but maybe they
could...


On 8/13/07, T. Michael Keesey <[EMAIL PROTECTED]> wrote:
>
> On 8/13/07, Steven Sacks <[EMAIL PROTECTED]> wrote:
> >  > You can override the getter and/or setter of any
> >  > property: x, y, width, height, etc.
> >
> > This is actually one of the benefits in AS2 of using composition instead
> > of inheritance with MovieClip.
>
> But it should be noted that there are problems with using composition,
> too. For example, you could pass control of one movie clip to more
> than one View object. (Well, in some circumstances that could be seen
> as a benefit, but I think it would usually be not so good.)
>
> In the end, you just have to familiarize yourself with everything, try
> different patterns, and see what makes the most sense on a
> case-by-case basis. And oftentimes there are cases where two or more
> solutions make roughly equal sense, perhaps in different ways. You
> just have to go with something and, if it later turns out to be
> awkward, refactor it.
>
> One last note: there are many cases where it might be better to use
> composition in AS2 but inheritance in AS3. Adobe's display classes in
> AS3 are much better set up for extension, with a far more intelligent
> class hierarchy.
> --
> Mike Keesey
> ___
> 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@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] Gaia - Anybody wanna share?

2007-08-14 Thread Hans Wichman
Hi,
why isnt it up anymore then?

greetz
JC


On 8/14/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> You can pick it up here.
>
> HTH
> Hermit
>
> http://hermitscastle.com/flashStuff/
>
> > I understand why it isn't up there anymore, so If someone else who
> > downloaded this (during the brief period it was online) can pass it to
> me
> > offlist, it would be great.
> >
> > Thanks,
> > Arul Prasad.
>
> ___
> 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@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