Re: [Flashcoders] Webcam color tracking

2006-09-15 Thread Serge Jespers

Hey guyz,

Thank you all for the replies.
I've sorta hacked it... Before I do the getColorBoundsRect, I now do  
a threshold on the image to make the colors that are close to what my  
LED looks like, 100% red. I then do the getColorBoundsRect on the red  
and that works just fine. Now I'll try different colors of LEDs to  
see which works best and to make sure there's nothing else in the  
camera's eye that has the same color.


It would indeed be great to see how Grant did his Mister Glove... But  
I'm guessing it's somewhere along the line of what I'm doing here...


Grtz,
Serge
___
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] What is profile?

2006-09-15 Thread Morten Barklund

All,

From toplevel.as (F8):

 intrinsic function profile(enable:Boolean):Void;

Very annoying, as it is typed as function, then references such as:

 profile.getName();

In a class does not create compiler errors, as some stupid unknown 
function named profile exists somewhere.


Well, it does not exist, as it is undefined. And there is no mentioning 
of this in the manuel.


So, what does it do? Or, what should it have done?

I've removed it now, as there is no such global function, and it just 
suppresses errors.


:|

--
Morten Barklund - Lead Developer - TBWA\Play
___
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] Introducing FZip... ZIP it up!

2006-09-15 Thread Claus Wahlers
Did you ever write an image gallery or a game in Flash? Did it bother 
you to write rather complicated load queues to load lots of small files 
such as image thumbnails or game assets like tiles? Are you working with 
big text files and need a reliable way to compress/uncompress them to 
save valuable bandwidth?


I'm proud to announce FZip, a cute little Actionscript 3 class i've been 
working on together with Max Herkender [1] that enables you to load 
standard ZIP archives and extract contained files while the archive is 
still loading.


Check it out:
http://codeazur.com.br/lab/fzip/

ASDocs:
http://codeazur.com.br/lab/fzip/docs/

FZip is released under OSI approved zlib/libpng license.

Sample usage:

public function YourApp() {
   var request:URLRequest = new URLRequest(your.zip);
   var zip:FZip = new FZip();
   zip.addEventListener(FZipEvent.FILE_LOADED, fileCompleteHandler);
   zip.load(request);
}

private function fileCompleteHandler(evt:FZipEvent):void {
   var file:FZipFile = evt.file;
   trace(File loaded:  + file.filename)
   trace(   + file.sizeCompressed);
   trace(   + file.sizeUncompressed);
}

[1] http://blog.brokenfunction.com/

--
claus wahlers
côdeazur brasil
http://codeazur.com.br
___
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 : chr() == String.fromCharCode()?

2006-09-15 Thread julien castelain

ok mike, so what :)
i read that in the docs too. however you still didn't reply to the question

take it easy







On 9/15/06, Mike Keesey [EMAIL PROTECTED] wrote:


Not to be too harsh, but that's been deprecated since, what, Flash 5?
―
Mike Keesey

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of julien castelain
 Sent: Wednesday, September 13, 2006 10:45 PM
 To: flashcoders list
 Subject: [Flashcoders] AS3 : chr() == String.fromCharCode()?

 hi list,

 i saw in the AS2 to AS3 migration guide (
 http://livedocs.macromedia.com/flex/2/langref/migration.html)
 that chr() has been removed ... is String.fromCharCode() the way to do
 things now?

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

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

___
Flashcoders@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] Drag and drop with Multiple targets function

2006-09-15 Thread J ROWLEY
Hello,
  I am trying to create a concise piece of code for a drag and drop that I can 
reuse again and again. The dragged item should be able to land on any target 
(but only one target is correct - although I would like it to be easy to set 
more than one target).
  I want it to be customisable just by changing parameters in functions (so 
people that don't know actionscript very well can use it). I am not really an 
expert at actionscript so any help would be gratefully received! 
   
  This is as far as I have got although the drag items only stay on the correct 
targets:
   
  _root.result=0;
function dragSetup(clip, targ) {
clip.onPress = function() {
startDrag(this);
this.beingDragged=true; 
};
clip.onRelease = clip.onReleaseOutside=function () {
stopDrag();
this.beingDragged=false; 
if (eval(this._droptarget) == targ) {
this.onTarget = true;
_root.result++;
_root.targ.gotoAndStop(2);
} else {
this.onTarget = false;
_root.targ.gotoAndStop(1);
}
};
clip.startX = clip._x;
clip.startY = clip._y;

clip.endX = targ._x;
clip.endY = targ._y;
  
clip.onEnterFrame = function() {
if (!this.beingDragged  !this.onTarget) {
this._x -= (this._x-this.startX)/2;
this._y -= (this._y-this.startY)/2;

} else if (!this.beingDragged  this.onTarget) {
this._x -= (this._x-this.endX)/2;
this._y -= (this._y-this.endY)/2;
}
};
} 
dragSetup(option1,target1); 
dragSetup(option2,target2);
dragSetup(option3,target3);
dragSetup(option4,target4); 
dragSetup(option5,target5);
dragSetup(option6,target6);
dragSetup(option7,target7);
   
  thanks
  Jo
___
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] FLV size

2006-09-15 Thread Jake Prime

Hi Dennis

When you choose your compression rate in Flash Video Encoder, and
probably other compression tools, you are choosing it in kilobits per
second (kbps). Therefore the filesize is dependent on how long the
video is, and not how large the dimesions are.

You should notice however that the smaller video will be considerably
better quality than the large one.

Jake

On 14/09/06, Dennis - I Sioux [EMAIL PROTECTED] wrote:

Hey,

I have a strange situation with converting avi's to flv.
When I convert a 4 minute 720x576 avi to a 720x576 flv the file size is 25,6
MB
But when I convert the same video to a 320x256 flv the size is 24,1 MB

So the difference in filesize is very little compared to the difference in
video size.
I would expect it to be half the MB size.


Anybody familiar with this weird outcome?



Regards,

Dennis


___
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] Introducing FZip... ZIP it up!

2006-09-15 Thread Ramon Miguel M. Tayag

Amazing.  Nice work - very very exciting.

On 9/15/06, Claus Wahlers [EMAIL PROTECTED] wrote:

Did you ever write an image gallery or a game in Flash? Did it bother
you to write rather complicated load queues to load lots of small files
such as image thumbnails or game assets like tiles? Are you working with
big text files and need a reliable way to compress/uncompress them to
save valuable bandwidth?

I'm proud to announce FZip, a cute little Actionscript 3 class i've been
working on together with Max Herkender [1] that enables you to load
standard ZIP archives and extract contained files while the archive is
still loading.

Check it out:
http://codeazur.com.br/lab/fzip/

ASDocs:
http://codeazur.com.br/lab/fzip/docs/

FZip is released under OSI approved zlib/libpng license.

Sample usage:

public function YourApp() {
var request:URLRequest = new URLRequest(your.zip);
var zip:FZip = new FZip();
zip.addEventListener(FZipEvent.FILE_LOADED, fileCompleteHandler);
zip.load(request);
}

private function fileCompleteHandler(evt:FZipEvent):void {
var file:FZipFile = evt.file;
trace(File loaded:  + file.filename)
trace(   + file.sizeCompressed);
trace(   + file.sizeUncompressed);
}

[1] http://blog.brokenfunction.com/

--
claus wahlers
côdeazur brasil
http://codeazur.com.br
___
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




--
Ramon Miguel M. Tayag
___
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] Drag and drop with Multiple targets function

2006-09-15 Thread J ROWLEY
Hello,
  I am trying to create a concise piece of code for a drag and drop that I can 
reuse again and again. The dragged item should be able to land on any target 
(but only one target is correct - although I would like it to be easy to set 
more than one target).
  I want it to be customisable just by changing parameters in functions (so 
people that don't know actionscript very well can use it). I am not really an 
expert at actionscript so any help would be gratefully received! 
   
  This is as far as I have got although the drag items only stay on the correct 
targets:
   
  _root.result=0;
function dragSetup(clip, targ) {
clip.onPress = function() {
startDrag(this);
this.beingDragged=true; 
};
clip.onRelease = clip.onReleaseOutside=function () {
stopDrag();
this.beingDragged=false; 
if (eval(this._droptarget) == targ) {
this.onTarget = true;
_root.result++;
_root.targ.gotoAndStop(2);
} else {
this.onTarget = false;
_root.targ.gotoAndStop(1);
}
};
clip.startX = clip._x;
clip.startY = clip._y;

clip.endX = targ._x;
clip.endY = targ._y;
  
clip.onEnterFrame = function() {
if (!this.beingDragged  !this.onTarget) {
this._x -= (this._x-this.startX)/2;
this._y -= (this._y-this.startY)/2;

} else if (!this.beingDragged  this.onTarget) {
this._x -= (this._x-this.endX)/2;
this._y -= (this._y-this.endY)/2;
}
};
} 
dragSetup(option1,target1); 
dragSetup(option2,target2);
dragSetup(option3,target3);
dragSetup(option4,target4); 
dragSetup(option5,target5);
dragSetup(option6,target6);
dragSetup(option7,target7);
   
  thanks
  Jo
___
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] How to get the URL of the page that a moive is embedded on?

2006-09-15 Thread Ian Thomas

Here's a mad thought - if you know Apache/PHP you could do a few
tricks server side so that the URL:

http://someserver/flash.swf

actually points to a PHP file (use mod_rewrite). That PHP file could
then capture all sorts of details about the incoming request
(referring URL etc.) and log it or take whatever action necessary -
then if it's happy serving the SWF, pass the appropriate content type
and just pass through the content of the SWF file.

No Javascript required.

Something worth thinking about, anyway. I may try to make it work. :-)

Cheers,
 Ian

On 9/14/06, Jeff Mastropietro [EMAIL PROTECTED] wrote:

I need a 100% effective way to get the URL of the page that a flash
movie is embedded in.  It cannot rely on JavaScript.  Any ideas?  We are
trying to track the pages that are embedding our flash movies.

Thanks,
Jeff

___
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] How to get the URL of the page that a moive is embedded on?

2006-09-15 Thread Ian Thomas

On 9/15/06, Ian Thomas [EMAIL PROTECTED] wrote:

Here's a mad thought - if you know Apache/PHP you could do a few
tricks server side so that the URL:

http://someserver/flash.swf

actually points to a PHP file (use mod_rewrite). That PHP file could
then capture all sorts of details about the incoming request
(referring URL etc.) and log it or take whatever action necessary -
then if it's happy serving the SWF, pass the appropriate content type
and just pass through the content of the SWF file.


By this, I mean - the real SWF file is somewhere else on the server,
and needn't even be accessible via the web server at all, except via
the faked-up URL above.

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


[Flashcoders] Hex to HSB

2006-09-15 Thread Mike Mountain
Anyone got a quick and dirty hex to HSB and back converter algo -
without having to convert to RGB first?

Cheers

M

___
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] Xray trace problem

2006-09-15 Thread Karina Steffens
Now I'm really hurt :~( 

:P 

 -Original Message-
 From: Chris Allen [mailto:[EMAIL PROTECTED] 
 Sent: 13 September 2006 14:31
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] Xray trace problem
 
 John,
 
 Maybe you should phase out the older interface all together. 
 This way it's less to maintain and creates less confusion. 
 The Flex 2 Xray interface is so bad ass that no one will miss 
 the old one anyway.
 
 Just my opinion, take it or leave it.
 
 -Chris
 
 On 9/13/06, Cosmin Cimpoi [EMAIL PROTECTED] wrote:
  Hi John!
 
  I only use xRay as a standalone or projector so I didn't test the 
  online one from rockonflash.com Except the Flash player 9 win 
  projector version (build with Flex) the other
  2 didn't work for me. Those were running in the standalone 
 Flash 8 player.
  So the factor that caused things to work after ruled out 
 would be the 
  Standalone Flash Player 8.5 and the Xray.exe v 1.2.5 But as 
 it seems 
  I'm among the few that had this issue could be a system problem.
 
  Thanks for xRay :)
 
  cosmin
 
 
  - Original Message -
  From: John Grden [EMAIL PROTECTED]
  To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
  Sent: Thursday, September 07, 2006 4:43 PM
  Subject: Re: [Flashcoders] Xray trace problem
 
 
   man sorry about that Cosmin - so was the issue that you 
 were running 
   the SWF interface in the Flash 8 player in the browser/player?
  
   Thanks for letting me know,
  
   jpg
  
   On 9/7/06, Cosmin Cimpoi [EMAIL PROTECTED] wrote:
  
   Me again.
   It seems that it is a Player issue.
   Using the Windows Projector - Xray Interface seems to 
 work fine ( 
   it uses the Adobe Flash Player 9 standalone) So the 
 preoblem could 
   lie in a number of places, especially the various players I have 
   installed in the PC. Somenone had the problem before and climed 
   that a reboot did the fix. Not for me. But I'm glasd that one of 
   the Interfaces work. I just decided to go with xray 
 exclusively and 
   the bug was a bummer.
  
   cosmin
  
  
   - Original Message -
   From: Cosmin Cimpoi [EMAIL PROTECTED]
   To: Flashcoders List flashcoders@chattyfig.figleaf.com
   Sent: Thursday, September 07, 2006 2:15 PM
   Subject: [Flashcoders] Xray trace problem
  
  
   Hello everyone!
   Has anyone experience this while using xRay for debugging:
   - snapshot and propery manipulation works fine
   - the trace method does not output anything in the external 
   interface I have the latest xray, Flash 8, WinXP sp2 with up to 
   date patches and all.
   If the external interface is not open the traces go to the Flash 
   Output panel just fine.
  
   I suspect that it's a LocalConnection security issue but 
 still the 
   property inspector works fine.
   I hope John Grden sees this but I'll file a bug nevertheless.
  
   cosmin
   ___
   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
  
  
  
  
   --
   [  JPG  ]
   ___
   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@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

Re: [Flashcoders] Flash upload problems

2006-09-15 Thread Ricardo Sánchez

I knew about that, and that was the first thing I told the backend guy, but
he told me that wasn't the problem. :S

On 9/15/06, Muzak [EMAIL PROTECTED] wrote:



http://www.osflash.org/pipermail/osflash_osflash.org/2006-February/007266.html

This has nothing to do with Struts by the way. Struts is just a framework.
http://struts.apache.org/

Muzak

- Original Message -
From: Ricardo Sánchez [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Thursday, September 14, 2006 10:32 AM
Subject: [Flashcoders] Flash  upload problems


 Ok, I supposed this has been talked over and over a thousand times but I
 can't find a solution.

 We are trying to implement an upload for large files in flash.

 Our first approach was to use FileReference in Flash 8. But the backend
guys
 said we should use something called struts for Java (no idea what this
 is), which seems to be the best option for large files. But they say
flash
 doesn't send the file 100% correct regarding the RFC. So it fails (while
 some other thing called cos works... you see my backend knowledge its
 pretty limited)

 So then we tryed making it with the old fashioned hidden-frame
technique.
 But that doesn't seem to work with Firefox. When I hit the browse
button
 nothing happens.

 Can anyone point me out in the right direction. Is there a way to fix
the
 struts problem? Or maybe I can make hidden frame work with Firefox?

 Thanks.


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

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


___
Flashcoders@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] How to get the URL of the page that a moive is embedded on?

2006-09-15 Thread Jim Berkey
http://www.mochibot.com/

*** REPLY SEPARATOR  ***

On 9/14/2006 at 1:45 PM Jeff Mastropietro wrote:

I need a 100% effective way to get the URL of the page that a flash 
movie is embedded in.  It cannot rely on JavaScript.  Any ideas?  We are 
trying to track the pages that are embedding our flash movies.

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

e

___
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] Hex to HSB

2006-09-15 Thread eka

Hello :)

you can find this tool in my OpenSource framework VEGAS (with this extension
ASGard)


http://osflash.org/vegas


# Color tools in asgard.colors package :

http://svn1.cvsdude.com/osflash/vegas/AS2/trunk/src/asgard/colors/

# HSV to RGB in ColorHSV class

http://svn1.cvsdude.com/osflash/vegas/AS2/trunk/src/asgard/colors/ColorHSV.as


EKA+ :)





2006/9/15, Mike Mountain [EMAIL PROTECTED]:


Anyone got a quick and dirty hex to HSB and back converter algo -
without having to convert to RGB first?

Cheers

M

___
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] How to get the URL of the page that a moiveis embedded on?

2006-09-15 Thread Mike Mountain
trace(this._url)

Have I missed something?

M 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf 
 Of Jim Berkey
 Sent: 15 September 2006 12:12
 To: flashcoders@chattyfig.figleaf.com
 Subject: Re: [Flashcoders] How to get the URL of the page 
 that a moiveis embedded on?
 
 http://www.mochibot.com/
 
 *** REPLY SEPARATOR  ***
 
 On 9/14/2006 at 1:45 PM Jeff Mastropietro wrote:
 
 I need a 100% effective way to get the URL of the page that a flash 
 movie is embedded in.  It cannot rely on JavaScript.  Any ideas?  We 
 are trying to track the pages that are embedding our flash movies.
 
 Thanks,
 Jeff
 ___
 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
 
 e
 
 ___
 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] Hex to HSB

2006-09-15 Thread Mike Mountain
Thanks, but I was hoping this would be possible without having to
convert to RGB first - I basically want to do pixel by pixel colour
transform on a copy of a video whilst it's being played so it needs to
be ultra efficient.

M 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of eka
 Sent: 15 September 2006 12:18
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] Hex to HSB
 
 Hello :)
 
 you can find this tool in my OpenSource framework VEGAS (with 
 this extension
 ASGard)
 
  http://osflash.org/vegas
 
 # Color tools in asgard.colors package :
 
 http://svn1.cvsdude.com/osflash/vegas/AS2/trunk/src/asgard/colors/
 
 # HSV to RGB in ColorHSV class
 
 http://svn1.cvsdude.com/osflash/vegas/AS2/trunk/src/asgard/col
 ors/ColorHSV.as
 
 
 EKA+ :)
 
 
 
 
 
 2006/9/15, Mike Mountain [EMAIL PROTECTED]:
 
  Anyone got a quick and dirty hex to HSB and back converter algo - 
  without having to convert to RGB first?
 
  Cheers
 
  M
 
  ___
  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] {OT} Job Postings?

2006-09-15 Thread Merrill, Jason
Flexcoders list?

Yes, a simple Google search for Flexcoders turns up the Yahoo
Flexcoders list.

http://tech.groups.yahoo.com/group/flexcoders/


Jason Merrill
Bank of America 
Learning  Organization Effectiveness - Technology Solutions 
 
 
 
 
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Scott Steven
Sent: Thursday, September 14, 2006 1:52 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] {OT} Job Postings?

Flexcoders list?


On 9/12/06, Merrill, Jason [EMAIL PROTECTED] wrote:

 Wade - I assume you have already, but have you also posted on the
 Flexcoders list?

 Jason Merrill
 Bank of America
 Learning  Organization Effectiveness - Technology Solutions


___
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] How to get the URL of the page that a moiveis embedded on?

2006-09-15 Thread Ian Thomas

Hi Mike,
 The URL of the page _containing_ the file, not the URL of the file itself.

Ian

On 9/15/06, Mike Mountain [EMAIL PROTECTED] wrote:

trace(this._url)

Have I missed something?

M

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf
 Of Jim Berkey
 Sent: 15 September 2006 12:12
 To: flashcoders@chattyfig.figleaf.com
 Subject: Re: [Flashcoders] How to get the URL of the page
 that a moiveis embedded on?

 http://www.mochibot.com/

 *** REPLY SEPARATOR  ***

 On 9/14/2006 at 1:45 PM Jeff Mastropietro wrote:

 I need a 100% effective way to get the URL of the page that a flash
 movie is embedded in.  It cannot rely on JavaScript.  Any ideas?  We
 are trying to track the pages that are embedding our flash movies.
 
 Thanks,
 Jeff
 ___
 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

 e

 ___
 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] masking a clip which uses the drawing api

2006-09-15 Thread Merrill, Jason
Is it not possible to mask a clip into which you draw things using
the drawing API?

I'm not totally sure about masking, but in general, I think there are
some bugs or conflicts with a movie clip drawn upon with the draw API
and other elements of the movie.  I'm not sure this is as related as you
would like, but for example, I had an issue with one of those drawn-on
movie clips which had another movie clip as a child, which had a
textfield on it.  It worked fine until the textfield was updated with
new data - then the old text still showed, and the new text was also
drawn over the top - so it looked like there were two overlapping
textfields.  If I separated the textfield from the clip being drawn on,
it worked fine.  I never could figure out the behavior, but I assumed it
had to do with the clips and children of clips drawn on by the draw API
and the way the player renders them/redraws them.  In another case,
portions of v2 components always displayed below clips which were drawn
upon - the drawn on clips were always on top.

Post again if you figure it out.  

Jason Merrill
Bank of America 
Learning  Organization Effectiveness - Technology Solutions 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Josh Santangelo
Sent: Wednesday, September 13, 2006 6:22 PM
To: Flashcoders mailing list
Subject: [Flashcoders] masking a clip which uses the drawing api

I'm having the same problem as this fellow:

http://chattyfig.figleaf.com/pipermail/flashcoders/2003-January/
058866.html

Is it not possible to mask a clip into which you draw things using
the drawing API?

-josh
___
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] Convert Regular Number back to Hex value?

2006-09-15 Thread Merrill, Jason
Similar to Mike's thread, is there a function out there someone has
written to convert a regular numerical value back to its equivalent hex
value?  

For example:

var myColor:Number = 0xff6600;
myText_txt.text = myColor //shows converted to 16737792, but 
  //need it to display as
ff6600

Thanks,

Jason Merrill
Bank of America 
Learning  Organization Effectiveness - Technology Solutions 
 
 
 
 
___
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] Convert Regular Number back to Hex value?

2006-09-15 Thread Mike Mountain
toString(16)

Cheers

M 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf 
 Of Merrill, Jason
 Sent: 15 September 2006 13:01
 To: Flashcoders mailing list
 Subject: [Flashcoders] Convert Regular Number back to Hex value?
 
 Similar to Mike's thread, is there a function out there 
 someone has written to convert a regular numerical value back 
 to its equivalent hex value?  
 
 For example:
 
 var myColor:Number = 0xff6600;
 myText_txt.text = myColor //shows converted to 16737792, but 
   //need it to 
 display as ff6600
 
 Thanks,
 
 Jason Merrill
 Bank of America
 Learning  Organization Effectiveness - Technology Solutions 
  
  
  
  
 ___
 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] Convert Regular Number back to Hex value?

2006-09-15 Thread julien castelain

maybe this could do

var red:Number = 0xFF;
trace(red.toString(16));

ciao


On 9/15/06, Merrill, Jason [EMAIL PROTECTED] wrote:


Similar to Mike's thread, is there a function out there someone has
written to convert a regular numerical value back to its equivalent hex
value?

For example:

var myColor:Number = 0xff6600;
myText_txt.text = myColor //shows converted to 16737792, but
 //need it to display as
ff6600

Thanks,

Jason Merrill
Bank of America
Learning  Organization Effectiveness - Technology Solutions




___
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] Convert Regular Number back to Hex value?

2006-09-15 Thread Mendelsohn, Michael
Hi Jason, could this be what you're looking for?

var myColor:Number = 0xff6600;
t.text = String(myColor.toString(16));
//ff6600
// or...
//t.text = myColor;
//16737792




Similar to Mike's thread, is there a function out there someone has
written to convert a regular numerical value back to its equivalent hex
value?  

For example:

var myColor:Number = 0xff6600;
myText_txt.text = myColor //shows converted to 16737792, but 
  //need it to display as
ff6600

___
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] Convert Regular Number back to Hex value?

2006-09-15 Thread Merrill, Jason
Mike, Julien, thanks - perfect.

Jason Merrill
Bank of America 
Learning  Organization Effectiveness - Technology Solutions 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of julien castelain
Sent: Friday, September 15, 2006 8:14 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Convert Regular Number back to Hex value?

maybe this could do

var red:Number = 0xFF;
trace(red.toString(16));

ciao


On 9/15/06, Merrill, Jason [EMAIL PROTECTED] wrote:

 Similar to Mike's thread, is there a function out there someone has
 written to convert a regular numerical value back to its equivalent
hex
 value?

 For example:

 var myColor:Number = 0xff6600;
 myText_txt.text = myColor //shows converted to 16737792, but
  //need it to display as
 ff6600

 Thanks,

 Jason Merrill
 Bank of America
 Learning  Organization Effectiveness - Technology Solutions




 ___
 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] loading xml

2006-09-15 Thread dc

hiya -

I'm trying to load some xml from within an object. a little confused
how to handle callbacks.

inside the class (constructor) i create an XML object, call its load func.

class WireMenu {
private var myXML:XML;

public function WireMenu(xmlPath){
myXML = new XML();
myXML.ignoreWhite = true;
myXML.onLoad = this.drawMenu;
myXML.load(xmlPath);

}


all good, but the function that gets called back (drawMenu) only gets
passed a boolean/sucess flag. how do i get at the loaded XML data?

the data also doesnt seem to be within the myXML object either...
that method is like this:

function drawMenu(p1, p2) {
_root.dbg.text = drawing;
trace(WireMenu.drawMenu());
trace(myXML.firstChild);// null
trace(p1);  // true: so we were able to load, but where did 
it go?
trace(p2);  // null
}

tx for any help!!

/dc
___
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] Convert Regular Number back to Hex value?

2006-09-15 Thread Merrill, Jason
Yes, perfect, thank you.

Jason Merrill
Bank of America 
Learning  Organization Effectiveness - Technology Solutions 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Mendelsohn, Michael
Sent: Friday, September 15, 2006 8:20 AM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Convert Regular Number back to Hex value?

Hi Jason, could this be what you're looking for?

var myColor:Number = 0xff6600;
t.text = String(myColor.toString(16));
//ff6600
// or...
//t.text = myColor;
//16737792




Similar to Mike's thread, is there a function out there someone has
written to convert a regular numerical value back to its equivalent
hex
value?

For example:

var myColor:Number = 0xff6600;
myText_txt.text = myColor //shows converted to 16737792, but
  //need it to display as
ff6600

___
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] How to get the URL of the page that a moive is embedded on?

2006-09-15 Thread Ian Thomas

Hi Jeff,
 If you are on PHP/Apache, I've thrown together this small set of
scripts which might help:
http://www.wildwinter.net/public/files/swfProxy.zip

Cheers,
 Ian

On 9/14/06, Jeff Mastropietro [EMAIL PROTECTED] wrote:

I need a 100% effective way to get the URL of the page that a flash
movie is embedded in.  It cannot rely on JavaScript.  Any ideas?  We are
trying to track the pages that are embedding our flash movies.

Thanks,
Jeff

___
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] swfProxy

2006-09-15 Thread Ian Thomas

Hi guys,

Prompted by a question from Jeff Mastropietro, I had a thought about
an easy way of stopping deep linking on .swf files and being certain
which page was referring to them/embedding them.

I've written a quick filter for Apache/PHP.

The idea is that the user makes a request to:

http://www.example.com/content/test.swf

Internally, a mod_rewrite request turns this into a request to a
proxy.php file, which then decides whether the client should have
access to the real file or not. If it should have access, it passes
the .swf straight back to the client.

The proxy can also add no-cache headers etc., which might be handy for
development. Or you can wedge in any code you like; tracking etc.

You can download it here (only 4K):
http://www.wildwinter.net/public/files/swfProxy.zip

Hope it's helpful to someone!

Cheers,
 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] loading xml

2006-09-15 Thread Pranav Negandhi
It's a scoping issue. Your XML object is calling the drawMenu function
in its own scope and not within the scope of the WireMenu instance.

Use the delegate class when assigning your onLoad handler. Look up the
documentation on the Delegate class for syntax and arguments.


Regards,
Pranav Negandhi
Fractal | ink
O: 91-22-6660-3682
M: 91-98211-73656
www.fractalink.com


 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of dc
 Sent: Friday, 15 September 2006 18:02
 To: Flashcoders mailing list
 Subject: [Flashcoders] loading xml
 
 
 hiya -
 
 I'm trying to load some xml from within an object. a little confused
 how to handle callbacks.
 
 inside the class (constructor) i create an XML object, call 
 its load func.
 
 class WireMenu {
 private var myXML:XML;
 
 public function WireMenu(xmlPath){
   myXML = new XML();
   myXML.ignoreWhite = true;
   myXML.onLoad = this.drawMenu;
   myXML.load(xmlPath);
 
 }
 
 
 all good, but the function that gets called back (drawMenu) only gets
 passed a boolean/sucess flag. how do i get at the loaded XML data?
 
 the data also doesnt seem to be within the myXML object either...
 that method is like this:
 
   function drawMenu(p1, p2) {
   _root.dbg.text = drawing;
   trace(WireMenu.drawMenu());
   trace(myXML.firstChild);// null
   trace(p1);  // true: so we were able to 
 load, but where did it go?
   trace(p2);  // null
   }
 
 tx for any help!!
 
 /dc
 ___
 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] reflection update

2006-09-15 Thread Hans Wichman

Hi peeps,

in the
http://chattyfig.figleaf.com/pipermail/flashcoders/2005-June/140802.html i
described a method for class name reflection I used.
I noticed a while ago it's being used here and there (xray, some arp
extensions, etc), so you might want to know it's been updated.

It's part of the xflas2 package now, and the updates are:
- a fix for the flash prototype chain bug was added (mainly meaning that
using ClassFinder.getPath(this) in a superclass will work as its supposed
to:))
- it can now be used to retrieve class names for objects, functionnames for
functions, and classnames for functions (the class in which they have been
defined).
- partial package names can be registered now instead of root packages.

I know from John that he extended his version of it, to include a kind of
global sweep of all the classes, I haven't incorporated that yet, but may do
so in the near future.
Use at your own risk ofcourse:)

Note that I use a kind of caching mechanism, which currently doesnt update
itself. If you use a scenario in which main.swf loads sub.swf which contains
new classes, I assume sub.swf will register its classes on its own.

greetz
JC
___
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] {OT} Job Postings?

2006-09-15 Thread Helmut Granda

You also have to remember to give the opportunity to those that are in the
Mid Range but are eager to learn and move forward. I dont mean to make your
team full of Wannabes but I hope more people were willing to give an
opportunity to those who seem to not be quite there yet but have a chance.


On 9/12/06, John Grden [EMAIL PROTECTED] wrote:


that's the problem - they're hard to find.  When I was at blitz, must have
interviewed everyone in Los Angeles that even thought about Actionscript /
flash.  Good ones were extremely hard to find, and they were either
already
working for us or 2-3 competitors.

there just aren't many out there.


On 8/31/06, Wade Arnold [EMAIL PROTECTED] wrote:

 I have been on this list for years and have seen all the job postings
and
 have posted some myself. I am looking to hire 5 Flex 2.0 and 3 flash
 developers. I have tried posting on dice and monster and have yet to get
 resumes that come close to the qualifications that I need. So I have to
 ask
 where are people finding flash and flex guru's? If you are a flash or
flex
 guru please email me your resume, we pay well!

 Wade Arnold
 T8DESIGN.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




--
[  JPG  ]
___
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





--
...helmut
helmutgranda.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] BitmapData.getPixel() - negative value ?

2006-09-15 Thread Jeroen Beckers

var n:Number = -16777216
trace(n.toString(16));

Gives me:

-100 ?



Claus Wahlers wrote:



pixel = -16777216


-16777216 is 0xff00 (solid black)

Try to trace pixel.toString(16)

Cheers,
Claus.
___
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] BitmapData.getPixel() - negative value ?

2006-09-15 Thread Merrill, Jason
 -16777216 is 0xff00 (solid black)

I thought solid black was 

0xff
16777215

?

Jason Merrill
Bank of America 
Learning  Organization Effectiveness - Technology Solutions 
 
 
 
 
___
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] BitmapData.getPixel() - negative value ?

2006-09-15 Thread Claus Wahlers

Number.toString() is a little borked.

Meister Skinner explains it here:
http://www.gskinner.com/blog/archives/2005/12/source_code_tra.html

Cheers,
Claus.


Jeroen Beckers wrote:


var n:Number = -16777216
trace(n.toString(16));

Gives me:

-100 ?



Claus Wahlers wrote:



pixel = -16777216


-16777216 is 0xff00 (solid black)

Try to trace pixel.toString(16)

Cheers,
Claus.

___
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] BitmapData.getPixel() - negative value ?

2006-09-15 Thread Claus Wahlers

Merrill, Jason wrote:


-16777216 is 0xff00 (solid black)


I thought solid black was 


0xff
16777215


That'd be white. 0 is black. The additional 'ff' in the highest byte is 
the alpha value (returned by getPixel32).


--
claus wahlers
côdeazur brasil
http://codeazur.com.br
___
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] BitmapData.getPixel() - negative value ?

2006-09-15 Thread Merrill, Jason
Oooops, you are right, I meant 0x00

Nevertheless, you had said, 0xff00 (solid black) ??

Jason Merrill
Bank of America 
Learning  Organization Effectiveness - Technology Solutions 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Claus Wahlers
Sent: Friday, September 15, 2006 11:09 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] BitmapData.getPixel() - negative value ?

Merrill, Jason wrote:

 -16777216 is 0xff00 (solid black)

 I thought solid black was

 0xff
 16777215

That'd be white. 0 is black. The additional 'ff' in the highest byte is
the alpha value (returned by getPixel32).

--
claus wahlers
côdeazur brasil
http://codeazur.com.br
___
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: RE: [Flashcoders] Xray trace problem

2006-09-15 Thread Chris Allen

On 9/15/06, Karina Steffens [EMAIL PROTECTED] wrote:

Now I'm really hurt :~(

:P


Oh, I'm sorry. :-) Your design for that version was awesome, but still
doesn't change the fact that the V2 components were buggy and the new
performance of the Flex 2 app is amazing. Anyway, I'm sure John would
listen to some UI tips from you Karina. And I do believe that too many
Flex applications look the same. I'm already sick of that damn
preloader that everyone uses. Oh and it's a good excuse for you to
work on your MXML skills. There's definitely a huge market for
designers that really know MXML.
___
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] BitmapData.getPixel() - negative value ?

2006-09-15 Thread Claus Wahlers



Oooops, you are right, I meant 0x00
Nevertheless, you had said, 0xff00 (solid black) ??


Yeah. Read the rest of my mail. ;)


-16777216 is 0xff00 (solid black)

I thought solid black was

0xff
16777215

That'd be white. 0 is black. The additional 'ff' in the highest byte is
the alpha value (returned by getPixel32).


--
claus wahlers
côdeazur brasil
http://codeazur.com.br
___
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] BitmapData.getPixel() - negative value ?

2006-09-15 Thread Zeh Fernando

Oooops, you are right, I meant 0x00
Nevertheless, you had said, 0xff00 (solid black) ??


It's because it has the alpha value on it (ARGB) with a opacity of 255 (100% 
opaque, or 0% transparent).


0x00 (or just 0) *IS* solid black, but if you're painting on a bitmap 
with an alpha channel, you have to be sure to also set its alpha value or 
else you'll be painting transparent black pixels.



Zeh 


___
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] BitmapData.getPixel() - negative value ?

2006-09-15 Thread Jeroen Beckers

Thank you for the link, I will surely read it!

Since I don't need the alpha, I changed getPixel32 to getPixel (oh, 
sorry for wrong topic-title) and it works fine now. Thanks for all the 
input :-).


(Oh, and I also noticed that I was dividing by 0x0, which is off 
course '0' and dividing by 0 gives 'Infinity').


Cheers!

Claus Wahlers wrote:

Number.toString() is a little borked.

Meister Skinner explains it here:
http://www.gskinner.com/blog/archives/2005/12/source_code_tra.html

Cheers,
Claus.


Jeroen Beckers wrote:


var n:Number = -16777216
trace(n.toString(16));

Gives me:

-100 ?



Claus Wahlers wrote:



pixel = -16777216


-16777216 is 0xff00 (solid black)

Try to trace pixel.toString(16)

Cheers,
Claus.

___
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] BitmapData.getPixel() - negative value ?

2006-09-15 Thread Merrill, Jason
Sorry - :) 

Jason Merrill
Bank of America 
Learning  Organization Effectiveness - Technology Solutions 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Claus Wahlers
Sent: Friday, September 15, 2006 11:37 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] BitmapData.getPixel() - negative value ?


 Oooops, you are right, I meant 0x00
 Nevertheless, you had said, 0xff00 (solid black) ??

Yeah. Read the rest of my mail. ;)

 -16777216 is 0xff00 (solid black)
 I thought solid black was

 0xff
 16777215
 That'd be white. 0 is black. The additional 'ff' in the highest byte is
 the alpha value (returned by getPixel32).

--
claus wahlers
côdeazur brasil
http://codeazur.com.br
___
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] Hex to HSB

2006-09-15 Thread Ammon
Mike Mountain wrote:
 Thanks, but I was hoping this would be possible without having to
 convert to RGB first - I basically want to do pixel by pixel colour
 transform on a copy of a video whilst it's being played so it needs to
 be ultra efficient.

I'm sorry... but explain to my how a hex number of the form 0xRRGGBB
isn't _already_ an RGB value? :P

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] BitmapData.getPixel() - negative value ?

2006-09-15 Thread Merrill, Jason
Good to know, thanks - I can see now I still have a lot to learn about
color and the new BitmapData class.  :) 

Jason Merrill
Bank of America 
Learning  Organization Effectiveness - Technology Solutions 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Zeh Fernando
Sent: Friday, September 15, 2006 11:42 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] BitmapData.getPixel() - negative value ?

 Oooops, you are right, I meant 0x00
 Nevertheless, you had said, 0xff00 (solid black) ??

It's because it has the alpha value on it (ARGB) with a opacity of 255
(100%
opaque, or 0% transparent).

0x00 (or just 0) *IS* solid black, but if you're painting on a
bitmap
with an alpha channel, you have to be sure to also set its alpha value
or
else you'll be painting transparent black pixels.


Zeh

___
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] Site Check Please

2006-09-15 Thread Aaron Roberson

Ryan,

I went ahead and switched over to swfObject. I really like it!

One thing. After installing Flash 8/9 via express install, when the
browser is redirected back to the page the navigation does not appear.
However, after clicking elsewhere and going to a new page the
navigation appears. Do you have any ideas as to why and how I can
prevent this from happening?

-Aaron

On 9/12/06, Ryan Potter [EMAIL PROTECTED] wrote:

Are you using swfObject?  If not I would give it a look.  The detection
works great.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Aaron
Roberson
Sent: Tuesday, September 12, 2006 1:47 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Site Check Please

So it didn't work without Flash 9? Do you know if you had Flash 7 or 8
installed?

Thanks,
Aaron

On 9/12/06, Ryan Potter [EMAIL PROTECTED] wrote:
 Once I installed flash 9 it worked fine.

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Aaron
 Roberson
 Sent: Tuesday, September 12, 2006 11:02 AM
 To: Flashcoders mailing list
 Subject: [Flashcoders] Site Check Please

 I have a flash banner on my site that is parsing xml and displaying a
 navigation menu. I have recieved a couple of reports that some users
 are unable to click through to the pages linked in the navigation.

 Could as many as possible take a look at the site and tell me if the
 navigation works. If not, does anyone have any ideas what could be
 causing the links to not work?

 Site to check:
 http://whitehorsemedia.com

 Thanks in advance,
 Aaron
 ___
 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@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] Problem with video chat on FMS

2006-09-15 Thread Aaron Roberson

Try the FlashCom chattyfig mailing list or the flashcomguru forum for
help with FMS.

-Aaron

On 9/13/06, franto [EMAIL PROTECTED] wrote:

Hi all,

i got problem with video chat application on FMS (Flash media server 2)
all is descirbed here
http://www.franto.com/blog2/problem-with-video-chat-please-help

please help me find solution, i got deadline tommorow :)))
Thanks a lot in advance

-
Franto

http://blog.franto.com
http://www.flashcoders.sk
___
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] Software Development Position

2006-09-15 Thread swfer
iDashboards is one of the hottest software companies within Business 
Intelligence dashboards (www.iDashboards.com). Our customers include 
NASA, US Navy, Lockheed Martin, Johnson Controls and GE. We have an 
immediate position for a Senior Flash Developer with 4+ years of 
experience.


If being part of a leading edge and innovative software company 
excites you, we have an excellent opportunity. We are seeking an 
experienced Software Developer who has a strong background in 
Flash/ActionScript. This is not a position for a Flash 
artist/designer, but for a software development person. Must have a 
thorough understanding of ActionScript 1 and 2, and how to write 
efficient code. Should have a background in other programming 
languages and systems as well. Should be comfortable with 
multi-person development projects, and working with other people's 
code.


Must be reasonably well-versed in object-oriented software. Needs an 
understanding of XML, and its interface to ActionScript. Should be 
familiar with SQL and have a good understanding of basic database 
issues. Familiarity with design patterns is a plus, as is an 
understanding of user interfaces.


OPPORTUNITY
You will be part of our world-class Software Team:
- Develop cutting edge enhancements to the existing software
- Work with other Flash developers and Server-side Development team

REQUIREMENTS
- Must have 4+ years experience in Flash/ActionScript and object 
oriented programming

- Must have developed database driven rich-media Flash applications with XML
- BS degree preferred and good work references

The compensation plan is lucrative with a competitive base salary, 
bonus and stock options. The company also offers excellent medical 
and dental coverage along with 401K.


Please email your resume  a cover letter addressing your 
qualifications. Qualified candidates must demonstrate verifiable 
references to be considered. Email to: [EMAIL PROTECTED]


We will consider exceptionally qualified candidates from any where 
within the US or Canada who are willing to relocate to Detroit 
region. Our office is located in Troy, MI.

___
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 : chr() == String.fromCharCode()?

2006-09-15 Thread Mike Keesey
Sorry, yes, String.fromCharCode() replaced chr() a while ago.
*checks* Yes, since Flash 5.

Check the Deprecated section in the ActionScript side panel. Functions
like chr() and ord() were in Flash 4, back before ActionScript (or was
it just called Actions back then?) followed ECMA standards.
―
Mike Keesey

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of julien castelain
 Sent: Friday, September 15, 2006 1:17 AM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] AS3 : chr() == String.fromCharCode()?
 
 ok mike, so what :)
 i read that in the docs too. however you still didn't reply to the
 question
 
 take it easy

___
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] Problem with video chat on FMS

2006-09-15 Thread Dave Watts
 Try the FlashCom chattyfig mailing list or the flashcomguru 
 forum for help with FMS.

Unfortunately, the Flashcomm list is down until further notice. I've been
out of the office for several weeks, and have not been able to repair it
yet.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!
___
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] bandwidth detection...

2006-09-15 Thread badi malik
I'm wondering if anyone has any suggestions regarding bandwidth detection...i'm 
trying to choose between high and low bandwidth versions of the same video
 
thanks 
 
 

 
- Original Message 
From: Claus Wahlers [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Friday, September 15, 2006 7:52:08 AM
Subject: Re: [Flashcoders] BitmapData.getPixel() - negative value ?


Number.toString() is a little borked.

Meister Skinner explains it here:
http://www.gskinner.com/blog/archives/2005/12/source_code_tra.html

Cheers,
Claus.


Jeroen Beckers wrote:

 var n:Number = -16777216
 trace(n.toString(16));
 
 Gives me:
 
 -100 ?
 
 
 
 Claus Wahlers wrote:

 pixel = -16777216

 -16777216 is 0xff00 (solid black)

 Try to trace pixel.toString(16)

 Cheers,
 Claus.
___
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] Huge block of scrolling text: Choppy animation.

2006-09-15 Thread Micky Hulse

Hi,

I am working on a simple Flash project... at end of the animation I have 
a text block of 80 names, kinda like movie credits, that scroll from 
bottom of screen to top of screen... it looks like crap using motion 
tween. Very choppy movement, not smooth at all.


Any fixes?

I am assuming that the choppyness is due to the complexity of the text 
object/block.


Know of any AS scripts that might make this less of a problem?

I am using F8 and outputting a projector...

Any help would be great.
Cheers,
Micky


--
 Wishlist: http://snipurl.com/vrs9
   Switch: http://browsehappy.com/
 BCC?: http://snipurl.com/w6f8
   My: http://del.icio.us/mhulse
___
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] Software Development Position

2006-09-15 Thread hank williams

I am all for job postings, but I gotta tell ya, sometimes they just
say silly things.

4 years developing flash.
must know AS1 and AS2
Software development person (programmed before flash I presume)
Background in other languages and systems
Familiarity with design patterns
Good understanding of basic database issues
Not a position for an artist or designer.
Must be willing to relocate to Detroit area.

Ok, first of all, most people who have been doing flash for 4+ years
are artists or designers. Almost no serious programming was even
possible in flash before AS2 so by defining 4 years you are
essentially insisting that someone *not* be someone who has a
background in other languages and systems. I'm not saying they don't
exist at all, but it is such a silly requirement because it
inappropriately limits the pool. Of course insisting that someone be
an expert in AS1 is even more silly. Is this because their job will be
fixing someone else's 5 year old spaghetti code? Then the kicker is
that this person must be in the Detroit area or willing to relocate.

So in my mind, they are looking for the tiny pool of people that
studied computer science but were also interested in animation and so
dabbled in flash before it was real programmer ready and are willing
to move to one of the most depressed metropolitan areas in the US. And
I bet they wanna pay like 70-80k. Why cant people write intelligent
job specs. Oh and by the way I am not looking for a job I just find
this annoying that neither I nor any of the excellent programmers I
know (and I know quite a few) would qualify for this job.

I really wonder where some of these job specs come from.

Hank


On 9/15/06, swfer [EMAIL PROTECTED] wrote:

iDashboards is one of the hottest software companies within Business
Intelligence dashboards (www.iDashboards.com). Our customers include
NASA, US Navy, Lockheed Martin, Johnson Controls and GE. We have an
immediate position for a Senior Flash Developer with 4+ years of
experience.

If being part of a leading edge and innovative software company
excites you, we have an excellent opportunity. We are seeking an
experienced Software Developer who has a strong background in
Flash/ActionScript. This is not a position for a Flash
artist/designer, but for a software development person. Must have a
thorough understanding of ActionScript 1 and 2, and how to write
efficient code. Should have a background in other programming
languages and systems as well. Should be comfortable with
multi-person development projects, and working with other people's
code.

Must be reasonably well-versed in object-oriented software. Needs an
understanding of XML, and its interface to ActionScript. Should be
familiar with SQL and have a good understanding of basic database
issues. Familiarity with design patterns is a plus, as is an
understanding of user interfaces.

OPPORTUNITY
You will be part of our world-class Software Team:
- Develop cutting edge enhancements to the existing software
- Work with other Flash developers and Server-side Development team

REQUIREMENTS
- Must have 4+ years experience in Flash/ActionScript and object
oriented programming
- Must have developed database driven rich-media Flash applications with XML
- BS degree preferred and good work references

The compensation plan is lucrative with a competitive base salary,
bonus and stock options. The company also offers excellent medical
and dental coverage along with 401K.

Please email your resume  a cover letter addressing your
qualifications. Qualified candidates must demonstrate verifiable
references to be considered. Email to: [EMAIL PROTECTED]

We will consider exceptionally qualified candidates from any where
within the US or Canada who are willing to relocate to Detroit
region. Our office is located in Troy, MI.
___
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] Flash Player 9 Issues?

2006-09-15 Thread Doug Coning
Greetings all,

 

We have been noticing that with several of our clients' products that we
delivered their swf files for Flash Player 7, are now causing problems
with Flash Player 9.  In Internet Explorer, when they are performing
various functions that call web services, IE will stop and Popup an
error window that states: The following add-on was running when this
problem occurred: File Flash9.ocx.The swf files or content have NOT
changed on our end.

 

So, we rolled their flash players back to Flash Player 8 r24 and the
same processes that crash consistently with 9, work fine with 8. 

 

Has anyone else had any problems with Flash Player 9?  Any suggestions?

 

Thanks,

 

Doug Coning

Senior Web Development Programmer

FORUM Solutions

[EMAIL PROTECTED]
 
This e-mail and any attachment(s) are intended for the specified recipient(s) 
only and are legally protected.  If you have received this communication in 
error, please reply to sender's e-mail address with notification of the error 
and then destroy this message in all electronic and physical forms.
___
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] Huge block of scrolling text: Choppy animation.

2006-09-15 Thread Kurt Dommermuth

You could turn it into a bitmap

mc.cacheAsBitmap = true;

That should help.




At 01:50 PM 9/15/2006, you wrote:


Hi,

I am working on a simple Flash project... at end of the animation I have a 
text block of 80 names, kinda like movie credits, that scroll from bottom 
of screen to top of screen... it looks like crap using motion tween. Very 
choppy movement, not smooth at all.


Any fixes?

I am assuming that the choppyness is due to the complexity of the text 
object/block.


Know of any AS scripts that might make this less of a problem?

I am using F8 and outputting a projector...

Any help would be great.
Cheers,
Micky


--
 Wishlist: http://snipurl.com/vrs9
   Switch: http://browsehappy.com/
 BCC?: http://snipurl.com/w6f8
   My: http://del.icio.us/mhulse
___
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] Software Development Position

2006-09-15 Thread Claus Wahlers



Ok, first of all, most people who have been doing flash for 4+ years
are artists or designers. Almost no serious programming was even
possible in flash before AS2 so by defining 4 years you are
essentially insisting that someone *not* be someone who has a
background in other languages and systems. I'm not saying they don't
exist at all, but it is such a silly requirement because it
inappropriately limits the pool. Of course insisting that someone be
an expert in AS1 is even more silly. Is this because their job will be
fixing someone else's 5 year old spaghetti code? Then the kicker is
that this person must be in the Detroit area or willing to relocate.


I have a software developer background (mainly C/C++), was studying CS 
in university, and am doing Flash development for like six years now 
(that includes well structured OOP AS1 development). I know a bunch of 
people that are equally qualified. I honestly don't think they are 
*that* off with their requirements.


They could have put that Detroit (or US/Canada) requirement in the 
subject though.. ;)


(This is my first and last comment re: job postings on this list. Keep 
'em coming, i don't mind)


--
claus wahlers
côdeazur brasil
http://codeazur.com.br
___
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] Flash Player 9 Issues?

2006-09-15 Thread John Dowdell
Thanks for including the error text. When I did a web search on phrase 
The following add-on was running when this problem occurred, I pulled 
up a Microsoft technote which referred to IE7 beta:

http://support.microsoft.com/kb/920082/en-us

But I see in the search results that lots of people have similar error 
reports, for lots of different modules, including various versions of 
Flash Player. If memory serves, that term add-on is only used for 
Microsoft Internet Explorer 7 betas... is the person with this problem 
running a beta browser, and if so, is it Microsoft's current version?


jd


___
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] Software Development Position

2006-09-15 Thread hank williams

I didnt say there werent any... but you are not exactly...er... mainstream.

As for your knowing *lots* of people, I suspect, having been around as
long as you have, you know *all* of them :) I'm only half kidding
here. before AS2 there were not exactly a bunch of people that fit
this spec and in such a small community of people they will likely
know each other. If you are looking for one of the what I suspect is
few hundred people who  have your qualifications and then you want to
move them to detroit you better be paying at *TON* of money. When you
have such narrow requirements, recruiting is a *nightmare*. (This is
not just conjecture).

The funny thing is I would rather have a guy with 10 years of C++ with
some Java and SQL thrown in, and two years of AS2, rather than 4 years
of AS. But thats just me.

Regards
Hank

On 9/15/06, Claus Wahlers [EMAIL PROTECTED] wrote:


 Ok, first of all, most people who have been doing flash for 4+ years
 are artists or designers. Almost no serious programming was even
 possible in flash before AS2 so by defining 4 years you are
 essentially insisting that someone *not* be someone who has a
 background in other languages and systems. I'm not saying they don't
 exist at all, but it is such a silly requirement because it
 inappropriately limits the pool. Of course insisting that someone be
 an expert in AS1 is even more silly. Is this because their job will be
 fixing someone else's 5 year old spaghetti code? Then the kicker is
 that this person must be in the Detroit area or willing to relocate.

I have a software developer background (mainly C/C++), was studying CS
in university, and am doing Flash development for like six years now
(that includes well structured OOP AS1 development). I know a bunch of
people that are equally qualified. I honestly don't think they are
*that* off with their requirements.

They could have put that Detroit (or US/Canada) requirement in the
subject though.. ;)

(This is my first and last comment re: job postings on this list. Keep
'em coming, i don't mind)

--
claus wahlers
côdeazur brasil
http://codeazur.com.br
___
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] Software Development Position

2006-09-15 Thread Farid Shahlavi
Ok, first of all, most people who have been doing flash for 4+ years
are artists or designers. Almost no serious programming was even
possible in flash before AS2 so by defining 4 years
 
I built an entire suite of lead generation and call center applications for a 
mortgage company in Flash MX using AS 1around 5 years ago which was used on a 
daily basis by around 100+ employees. I'd say that took some serious 
programming and a real world app on a fairly large scale! 
Even before that I built a lighter version in Flash 5 which was pretty robust, 
there were no components so I had to hack a datagrid of sorts but it did the 
job at the time, and if you want to go even further back in the time machine, I 
did a working prototype of a web-based POS system which was fully functional in 
Flash 4 Using a lot of eval statements, tellTarget . etc. I must admit 
it really was a pain in the butt!
 
From all the job postings I see on this list, this one is not really off the 
mark with the requirements.
 
Farid

- Original Message 
From: hank williams [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Friday, September 15, 2006 1:58:07 PM
Subject: Re: [Flashcoders] Software Development Position


I am all for job postings, but I gotta tell ya, sometimes they just
say silly things.

4 years developing flash.
must know AS1 and AS2
Software development person (programmed before flash I presume)
Background in other languages and systems
Familiarity with design patterns
Good understanding of basic database issues
Not a position for an artist or designer.
Must be willing to relocate to Detroit area.

Ok, first of all, most people who have been doing flash for 4+ years
are artists or designers. Almost no serious programming was even
possible in flash before AS2 so by defining 4 years you are
essentially insisting that someone *not* be someone who has a
background in other languages and systems. I'm not saying they don't
exist at all, but it is such a silly requirement because it
inappropriately limits the pool. Of course insisting that someone be
an expert in AS1 is even more silly. Is this because their job will be
fixing someone else's 5 year old spaghetti code? Then the kicker is
that this person must be in the Detroit area or willing to relocate.

So in my mind, they are looking for the tiny pool of people that
studied computer science but were also interested in animation and so
dabbled in flash before it was real programmer ready and are willing
to move to one of the most depressed metropolitan areas in the US. And
I bet they wanna pay like 70-80k. Why cant people write intelligent
job specs. Oh and by the way I am not looking for a job I just find
this annoying that neither I nor any of the excellent programmers I
know (and I know quite a few) would qualify for this job.

I really wonder where some of these job specs come from.

Hank


On 9/15/06, swfer [EMAIL PROTECTED] wrote:
 iDashboards is one of the hottest software companies within Business
 Intelligence dashboards (www.iDashboards.com). Our customers include
 NASA, US Navy, Lockheed Martin, Johnson Controls and GE. We have an
 immediate position for a Senior Flash Developer with 4+ years of
 experience.

 If being part of a leading edge and innovative software company
 excites you, we have an excellent opportunity. We are seeking an
 experienced Software Developer who has a strong background in
 Flash/ActionScript. This is not a position for a Flash
 artist/designer, but for a software development person. Must have a
 thorough understanding of ActionScript 1 and 2, and how to write
 efficient code. Should have a background in other programming
 languages and systems as well. Should be comfortable with
 multi-person development projects, and working with other people's
 code.

 Must be reasonably well-versed in object-oriented software. Needs an
 understanding of XML, and its interface to ActionScript. Should be
 familiar with SQL and have a good understanding of basic database
 issues. Familiarity with design patterns is a plus, as is an
 understanding of user interfaces.

 OPPORTUNITY
 You will be part of our world-class Software Team:
 - Develop cutting edge enhancements to the existing software
 - Work with other Flash developers and Server-side Development team

 REQUIREMENTS
 - Must have 4+ years experience in Flash/ActionScript and object
 oriented programming
 - Must have developed database driven rich-media Flash applications with XML
 - BS degree preferred and good work references

 The compensation plan is lucrative with a competitive base salary,
 bonus and stock options. The company also offers excellent medical
 and dental coverage along with 401K.

 Please email your resume  a cover letter addressing your
 qualifications. Qualified candidates must demonstrate verifiable
 references to be considered. Email to: [EMAIL PROTECTED]

 We will consider exceptionally qualified candidates from any 

[Flashcoders] SWFObject 2.0: What new features do you want?

2006-09-15 Thread Geoff Stearns
Hey all, I'm working on what will become SWFObject 2.0 (need to  
update it to support as3 Express Install stuff) and I wanted to get  
ideas for new features.


It currently works fine, and there aren't too many obvious things  
that could be added, but I wanted to ask and see what sort of  
'killer' feature you might want to see in it.


So if you are using it and find it lacking in any area, let me know  
what you would change or add to it. Speak up!


So far the only major change is how the Express Install functionality  
works - because of AS3 I have to put that stuff in a separate swf, so  
it will be much easier for you all to add that functionality to your  
site.



___
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] Software Development Position

2006-09-15 Thread hank williams

I built an entire suite of lead generation and call center applications for a 
mortgage company in Flash MX using AS 1around 5 years ago which was used on a 
daily basis by around 100+ employees. I'd say that took some serious 
programming and a real world app on a fairly large scale!


Ok, look, anyone can provide *one* example of anything, but one, or
even a handful does not disprove the rule. People wrote accounting
systems in Basic on S-100 computers in the 70's too. I wrote assembler
in the 80's for commercial products. So anything is *possible*. But
the fact is that the whole reason Flex exists is that Adobe couldnt
get much real software development going with flash. And even now,
though it is much better, there is still a dearth of comp sci educated
flash programmers. And most people that have been programming in flash
4+ years dont have a comp sci/structured programming background.

Again it doesnt mean there arent any. It just means there arent
*many*. I am a member of a flash programming study group in New York
City. And I havent yet met in our group a single other Flash
programmer with a comp sci background. (at least I dont think so - If
I have dont and you are him, please dont be insulted :) ).

Regards
Hank
___
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] Software Development Position

2006-09-15 Thread Kevin Aebig
I understand what you mean in regards to AS2 application development. Until
MX 2004, Flash as a common mainstream application was pretty unheard of by
the general public. That's not to say it didn't happen though...

I definitely disagree with the first thing you mentioned about there not
being a lot of guys who used Flash as an application platform before AS2. I
can look at a lot of guys on this list who've been here for a long time and
helped pave the way for the modern Flash Platform. 

Claus, Grant, Dave, Samuel, Jesse, Brandon etc. have been on this list since
I first joined up 6 or 7 years ago and posted several examples of
applications over the years to demonstrate the abilities of Flash. Heck even
I did a single large app with Flash 4 (Whatta pain!), 4 more with Flash 5,
and than a ton since with every other version...

The one thing that I do find somewhat laughable is the necessity to state
that a CompSci background is important. For all intents and purposes, by
education I'm a designer. I spent a considerable amount of time and money
teaching myself programming theories and best practices. To say that I'm
unqualified is somewhat insulting considering the effort it took and the
passion it shows.

Cheers,

!k


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of hank
williams
Sent: Friday, September 15, 2006 11:58 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Software Development Position

I am all for job postings, but I gotta tell ya, sometimes they just
say silly things.

4 years developing flash.
must know AS1 and AS2
Software development person (programmed before flash I presume)
Background in other languages and systems
Familiarity with design patterns
Good understanding of basic database issues
Not a position for an artist or designer.
Must be willing to relocate to Detroit area.

Ok, first of all, most people who have been doing flash for 4+ years
are artists or designers. Almost no serious programming was even
possible in flash before AS2 so by defining 4 years you are
essentially insisting that someone *not* be someone who has a
background in other languages and systems. I'm not saying they don't
exist at all, but it is such a silly requirement because it
inappropriately limits the pool. Of course insisting that someone be
an expert in AS1 is even more silly. Is this because their job will be
fixing someone else's 5 year old spaghetti code? Then the kicker is
that this person must be in the Detroit area or willing to relocate.

So in my mind, they are looking for the tiny pool of people that
studied computer science but were also interested in animation and so
dabbled in flash before it was real programmer ready and are willing
to move to one of the most depressed metropolitan areas in the US. And
I bet they wanna pay like 70-80k. Why cant people write intelligent
job specs. Oh and by the way I am not looking for a job I just find
this annoying that neither I nor any of the excellent programmers I
know (and I know quite a few) would qualify for this job.

I really wonder where some of these job specs come from.

Hank


On 9/15/06, swfer [EMAIL PROTECTED] wrote:
 iDashboards is one of the hottest software companies within Business
 Intelligence dashboards (www.iDashboards.com). Our customers include
 NASA, US Navy, Lockheed Martin, Johnson Controls and GE. We have an
 immediate position for a Senior Flash Developer with 4+ years of
 experience.

 If being part of a leading edge and innovative software company
 excites you, we have an excellent opportunity. We are seeking an
 experienced Software Developer who has a strong background in
 Flash/ActionScript. This is not a position for a Flash
 artist/designer, but for a software development person. Must have a
 thorough understanding of ActionScript 1 and 2, and how to write
 efficient code. Should have a background in other programming
 languages and systems as well. Should be comfortable with
 multi-person development projects, and working with other people's
 code.

 Must be reasonably well-versed in object-oriented software. Needs an
 understanding of XML, and its interface to ActionScript. Should be
 familiar with SQL and have a good understanding of basic database
 issues. Familiarity with design patterns is a plus, as is an
 understanding of user interfaces.

 OPPORTUNITY
 You will be part of our world-class Software Team:
 - Develop cutting edge enhancements to the existing software
 - Work with other Flash developers and Server-side Development team

 REQUIREMENTS
 - Must have 4+ years experience in Flash/ActionScript and object
 oriented programming
 - Must have developed database driven rich-media Flash applications with
XML
 - BS degree preferred and good work references

 The compensation plan is lucrative with a competitive base salary,
 bonus and stock options. The company also offers excellent medical
 and dental coverage along with 401K.

 Please email your resume  a cover 

Re: [Flashcoders] Huge block of scrolling text: Choppy animation.

2006-09-15 Thread Vibol Hou
Are you using a pixel font? I a similar issue with a large block of 
pixel fonts and motion+shape tweening. The only solution I found was to 
anti-alias the pixel font for the large block of text.


-V

Micky Hulse wrote:

Hi,

I am working on a simple Flash project... at end of the animation I have 
a text block of 80 names, kinda like movie credits, that scroll from 
bottom of screen to top of screen... it looks like crap using motion 
tween. Very choppy movement, not smooth at all.


Any fixes?

I am assuming that the choppyness is due to the complexity of the text 
object/block.


Know of any AS scripts that might make this less of a problem?

I am using F8 and outputting a projector...

Any help would be great.
Cheers,
Micky



___
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] Software Development Position

2006-09-15 Thread Aaron Buchanan
You guys haven't seen zombo.com, have you?


On 9/15/06 12:57 PM, Kevin Aebig [EMAIL PROTECTED] wrote:

 I understand what you mean in regards to AS2 application development. Until
 MX 2004, Flash as a common mainstream application was pretty unheard of by
 the general public. That's not to say it didn't happen though...
 
 I definitely disagree with the first thing you mentioned about there not
 being a lot of guys who used Flash as an application platform before AS2. I
 can look at a lot of guys on this list who've been here for a long time and
 helped pave the way for the modern Flash Platform.
 
 Claus, Grant, Dave, Samuel, Jesse, Brandon etc. have been on this list since
 I first joined up 6 or 7 years ago and posted several examples of
 applications over the years to demonstrate the abilities of Flash. Heck even
 I did a single large app with Flash 4 (Whatta pain!), 4 more with Flash 5,
 and than a ton since with every other version...
 
 The one thing that I do find somewhat laughable is the necessity to state
 that a CompSci background is important. For all intents and purposes, by
 education I'm a designer. I spent a considerable amount of time and money
 teaching myself programming theories and best practices. To say that I'm
 unqualified is somewhat insulting considering the effort it took and the
 passion it shows.
 
 Cheers,
 
 !k
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of hank
 williams
 Sent: Friday, September 15, 2006 11:58 AM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] Software Development Position
 
 I am all for job postings, but I gotta tell ya, sometimes they just
 say silly things.
 
 4 years developing flash.
 must know AS1 and AS2
 Software development person (programmed before flash I presume)
 Background in other languages and systems
 Familiarity with design patterns
 Good understanding of basic database issues
 Not a position for an artist or designer.
 Must be willing to relocate to Detroit area.
 
 Ok, first of all, most people who have been doing flash for 4+ years
 are artists or designers. Almost no serious programming was even
 possible in flash before AS2 so by defining 4 years you are
 essentially insisting that someone *not* be someone who has a
 background in other languages and systems. I'm not saying they don't
 exist at all, but it is such a silly requirement because it
 inappropriately limits the pool. Of course insisting that someone be
 an expert in AS1 is even more silly. Is this because their job will be
 fixing someone else's 5 year old spaghetti code? Then the kicker is
 that this person must be in the Detroit area or willing to relocate.
 
 So in my mind, they are looking for the tiny pool of people that
 studied computer science but were also interested in animation and so
 dabbled in flash before it was real programmer ready and are willing
 to move to one of the most depressed metropolitan areas in the US. And
 I bet they wanna pay like 70-80k. Why cant people write intelligent
 job specs. Oh and by the way I am not looking for a job I just find
 this annoying that neither I nor any of the excellent programmers I
 know (and I know quite a few) would qualify for this job.
 
 I really wonder where some of these job specs come from.
 
 Hank
 
 
 On 9/15/06, swfer [EMAIL PROTECTED] wrote:
 iDashboards is one of the hottest software companies within Business
 Intelligence dashboards (www.iDashboards.com). Our customers include
 NASA, US Navy, Lockheed Martin, Johnson Controls and GE. We have an
 immediate position for a Senior Flash Developer with 4+ years of
 experience.
 
 If being part of a leading edge and innovative software company
 excites you, we have an excellent opportunity. We are seeking an
 experienced Software Developer who has a strong background in
 Flash/ActionScript. This is not a position for a Flash
 artist/designer, but for a software development person. Must have a
 thorough understanding of ActionScript 1 and 2, and how to write
 efficient code. Should have a background in other programming
 languages and systems as well. Should be comfortable with
 multi-person development projects, and working with other people's
 code.
 
 Must be reasonably well-versed in object-oriented software. Needs an
 understanding of XML, and its interface to ActionScript. Should be
 familiar with SQL and have a good understanding of basic database
 issues. Familiarity with design patterns is a plus, as is an
 understanding of user interfaces.
 
 OPPORTUNITY
 You will be part of our world-class Software Team:
 - Develop cutting edge enhancements to the existing software
 - Work with other Flash developers and Server-side Development team
 
 REQUIREMENTS
 - Must have 4+ years experience in Flash/ActionScript and object
 oriented programming
 - Must have developed database driven rich-media Flash applications with
 XML
 - BS degree preferred and good work references
 
 The compensation plan is 

Re: [Flashcoders] Software Development Position

2006-09-15 Thread hank williams

Claus, Grant, Dave, Samuel, Jesse, Brandon etc. have been on this list since
I first joined up 6 or 7 years ago and posted several examples of
applications over the years to demonstrate the abilities of Flash. Heck even
I did a single large app with Flash 4 (Whatta pain!), 4 more with Flash 5,
and than a ton since with every other version...



The fact that you can name the pioneers (and I know who they are) is
an indication of how small the group is. A few hundred, heck even a
few thousand, is a **VERY** small number.  There are hundreds of
thousands (or perhaps millions) of people that are serious programmers
in Java that have been doing it for many years.


The one thing that I do find somewhat laughable is the necessity to state
that a CompSci background is important. For all intents and purposes, by
education I'm a designer. I spent a considerable amount of time and money
teaching myself programming theories and best practices. To say that I'm
unqualified is somewhat insulting considering the effort it took and the
passion it shows.



To be fair, I dont think they said this. I used the term to describe
the type of background they were describing. From my perspective it
doesnt require a comp sci degree, though most people without a fairly
disciplined background (self taught or otherwise) dont innately
understand a lot of concepts. But I certainly dont think you need to
sit in a classroom to learn this stuff.

Regards,
Hank
___
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] Software Development Position

2006-09-15 Thread hank williams

On 9/15/06, Aaron Buchanan [EMAIL PROTECTED] wrote:

You guys haven't seen zombo.com, have you?



That is hilarious!

Hank
___
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] Flash Player 9 Issues?

2006-09-15 Thread Doug Coning
I had the user check their IE, and they are still on IE 6.  We are
having this problem with several different users at different companies.
The problem only occurs with Flash Player 9.  When we uninstall the
player and reinstall 8, we have no problems.

Thanks,

Doug Coning

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John
Dowdell
Sent: Friday, September 15, 2006 2:25 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Flash Player 9 Issues?

Thanks for including the error text. When I did a web search on phrase 
The following add-on was running when this problem occurred, I pulled 
up a Microsoft technote which referred to IE7 beta:
http://support.microsoft.com/kb/920082/en-us

But I see in the search results that lots of people have similar error 
reports, for lots of different modules, including various versions of 
Flash Player. If memory serves, that term add-on is only used for 
Microsoft Internet Explorer 7 betas... is the person with this problem 
running a beta browser, and if so, is it Microsoft's current version?

jd


___
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 e-mail and any attachment(s) are intended for the specified recipient(s) 
only and are legally protected.  If you have received this communication in 
error, please reply to sender's e-mail address with notification of the error 
and then destroy this message in all electronic and physical forms.
___
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] Huge block of scrolling text: Choppy animation.

2006-09-15 Thread Chris Hill
The fastest way to animate this is to use runtime bitmap caching, mixed 
with the scrollRect property.


// this is almost pseudo-code, untested, but you should get the idea

r = new Rectangle(0,0,width,height);
container.cacheAsBitmap = true;
container.scrollRect = r;

container.onEnterFrame = function(){
   //modify the scrollRect to move the text
   r.y += 1;
   container.scrollRect = r;
}

This will convert the text to one big bitmap, and use fast pixel copying 
to display just the rect you want.

Peace
C

Vibol Hou wrote:

Are you using a pixel font? I a similar issue with a large block of 
pixel fonts and motion+shape tweening. The only solution I found was 
to anti-alias the pixel font for the large block of text.


-V

Micky Hulse wrote:


Hi,

I am working on a simple Flash project... at end of the animation I 
have a text block of 80 names, kinda like movie credits, that scroll 
from bottom of screen to top of screen... it looks like crap using 
motion tween. Very choppy movement, not smooth at all.


Any fixes?

I am assuming that the choppyness is due to the complexity of the 
text object/block.


Know of any AS scripts that might make this less of a problem?

I am using F8 and outputting a projector...

Any help would be great.
Cheers,
Micky



___
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


[solved] Re: [Flashcoders] Huge block of scrolling text: Choppy animation.

2006-09-15 Thread Micky Hulse

Kurt Dommermuth wrote:

You could turn it into a bitmap
mc.cacheAsBitmap = true;
That should help.



Woot! That worked great! Thanks Kurt, you da man!  :D

Cheers,
Micky


--
 Wishlist: http://snipurl.com/vrs9
   Switch: http://browsehappy.com/
 BCC?: http://snipurl.com/w6f8
   My: http://del.icio.us/mhulse
___
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] Flash upload problems

2006-09-15 Thread Michael Stuhr

Muzak schrieb:

http://www.osflash.org/pipermail/osflash_osflash.org/2006-February/007266.html
  

*bookmark*

This has nothing to do with Struts by the way. Struts is just a framework.
http://struts.apache.org/
  

:-)


micha
___
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] Flashdevelop and moviecliploader

2006-09-15 Thread Andreas R

Having a bitch of a time getting mcl to work with flashdevelop/mtasc

var mcl:MovieClipLoader = new MovieClipLoader();
trace(loaderObj:+mcl);

traces out loaderObj: and then nothing. Is there something PECULIAR i 
have to do to make this work? tween classes and all other macromedia 
classes work fine.


- A
___
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] Hex to HSB

2006-09-15 Thread Mike Mountain
OK - seeing as you asked so nicely
 
Instead of splitting it up into 3 different components R, G and B then doing a 
calculation on each of these in turn to find H S and B ,applying some transform 
on H and B and then turning these back into R G and B - then in turn combining 
this to find a flash friendly hex value - I'd like to know if it's possible to 
go 
 
Hex - Hsb - transform - Hex
 
or to find HSB from hex do I have to split out the RGB components?
 
Any clearer?
 
M



From: [EMAIL PROTECTED] on behalf of Ammon
Sent: Fri 15/09/2006 17:07
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Hex to HSB



Mike Mountain wrote:
 Thanks, but I was hoping this would be possible without having to
 convert to RGB first - I basically want to do pixel by pixel colour
 transform on a copy of a video whilst it's being played so it needs to
 be ultra efficient.

I'm sorry... but explain to my how a hex number of the form 0xRRGGBB
isn't _already_ an RGB value? :P

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


___
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] Software Development Position

2006-09-15 Thread Steven Sacks | BLITZ
 The fact that you can name the pioneers (and I know who they are) is
 an indication of how small the group is. A few hundred, heck even a
 few thousand, is a **VERY** small number.  There are hundreds of
 thousands (or perhaps millions) of people that are serious programmers
 in Java that have been doing it for many years.

Just because you've got a degree doesn't mean you know what you're
doing.  There are thousands of serious programmers out there with
degrees that are just mediocre.  That piece of paper doesn't mean what
it used to.  

That list of names isn't just a list of Flash pioneers, but talented
hard-working developers who continue to be some of the most influential
people in the business.  Some of them had no previous programming
experience before Flash and now they're some of the best Flash
developers in the world all without a piece of paper that says they sat
in a classroom on some campus for years and without knowing so-called
real programming languages.

Saying AS1 isn't real programming is, IMO, unfair.  Somebody programmed
a graphic adventure game in Flash 3 with inventory, etc. using a
turing-machine movieclip schema.  It must have been quite a challenge to
code but it indeed was programming, and probably smarter and better than
many people who code in AS2 today are capable of.

I don't have a CompSci degree. I only ever took one programming class; a
one semester course for Director 3 at a community college taught by a
guy who wanted me to do everything in the score because he didn't really
understand Lingo.  The rest I've learned by doing, reading and, luckily,
being mentored.  If an employer doesn't want me because I don't have a
CompSci degree, it's their loss, not mine, because I know Flash better
than many people who claim to be Flash developers out there simply
because nobody told me what its limits or capabilities were, I found
them out for myself in order to make the impossible possible for
clients.  :)
___
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] Software Development Position

2006-09-15 Thread Kevin Aebig
Well said...

!k

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks
| BLITZ
Sent: Friday, September 15, 2006 3:09 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Software Development Position

 The fact that you can name the pioneers (and I know who they are) is
 an indication of how small the group is. A few hundred, heck even a
 few thousand, is a **VERY** small number.  There are hundreds of
 thousands (or perhaps millions) of people that are serious programmers
 in Java that have been doing it for many years.

Just because you've got a degree doesn't mean you know what you're
doing.  There are thousands of serious programmers out there with
degrees that are just mediocre.  That piece of paper doesn't mean what
it used to.  

That list of names isn't just a list of Flash pioneers, but talented
hard-working developers who continue to be some of the most influential
people in the business.  Some of them had no previous programming
experience before Flash and now they're some of the best Flash
developers in the world all without a piece of paper that says they sat
in a classroom on some campus for years and without knowing so-called
real programming languages.

Saying AS1 isn't real programming is, IMO, unfair.  Somebody programmed
a graphic adventure game in Flash 3 with inventory, etc. using a
turing-machine movieclip schema.  It must have been quite a challenge to
code but it indeed was programming, and probably smarter and better than
many people who code in AS2 today are capable of.

I don't have a CompSci degree. I only ever took one programming class; a
one semester course for Director 3 at a community college taught by a
guy who wanted me to do everything in the score because he didn't really
understand Lingo.  The rest I've learned by doing, reading and, luckily,
being mentored.  If an employer doesn't want me because I don't have a
CompSci degree, it's their loss, not mine, because I know Flash better
than many people who claim to be Flash developers out there simply
because nobody told me what its limits or capabilities were, I found
them out for myself in order to make the impossible possible for
clients.  :)
___
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] Huge block of scrolling text: Choppy animation.

2006-09-15 Thread Micky Hulse

Hi Chris, thanks for the response, I really appreciate your time.

Chris Hill wrote:

...[snip]...
This will convert the text to one big bitmap, and use fast pixel copying 
to display just the rect you want.

Peace


Right on! Thanks for snippet! I really appreciate it, very cool!  :D

Looks like the perfect solution, thanks for sharing. ;)

Will modify and plug-in to anim. Perfecto!

Cheers,
Micky


--
 Wishlist: http://snipurl.com/vrs9
   Switch: http://browsehappy.com/
 BCC?: http://snipurl.com/w6f8
   My: http://del.icio.us/mhulse
___
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] Huge block of scrolling text: Choppy animation.

2006-09-15 Thread Micky Hulse

Hi Vibol, thanks for your response, it is greatly appreciated. :)

Vibol Hou wrote:
Are you using a pixel font? I a similar issue with a large block of 
pixel fonts and motion+shape tweening. The only solution I found was to 
anti-alias the pixel font for the large block of text.


Thanks for sharing the info. I am sure that on top of caching as bitmap 
and pseudo-code Chris provided will really do the trick.  :)


Many thanks all, you folks rock.
Cheers,
Micky

--
 Wishlist: http://snipurl.com/vrs9
   Switch: http://browsehappy.com/
 BCC?: http://snipurl.com/w6f8
   My: http://del.icio.us/mhulse
___
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] Software Development Position

2006-09-15 Thread hank williams

Steven,

On 9/15/06, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote:

 The fact that you can name the pioneers (and I know who they are) is
 an indication of how small the group is. A few hundred, heck even a
 few thousand, is a **VERY** small number.  There are hundreds of
 thousands (or perhaps millions) of people that are serious programmers
 in Java that have been doing it for many years.

Just because you've got a degree doesn't mean you know what you're
doing.  There are thousands of serious programmers out there with
degrees that are just mediocre.  That piece of paper doesn't mean what
it used to.



I dont mean to be rude, but er... what are you talking about. Please
read carefully this time.

quote myself
To be fair, I dont think they said this. I used the term to describe
the type of background they were describing. From my perspective it
doesnt require a comp sci degree, though most people without a fairly
disciplined background (self taught or otherwise) dont innately
understand a lot of concepts. But I certainly dont think you need to
sit in a classroom to learn this stuff.
/quote myself


That list of names isn't just a list of Flash pioneers, but talented
hard-working developers who continue to be some of the most influential
people in the business.  Some of them had no previous programming
experience before Flash and now they're some of the best Flash
developers in the world all without a piece of paper that says they sat
in a classroom on some campus for years and without knowing so-called
real programming languages.

Saying AS1 isn't real programming is, IMO, unfair.  Somebody programmed
a graphic adventure game in Flash 3 with inventory, etc. using a
turing-machine movieclip schema.  It must have been quite a challenge to
code but it indeed was programming, and probably smarter and better than
many people who code in AS2 today are capable of.



I am not saying that people who programmed in AS1 are stupid, and this
has nothing to do with fairness. The issue is whether, during the
AS1 era there were a substantial number of serious programmers. The
answer is no. You can take that as a personal afront if you want but
you dont need to. Its just statistics. It has taken a while to get
flash established as a platform. Even now, the flash programmer
numbers are weak relative to the market. The community is small. Back
then 99.9% of what was done with flash was banners and intro pages. Ok
maybe 98%. So you can quote all you want about the cool stuff in the
other 2% but it doesnt change the obvious reality of where the flash
world was in 2002.



I don't have a CompSci degree. I only ever took one programming class; a
one semester course for Director 3 at a community college taught by a
guy who wanted me to do everything in the score because he didn't really
understand Lingo.  The rest I've learned by doing, reading and, luckily,
being mentored.  If an employer doesn't want me because I don't have a
CompSci degree, it's their loss, not mine, because I know Flash better
than many people who claim to be Flash developers out there simply
because nobody told me what its limits or capabilities were, I found
them out for myself in order to make the impossible possible for
clients.  :)


Again please read before you write. It can be helpful. Just for
clarity again from a prior message...

quote myself
To be fair, I dont think they said this. I used the term to describe
the type of background they were describing. From my perspective it
doesnt require a comp sci degree, though most people without a fairly
disciplined background (self taught or otherwise) dont innately
understand a lot of concepts. But I certainly dont think you need to
sit in a classroom to learn this stuff.
/quote myself

Jeez.

Hank





___
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] Software Development Position

2006-09-15 Thread Paul Sutter

There is a huge demand for Flash programmers, particularly in Internet
advertising. Talented people can do great knowing no other language, and
most employers would prioritize ability and experience over degrees.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks
| BLITZ
Sent: Friday, September 15, 2006 3:05 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Software Development Position

Oops.  I used you again when I meant one.  I wasn't referring to you
and your degree, Hank.  I was referring in general to needing a
programming degree be considered a serious programmer, and that knowing
a so-called serious programming language is preferable to a deeper
knowledge of Flash when it comes to Flash development.

I couldn't agree more with you on the point that there is a much smaller
pool of qualified Flash programmers than other languages. There is a
dearth of excellent Flash developers out there.
___
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] Software Development Position

2006-09-15 Thread Steven Sacks | BLITZ
Exactly, and I'm skeptical of anyone who requires a CompSci degree for a
Flash position because there isn't a single college degree for Flash
programming.  ;)

___
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] Hex to HSB

2006-09-15 Thread David Rorex

No, pretty much the way hsb -- rgb works, you need to have the numbers
separate. You could probably create some awkward transform that tries really
hard not to break them up, but it would end up being a lot more complicated,
and not worth it.

Besides, going from 0xRRGGBB to 0xRR, 0xGG, 0xBB is very fast (just 3 ANDs
and 2 bitshifts).

// takes a color in the form 0xRRGGBB returns an object with the fields r,
g, and b
function hex2rgb(c:Number):Object
{
   return {
  r:(c16)0xff,
  g:(c8)0xff,
  b:c0xff
 };
}

// takes an object with fields r, g, and b, returns a color in the form
0xRRGGBB
function rgb2hex(c:Object):Number
{
   return (c.r16) | (c.g8) | (c.b);
}

and then here's a quick test:

var c = hex2rgb(0xabcdef);
trace(r=0x+c.r.toString(16)+ g=0x+c.g.toString(16)+
b=0x+c.b.toString(16));
trace(color=0x+rgb2hex(c).toString(16));


then, assuming your rgb2hsv and hsv2rgb functions take an object as input,
you could do:

// read in hsv from a pixel
var hsv:Object = rgb2hsv(hex2rgb(bmp.getPixel(x,y)));

// transform hsv.h, hsv.s, hsv.v, etc
hsv.h /= 2;
hsv.s = 50;
hsv.v = Math.random()*100;

// put back our transformed pixel
bmp.setPixel(x,y,rgb2hex(hsv2rgb(hsv)));

--

Now, this is all theoretical, but I don't think flash 8 is fast enough to do
this calculation on a real-time video of any decent size. flash 9 might be
able to handle it.

But if you just want to do some color transforms, i'd suggest looking at the
built in transform classes instead of trying to do it yourself
pixel-by-pixel. These should be much faster, because the transform code will
be native, instead of in actionscript. They are pretty flexible, you can do
a lot with them.

-David R

On 9/15/06, Mike Mountain [EMAIL PROTECTED] wrote:


OK - seeing as you asked so nicely

Instead of splitting it up into 3 different components R, G and B then
doing a calculation on each of these in turn to find H S and B ,applying
some transform on H and B and then turning these back into R G and B - then
in turn combining this to find a flash friendly hex value - I'd like to know
if it's possible to go

Hex - Hsb - transform - Hex

or to find HSB from hex do I have to split out the RGB components?

Any clearer?

M



From: [EMAIL PROTECTED] on behalf of Ammon
Sent: Fri 15/09/2006 17:07
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Hex to HSB



Mike Mountain wrote:
 Thanks, but I was hoping this would be possible without having to
 convert to RGB first - I basically want to do pixel by pixel colour
 transform on a copy of a video whilst it's being played so it needs to
 be ultra efficient.

I'm sorry... but explain to my how a hex number of the form 0xRRGGBB
isn't _already_ an RGB value? :P

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




___
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] Software Development Position

2006-09-15 Thread Aaron Buchanan
And we wonder why this is happening, lol. Hell, I would do an active of
public (and self) service by teaching but that is a crazy cut in pay.

sigh.


On 9/15/06 3:28 PM, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote:

 Exactly, and I'm skeptical of anyone who requires a CompSci degree for a
 Flash position because there isn't a single college degree for Flash
 programming.  ;)
 
 ___
 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

-- 
Aaron Buchanan | Flash Developer, Lab-Media | T 909 702 1368


___
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] Flashdevelop and moviecliploader

2006-09-15 Thread David Rorex

I use MovieClipLoader all the time, and I just did a quick test (mtasc 1.12,
standalone flash player 9, windows xp sp2):

file Test.as
---
class Test {
   static function main(root:MovieClip) {
   var txt:TextField = root.createTextField('txt', 0, 0, 0, 200, 200);
   var mcl:MovieClipLoader = new MovieClipLoader();
   txt.text = (loaderObj:+mcl);
   }
}



commandline
--
mtasc -version 8 -header 200:200:10 -swf test.swf -main Test.as

Output
---
loaderObj:[object Object]


so it seems to work fine for me. not sure what your issue is.

-David R

On 9/15/06, Andreas R [EMAIL PROTECTED] wrote:


Having a bitch of a time getting mcl to work with flashdevelop/mtasc

var mcl:MovieClipLoader = new MovieClipLoader();
trace(loaderObj:+mcl);

traces out loaderObj: and then nothing. Is there something PECULIAR i
have to do to make this work? tween classes and all other macromedia
classes work fine.

- A

___
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] Flash upload problems

2006-09-15 Thread David Rorex

I've had the same problem with the empty uploads, using PHP on the server.
For every file I upload, flash makes 2 requests, the first request with 0
data, and the second one with the actual file. I think it's been replicated
by many people. The solution is to just ignore invalid uploads on the
server.

-David R

On 9/15/06, Michael Stuhr [EMAIL PROTECTED] wrote:


Muzak schrieb:

http://www.osflash.org/pipermail/osflash_osflash.org/2006-February/007266.html

*bookmark*
 This has nothing to do with Struts by the way. Struts is just a
framework.
 http://struts.apache.org/

:-)


micha
___
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] Software Development Position

2006-09-15 Thread Jason Rayles
Hank, you don't know what you are talking about. You may be late to the 
party, but that doesn't mean that everyone was. There are a lot of 
people (not billions, but a good number) who meet/exceed YOUR 
requirements who were working in Flash before AS 2 was an option. 
Seriously, why do you think this list exists? Why do you think AS 2 
exists? Maybe the people in your flash programming study group in New 
York City are there to learn from people like you, and the dozens of 
Flash programmers with comp sci backgrounds in NYC don't attend your 
meetings because your meetings are beneath them.


I have zero interest in moving to Troy, MI, but those job requirements 
are not unreasonable.


Jason

On Sep 15, 2006, at 4:01 PM, [EMAIL PROTECTED] 
wrote:



Again it doesnt mean there arent any. It just means there arent
*many*. I am a member of a flash programming study group in New York
City. And I havent yet met in our group a single other Flash
programmer with a comp sci background. (at least I dont think so - If
I have dont and you are him, please dont be insulted :) ).


___
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] Software Development Position

2006-09-15 Thread hank williams

On 9/15/06, Jason Rayles [EMAIL PROTECTED] wrote:

Hank, you don't know what you are talking about. You may be late to the
party, but that doesn't mean that everyone was.


There are a lot of

people (not billions, but a good number)

Ah yes, a good number. Is that somewhere between zero and 100 million?

who meet/exceed YOUR

requirements who were working in Flash before AS 2 was an option.
Seriously, why do you think this list exists?


Oh, I forgot, it takes like zillions of people before you can get a
list going. Cant argue with that.

Why do you think AS 2

exists? Maybe the people in your flash programming study group in New
York City are there to learn from people like you, and the dozens of
Flash programmers with comp sci backgrounds in NYC don't attend your
meetings because your meetings are beneath them.



Nah.


I have zero interest in moving to Troy, MI, but those job requirements
are not unreasonable.


You're right. Not if you are uninterested in filling the position.

I would love to hear one person who is qualified say they are
submitting a resume and would take the job if offered. You havent said
you think you are qualified, but presuming for the sake of argument
you are, you have proved my point by saying that you arent interested.

Regards,
Hank

Hank
___
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] Flash upload problems

2006-09-15 Thread hank williams

According to adobe, the double upload thing is not a bug. It was part
of the design. Supposedly to make sure that there is really a server
there before starting a big upload. It seems to me this was a
*horrible* design decision, but I guess its not a bug since it was
their intent.

But there are subtle differences between the way flash does things and
what is generally expected. I ended up using some server side upload
handling code from servlets.com but I had to modify it to get it to
work with flash. So I empathize with the backend guys that say they
cant get it working. Without server side changes I would have failed
too.

But the struts issue doesnt make any sense if the problem, as they
believe, is in the flash upload code. The bottom line is the flash
code is a little bit err... off. So if you want stuff to work ya gotta
tweak the server side code or not use flash.

Regards,
Hank

On 9/15/06, David Rorex [EMAIL PROTECTED] wrote:

I've had the same problem with the empty uploads, using PHP on the server.
For every file I upload, flash makes 2 requests, the first request with 0
data, and the second one with the actual file. I think it's been replicated
by many people. The solution is to just ignore invalid uploads on the
server.

-David R

On 9/15/06, Michael Stuhr [EMAIL PROTECTED] wrote:

 Muzak schrieb:
 
 http://www.osflash.org/pipermail/osflash_osflash.org/2006-February/007266.html
 
 *bookmark*
  This has nothing to do with Struts by the way. Struts is just a
 framework.
  http://struts.apache.org/
 
 :-)


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