Re: [Flashcoders] AS3: Objects never get deleted

2006-09-12 Thread Fumio Nonaka
The useWeakReference parameter of EventDispatcher.addEventListener() 
does not seem to work.  Also, the method has a bug, which is that the 
event listner function cannot be deleted with the parameter set to true.


Flash 9 ActionScript 3.0 Preview:
Does useWeakReference parameter of addEventListener() method work?
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72catid=612threadid=1186643enterthread=y
_
Meinte van't Kruis wrote:

I am using weak references for the listener, here's the code (within
GCTarget):

   this.addEventListener(Event.ENTER_FRAME,onFrame,false,0,true);
   }
   private function onFrame(e:Event):void{
   trace(A);
   }

So I don't think that's it, else it wouldn't really matter if I pass
arguments or set variables
or not , because if I don't it does get deleted properly.


Good luck,
--
Fumio Nonaka
mailto:[EMAIL PROTECTED]
http://www.FumioNonaka.com/
My bookshttp://www.FumioNonaka.com/Books/index.html
Flash communityhttp://F-site.org/

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Best actionscript developement environnement for Mac Intel

2006-09-12 Thread Flap Flap

Hi there,

I try to find some ressource of the best environnement for as coding on Mac
Intel.
Also Flex 2.

Eclipse seems to be the best way but I cannot find some good way to have as
3 / mxml autocompletion.

Maybe there is other / better ?

--
Flapflap
http://www.kilooctet.net (Dev Flash Blog Fr)
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] this['box_ratio'] works but this.box_ratio or just box_ratio does not

2006-09-12 Thread Alexander Farber

Hello John,

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

You could look into Delegate or Proxy... makes these


I've looked up the Delegate and it is for Components
and I don't use them. And the Proxy is a bad keyword
for searching - could you please give me an URL?

I have put my full source code User.as + User.fla here:
http://preferans.de/user/ - just in case someone has any
other suggestions. Thank you

Regards
Alex

--
http://preferans.de
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] this['box_ratio'] works but this.box_ratio or just box_ratio does not

2006-09-12 Thread Hans Wichman

Hi,
Delegate is not only for components, it works for anycase where you wish to
run functions in another scope.
greetz
JC


On 9/12/06, Alexander Farber [EMAIL PROTECTED] wrote:


Hello John,

On 9/12/06, John Axel Eriksson [EMAIL PROTECTED] wrote:
 You could look into Delegate or Proxy... makes these

I've looked up the Delegate and it is for Components
and I don't use them. And the Proxy is a bad keyword
for searching - could you please give me an URL?

I have put my full source code User.as + User.fla here:
http://preferans.de/user/ - just in case someone has any
other suggestions. Thank you

Regards
Alex

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

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


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

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


Re: [Flashcoders] AS3: Objects never get deleted

2006-09-12 Thread Meinte van't Kruis

ok, thats nice to know :)

any known solutions to this?

-Meinte

On 9/12/06, Fumio Nonaka [EMAIL PROTECTED] wrote:


The useWeakReference parameter of EventDispatcher.addEventListener()
does not seem to work.  Also, the method has a bug, which is that the
event listner function cannot be deleted with the parameter set to true.

Flash 9 ActionScript 3.0 Preview:
Does useWeakReference parameter of addEventListener() method work?

http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72catid=612threadid=1186643enterthread=y
_
Meinte van't Kruis wrote:
 I am using weak references for the listener, here's the code (within
 GCTarget):

this.addEventListener(Event.ENTER_FRAME
,onFrame,false,0,true);
}
private function onFrame(e:Event):void{
trace(A);
}

 So I don't think that's it, else it wouldn't really matter if I pass
 arguments or set variables
 or not , because if I don't it does get deleted properly.

Good luck,
--
Fumio Nonaka
mailto:[EMAIL PROTECTED]
http://www.FumioNonaka.com/
My bookshttp://www.FumioNonaka.com/Books/index.html
Flash communityhttp://F-site.org/

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

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


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

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


Re: [Flashcoders] AS3: Objects never get deleted

2006-09-12 Thread Meinte van't Kruis

pardon me, it seems to be described in the thread.

-

function callback(eventObject:Event):void {
removeEventListener(Event.ENTER_FRAME, callback, false);
// callback = null;
trace([this, callback]);
}
// callback.self = callback;
addEventListener(Event.ENTER_FRAME, callback, false, 0, true);
// addEventListener(Event.ENTER_FRAME, callback, false, 0, false);

-

On 9/12/06, Meinte van't Kruis [EMAIL PROTECTED] wrote:


ok, thats nice to know :)

any known solutions to this?

-Meinte

On 9/12/06, Fumio Nonaka [EMAIL PROTECTED]  wrote:

 The useWeakReference parameter of EventDispatcher.addEventListener()
 does not seem to work.  Also, the method has a bug, which is that the
 event listner function cannot be deleted with the parameter set to true.

 Flash 9 ActionScript 3.0 Preview:
 Does useWeakReference parameter of addEventListener() method work?
 
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72catid=612threadid=1186643enterthread=y

 _
 Meinte van't Kruis wrote:
  I am using weak references for the listener, here's the code (within
  GCTarget):
 
 this.addEventListener(Event.ENTER_FRAME,onFrame,false,0,true);

 }
 private function onFrame(e:Event):void{
 trace(A);
 }
 
  So I don't think that's it, else it wouldn't really matter if I pass
  arguments or set variables
  or not , because if I don't it does get deleted properly.

 Good luck,
 --
 Fumio Nonaka
 mailto:[EMAIL PROTECTED]
 http://www.FumioNonaka.com/
 My bookshttp://www.FumioNonaka.com/Books/index.html
 Flash communityhttp://F-site.org/ 

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] this['box_ratio'] works but this.box_ratio or just box_ratio does not

2006-09-12 Thread John Axel Eriksson
Yeah, exactly. You can use it for anything. You should also check  
this out:

http://www.person13.com/articles/proxy/Proxy.htm

A nicer version of Delegate.

What a Delegate/Proxy does is to execute a callback in another scope.  
So instead you could do it
like this(I'm using Proxy, but you can use Delegate almost the same  
way):




class User extends MovieClip {
private var loaded_txt:TextField;
private var box_width:Number;
private var box_height:Number;
private var box_ratio:Number;
//---
private var avatar_mc:MovieClip;
private var loader_mcl:MovieClipLoader;

public function User() {
loaded_txt.text = '0%';

var listener:Object = new Object();

box_width = avatar_mc._width;
box_height = avatar_mc._height;
box_ratio = avatar_mc._width / avatar_mc._height;
loaded_txt = loaded_txt;

listener.onLoadProgress = Proxy.create(this, display_progress);
listener.onLoadInit = Proxy.create(this, resize_clip);

loader_mcl = new MovieClipLoader();
loader_mcl.addListener(listener);
loader_mcl.loadClip(image, avatar_mc);
}

private function resize_clip(target_mc:MovieClip):Void {
loaded_txt.text = '';

var clip_ratio:Number = avatar_mc._width / avatar_mc._height;

if (clip_ratio  box_ratio)
avatar_mc._xscale = avatar_mc._yscale =
   100 * box_width / avatar_mc._width;
else
avatar_mc._xscale = avatar_mc._yscale =
   100 * box_height / avatar_mc._height;
};
}


/John

12 sep 2006 kl. 09.57 skrev Hans Wichman:


Hi,
Delegate is not only for components, it works for anycase where you  
wish to

run functions in another scope.
greetz
JC


On 9/12/06, Alexander Farber [EMAIL PROTECTED] wrote:


Hello John,

On 9/12/06, John Axel Eriksson [EMAIL PROTECTED] wrote:
 You could look into Delegate or Proxy... makes these

I've looked up the Delegate and it is for Components
and I don't use them. And the Proxy is a bad keyword
for searching - could you please give me an URL?

I have put my full source code User.as + User.fla here:
http://preferans.de/user/ - just in case someone has any
other suggestions. Thank you

Regards
Alex

--
http://preferans.de
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Accessing a file on the local hard drive?

2006-09-12 Thread Mark Burvill
That's a good idea hadn't thought of that. Mind you, don't think we 
can use FP8 but worth considering.


I'm still looking for the reason that it doesn't work straight from the 
hard drive though. Is it a Flash player thing or a service pack thing?


*-
**Mark Burvill*
Interactive designer
eyegas.com http://www.eyegas.com
*Tel:* 0117 953 0100
*Mobile:* 07780 608 498


Mike Mountain wrote:

Personally I think you'd be better using a webcam photo - take a
snapshot using bitmapdata - then there's no uploading/downloading etc.
to be done.

Most PC's have webcams nowadays and they'll require less technical
knowledge end user wise than a file upload.

Cheers

M

 

  

-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf 
Of Mark Burvill

Sent: 08 September 2006 15:06
To: Flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Accessing a file on the local hard drive?

Hi all,

A client has asked for something with the same functionality as this:

www.bbc.co.uk/cbeebies/tweenies/gametime/jointhetweenies/

Bascially it's a kid's thing where you are told to save a 
picture of yourself called me.jpg in a directory on your 
hard drive called temp, and then flash supposedly 
incorporates it into the animation without uploading it to a server.


I've never really seen this done elsewhere, and I can't even 
get that Tweenies one to work on my pc (and certainly not on 
the mac, but that doesn't suprise me).


Obviously I want to go back to them and advise them that's 
it's a bad idea, and we should be uploading the picture 
rather than getting Flash to read straight off the user's 
hard-drive, but I want to be clear about exactly why it can't 
/ shouldn't be done.


I suspect it's something that's prevented by the added 
security of service pack 2 or is it something that's stopped 
by newer version of the flash player?


Can anyone advise?

Cheers,
Mark.

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Scrubbing offline flvPlayback with code

2006-09-12 Thread Danny Kodicek
It seems that it's not possible to set the playHeadTime of an FLVComponent
unless it's streaming - is there any way to get it to work on a local file
running on a CD-ROM? I want to be able to scrub through the video using
code.

Danny

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

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


[Flashcoders] taking color out of a jpg in flash

2006-09-12 Thread Stanford Vinson
I want to load in a jpg/gif and then take all its color out leaving it in
gray scale. Is this possible using new functions in flash 8 ... like
copybitmap  or anything? Has anyone tried this?

All the best,

Stanford
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] taking color out of a jpg in flash

2006-09-12 Thread Mike Mountain
http://www.senocular.com/flash/source.php?id=0.169

Googled desaturate flash 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf 
 Of Stanford Vinson
 Sent: 12 September 2006 10:53
 To: flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] taking color out of a jpg in flash
 
 I want to load in a jpg/gif and then take all its color out 
 leaving it in gray scale. Is this possible using new 
 functions in flash 8 ... like copybitmap  or anything? Has 
 anyone tried this?
 
 All the best,
 
 Stanford
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] Webcam color tracking

2006-09-12 Thread Serge Jespers

Hey guys,

I was wondering if anyone has already tried webcam color tracking  
inside Flash 8 or 9...? So not the difference motion tracking that  
you see everywhere but tracking one particular color. Or I should say  
range of colors...


I started out with getColorBoundsRect but that doesn't seem to be  
accurate enough or I just picked the wrong color...


So...

1) Has anyone done it before? And if so, do you have a source laying  
around that could get me on the right track?

2) How does one select the correct color?

Thanks in advance for your massive replies ;-)

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


RE: [Flashcoders] taking color out of a jpg in flash

2006-09-12 Thread Stanford Vinson
IT WORKS Wow. Those are some fine googlin skills you got there (why
didn't I think of that). Thanks for your help!

Stanford


 http://www.senocular.com/flash/source.php?id=0.169

 Googled desaturate flash 

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf
 Of Stanford Vinson
 Sent: 12 September 2006 10:53
 To: flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] taking color out of a jpg in flash

 I want to load in a jpg/gif and then take all its color out
 leaving it in gray scale. Is this possible using new
 functions in flash 8 ... like copybitmap  or anything? Has
 anyone tried this?

 All the best,

 Stanford
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] Scrubbing offline flvPlayback with code

2006-09-12 Thread Jason Ross
We wrote one recently for a client. You can download it from here:
http://www.view.uk.com/temp/video.player.zip

Jason.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Danny
Kodicek
Sent: 12 September 2006 10:43
To: Flashcoders mailing list
Subject: [Flashcoders] Scrubbing offline flvPlayback with code

It seems that it's not possible to set the playHeadTime of an
FLVComponent
unless it's streaming - is there any way to get it to work on a local
file
running on a CD-ROM? I want to be able to scrub through the video using
code.

Danny

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

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

_
This incoming message has been checked for all known viruses by the 
MessageLabs Virus Control Centre.

Legal Disclaimer:
This email message (including any attachments) is strictly confidential and is 
intended only for the person(s) or organisation(s) named above.  The 
unauthorised use, disclosure, distribution and/or copying of the email message, 
or any information it contains (including any attachments), is strictly 
prohibited and could in certain circumstances constitute a legal offence.  If 
you are not an intended recipient, please contact the sender immediately by 
return email and delete the email from your system.  

Internet email communications are not always secure and may be susceptible to 
data corruption, interception and unauthorised amendment, and therefore View 
does not accept legal responsibility for the contents of this message for any 
such corruption, interception or amendment or the consequences thereof nor any 
delay in its receipt.

Although this email message and any attachments are believed to be free of any 
virus or other defect that might affect any computer system into which it is 
received and opened, it is the responsibility of the recipient to ensure that 
it is virus free.  No responsibility is accepted by View for any loss or 
damage in any way arising from its use.

Any views expressed by the sender of this message are not necessarily those of 
View.  
_
This message from View has been checked for all known viruses by the 
MessageLabs Virus Control Centre.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Scrubbing offline flvPlayback with code

2006-09-12 Thread Danny Kodicek

 We wrote one recently for a client. You can download it from here:
 http://www.view.uk.com/temp/video.player.zip

Wow, thanks Jason, that's really helpful.

Danny

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

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


[Flashcoders] Flash Game/Highscore security

2006-09-12 Thread Almin Sehic
Hello everyone!
I have a huge problem. I have made a game which also
has a highscore feature, and I have some kid who is
always cheating and submitting fake scores. I was
checking this list and i have found a discussion on
this theme from 2003. I am just interested, has
anything changed since 2003? What is the best way to
protect the highscore?

Thanks in advance
S.





___ 
All new Yahoo! Mail The new Interface is stunning in its simplicity and ease 
of use. - PC Magazine 
http://uk.docs.yahoo.com/nowyoucan.html
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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 Game/Highscore security

2006-09-12 Thread Michael Stuhr

Almin Sehic schrieb:

What is the best way to
protect the highscore?


don't put it online.

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


Re: [Flashcoders] Flash Game/Highscore security

2006-09-12 Thread Ian Thomas

There was a pretty thorough discussion of this on the FlashGameCoders
list the other day - it might be worth you taking a look there.

HTH,
 Ian

On 9/12/06, Almin Sehic [EMAIL PROTECTED] wrote:

Your sollution is good, but the other paramters dont
allow me to use it. It has to stay online.

S.

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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 Game/Highscore security

2006-09-12 Thread Danny Kodicek

 Hello everyone!
 I have a huge problem. I have made a game which also
 has a highscore feature, and I have some kid who is
 always cheating and submitting fake scores. I was
 checking this list and i have found a discussion on
 this theme from 2003. I am just interested, has
 anything changed since 2003? What is the best way to
 protect the highscore?

Depends on your game to some extent. If they've found a bug in the game
which enables them to get an artificially high score, there's nothing to do
but fix the bug. But if they're doing it by just sending their own call to
the server, bypassing your game altogether, then you can avoid this by
adding some kind of encryption to the score. One method, for example, is to
send the server three pieces of information: the score, the system clock
time, and some number which combines the two in a secret way known only to
you. (You could also encrypt the score itself, in order to make it even
harder for the user to outguess you)

Danny

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

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


RE: [Flashcoders] Scrubbing offline flvPlayback with code

2006-09-12 Thread Danny Kodicek
  We wrote one recently for a client. You can download it from here:
  http://www.view.uk.com/temp/video.player.zip

 Wow, thanks Jason, that's really helpful.

I've been examining this and it's great, but it suffers the same problems
that my version did: it doesn't scrub the video to an exact time, only to
the nearest keyframe. Our videos are only a few seconds long and may have no
more than one keyframe in the middle. Anyone got a solution that allows you
to set a time precisely?

Danny

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

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


Re: [Flashcoders] Accessing a file on the local hard drive?

2006-09-12 Thread Muzak
If a Flash application (on the web) would have access to your harddrive, Adobe 
would be out of business in no time.
That goes for any web application really..

Muzak

- Original Message - 
From: Mark Burvill [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Tuesday, September 12, 2006 10:44 AM
Subject: Re: [Flashcoders] Accessing a file on the local hard drive?


 That's a good idea hadn't thought of that. Mind you, don't think we can 
 use FP8 but worth considering.

 I'm still looking for the reason that it doesn't work straight from the hard 
 drive though. Is it a Flash player thing or a service 
 pack thing?



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] this['box_ratio'] works but this.box_ratio or just box_ratio does not

2006-09-12 Thread Alexander Farber

Thank you John, the Delegate has been just what
I needed - I've just replaced the 2 lines and it works:

listener.onLoadProgress =
   Delegate.create(this, display_progress);
listener.onLoadInit =
   Delegate.create(this, resize_clip);

Proxy looks nice too, but the license is unclear?

Regards
Alex

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

http://www.person13.com/articles/proxy/Proxy.htm

A nicer version of Delegate.

What a Delegate/Proxy does is to execute a callback in another scope.
So instead you could do it
like this(I'm using Proxy, but you can use Delegate almost the same
way):



class User extends MovieClip {
private var loaded_txt:TextField;
private var box_width:Number;
private var box_height:Number;
private var box_ratio:Number;
//---
private var avatar_mc:MovieClip;
private var loader_mcl:MovieClipLoader;

public function User() {
loaded_txt.text = '0%';

var listener:Object = new Object();

box_width = avatar_mc._width;
box_height = avatar_mc._height;
box_ratio = avatar_mc._width / avatar_mc._height;
loaded_txt = loaded_txt;

listener.onLoadProgress = Proxy.create(this, display_progress);
listener.onLoadInit = Proxy.create(this, resize_clip);

loader_mcl = new MovieClipLoader();
loader_mcl.addListener(listener);
loader_mcl.loadClip(image, avatar_mc);
}

private function resize_clip(target_mc:MovieClip):Void {
loaded_txt.text = '';

var clip_ratio:Number = avatar_mc._width / avatar_mc._height;

if (clip_ratio  box_ratio)
avatar_mc._xscale = avatar_mc._yscale =
100 * box_width / avatar_mc._width;
else
avatar_mc._xscale = avatar_mc._yscale =
100 * box_height / avatar_mc._height;
};
}



--
http://preferans.de
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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 Game/Highscore security

2006-09-12 Thread Ian Thomas

Another method is to have the server send out a generated hash code of
some sort to the client (that expires after a set time); for the
client to encrypt the score using the code and send it back.

Yet another mentioned on FlashCoders is to do the above, but send
(along with score and name) game statistics - number of levels played,
number of bullets fired, number of coins picked up or whatever and let
the server do some basic sanity checking (there's no way he could have
got 1200 by picking up one coin!)

Annoyingly, looks like the FlashGameCoders archives for the last few
months are broken, so I can't point you at those...

HTH,
 Ian

On 9/12/06, Danny Kodicek [EMAIL PROTECTED] wrote:


 Hello everyone!
 I have a huge problem. I have made a game which also
 has a highscore feature, and I have some kid who is
 always cheating and submitting fake scores. I was
 checking this list and i have found a discussion on
 this theme from 2003. I am just interested, has
 anything changed since 2003? What is the best way to
 protect the highscore?

Depends on your game to some extent. If they've found a bug in the game
which enables them to get an artificially high score, there's nothing to do
but fix the bug. But if they're doing it by just sending their own call to
the server, bypassing your game altogether, then you can avoid this by
adding some kind of encryption to the score. One method, for example, is to
send the server three pieces of information: the score, the system clock
time, and some number which combines the two in a secret way known only to
you. (You could also encrypt the score itself, in order to make it even
harder for the user to outguess you)

Danny

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

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


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

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


RE: [Flashcoders] Accessing a file on the local hard drive?

2006-09-12 Thread Mike Mountain
From what I can see of the tweenies one it does upload the photo - it
just takes care of the where from bit with the text:

Create a folder on your c drive called temp and save the file here,
naming it me.jpg

I assume this triggers a php script or something similar to upload it
from that location when Play is pressed.

Pretty rubbish solution really. 

M

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Muzak
 Sent: 12 September 2006 13:22
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] Accessing a file on the local hard drive?
 
 If a Flash application (on the web) would have access to your 
 harddrive, Adobe would be out of business in no time.
 That goes for any web application really..
 
 Muzak
 
 - Original Message -
 From: Mark Burvill [EMAIL PROTECTED]
 To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
 Sent: Tuesday, September 12, 2006 10:44 AM
 Subject: Re: [Flashcoders] Accessing a file on the local hard drive?
 
 
  That's a good idea hadn't thought of that. Mind you, 
 don't think we can use FP8 but worth considering.
 
  I'm still looking for the reason that it doesn't work 
 straight from the hard drive though. Is it a Flash player 
 thing or a service 
  pack thing?
 
 
 
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] Scrubbing offline flvPlayback with code

2006-09-12 Thread Jim Berkey
If the video is short, and is playing from a cd, why not make every frame a 
keyframe when you encode the flv?
jimbo

*** REPLY SEPARATOR  ***

On 9/12/2006 at 1:18 PM Danny Kodicek wrote:

  We wrote one recently for a client. You can download it from here:
  http://www.view.uk.com/temp/video.player.zip

 Wow, thanks Jason, that's really helpful.

I've been examining this and it's great, but it suffers the same problems
that my version did: it doesn't scrub the video to an exact time, only to
the nearest keyframe. Our videos are only a few seconds long and may have
no
more than one keyframe in the middle. Anyone got a solution that allows you
to set a time precisely?

Danny

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

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



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

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


Re: [Flashcoders] Scrubbing offline flvPlayback with code

2006-09-12 Thread Michael Stuhr

Danny Kodicek schrieb:

We wrote one recently for a client. You can download it from here:
http://www.view.uk.com/temp/video.player.zip

Wow, thanks Jason, that's really helpful.


I've been examining this and it's great, but it suffers the same problems
that my version did: it doesn't scrub the video to an exact time, only to
the nearest keyframe. Our videos are only a few seconds long and may have no
more than one keyframe in the middle. Anyone got a solution that allows you
to set a time precisely?



that's the game with keyframes i think. you can only insert more keyframes while rendering 
them to flv's. if they are that short as you describe, it shouldn't really matter.


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


RE: [Flashcoders] Scrubbing offline flvPlayback with code

2006-09-12 Thread Danny Kodicek
 If the video is short, and is playing from a cd, why not make
 every frame a keyframe when you encode the flv?

Because there's quite a lot of video and we don't want the filesize to bloat
(also we may want to put it online in the future)

Danny

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

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


RE: [Flashcoders] Selection.getIndex() on textfield with a button?

2006-09-12 Thread Merrill, Jason
I just went through that nightmare myself related to UI components.
What I ended up doing was a kludgy workaround using setInterval, storing
the selection indicies:

//capture the selection span in the currently focused textfield and save
it for when other UI elements are focused .
//A kludgy workaround since there are bugs with V2 UIComponents
(Combobox) and the Selection object.

(APPLICATION is my master object, 300 seemed to be a good interval to
capture user interaction - not many people would do something in the
text field and then click the UI component faster than 1/3rd of a
second)

myInt = setInterval(checkSelection, 300)
function checkSelection(){
if(eval(Selection.getFocus()) instanceof TextField){ //if the
focused object is a text field.
APPLICATION.prevBegin = Selection.getBeginIndex();
APPLICATION.prevEnd = Selection.getEndIndex();
}
}

Then I would access those saved vales in APPLICATION from the UI
component.  Good luck, it's a bit tricky.

Jason Merrill
Bank of America 
Learning  Organization Effectiveness - Technology Solutions 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of grimmwerks
Sent: Sunday, September 10, 2006 1:10 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Selection.getIndex() on textfield with a
button?

Hey again

How does one get the Selection of a textfield with a button?  Seems
everytime I click a button, it loses the original TextField's
selection/focus, so both begin and end indices come back as -1.

Any help appreciated.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Stylegala.com

2006-09-12 Thread Marcelo de Moraes Serpa

Just found this beutiful website. As a programmer that loves design, I found
this to be a valuable resouce to keep up to date with webdesign tendencies
and to study web/interface and design in general. Very cool!

Is there something like that for flash? What other websites about design
would you recommend?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Close all brances in tree component

2006-09-12 Thread Lieven Cardoen
Does anybody have a function to close all branches in tree
component???(V2 component Flash)

 

Thx, Lieven Cardoen

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Close all brances in tree component

2006-09-12 Thread Johannes Nel

this is a cheat. reset your dataprovider.

On 9/12/06, Lieven Cardoen [EMAIL PROTECTED] wrote:


Does anybody have a function to close all branches in tree
component???(V2 component Flash)



Thx, Lieven Cardoen

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

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





--
j:pn
http://www.lennel.org
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Close all brances in tree component

2006-09-12 Thread Éric Thibault

Here is my old code

Good luck!


function CloseAll() {
   var i:Number;
   var j:Number;
   j = this.length;
  
   for(i = 0; i  j; i++) {

   var oNode:XMLNode = this.getTreeNodeAt(i);
   if(oNode != undefined  this.getIsBranch(oNode)) {
   this.CloseNode(oNode);
   i=0;
   j = this.length;
   }   
   }   
}


function CloseNode(oNode:XMLNode) : Void {
  
   if(this.getIsBranch(oNode) and this.getIsOpen(oNode)) {


   if(oNode != this.getTreeNodeAt(0)) { 
   this.setIsOpen(oNode, false);

   }
   if(oNode.childNodes.length  0) {
   var j:Number;
   for(j = 0; j  oNode.childNodes.length; j++) {
   var oSubNode:XMLNode = oNode.childNodes[j];
   this.CloseNode(oSubNode);
   }
   }
   }   
}



Lieven Cardoen a écrit :

Does anybody have a function to close all branches in tree
component???(V2 component Flash)

 


Thx, Lieven Cardoen

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

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

  



--
===

Éric Thibault
Programmeur analyste
Réseau de valorisation de l'enseignement
Université Laval, pavillon Félix-Antoine Savard
Québec, Canada
Tel.: 656-2131 poste 18015
Courriel : [EMAIL PROTECTED]

===

Avis relatif à la confidentialité / Notice of Confidentiality / Advertencia de 
confidencialidad http://www.rec.ulaval.ca/lce/securite/confidentialite.htm

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Close all brances in tree component

2006-09-12 Thread Éric Thibault

OUPS!

This code is attached to the tree instance!

;-)

A+

Éric Thibault a écrit :

Here is my old code

Good luck!


function CloseAll() {
   var i:Number;
   var j:Number;
   j = this.length;
 for(i = 0; i  j; i++) {
   var oNode:XMLNode = this.getTreeNodeAt(i);
   if(oNode != undefined  this.getIsBranch(oNode)) {
   this.CloseNode(oNode);
   i=0;
   j = this.length;
   }  }   }

function CloseNode(oNode:XMLNode) : Void {
 if(this.getIsBranch(oNode) and this.getIsOpen(oNode)) {

   if(oNode != this.getTreeNodeAt(0)) {
this.setIsOpen(oNode, false);

   }
   if(oNode.childNodes.length  0) {
   var j:Number;
   for(j = 0; j  oNode.childNodes.length; j++) {
   var oSubNode:XMLNode = oNode.childNodes[j];
   this.CloseNode(oSubNode);
   }
   }
   }   }


Lieven Cardoen a écrit :

Does anybody have a function to close all branches in tree
component???(V2 component Flash)

 


Thx, Lieven Cardoen

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

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

  






--
===

Éric Thibault
Programmeur analyste
Réseau de valorisation de l'enseignement
Université Laval, pavillon Félix-Antoine Savard
Québec, Canada
Tel.: 656-2131 poste 18015
Courriel : [EMAIL PROTECTED]

===

Avis relatif à la confidentialité / Notice of Confidentiality / Advertencia de 
confidencialidad http://www.rec.ulaval.ca/lce/securite/confidentialite.htm

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Close all brances in tree component

2006-09-12 Thread Lieven Cardoen
Thx.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Éric Thibault
Sent: dinsdag 12 september 2006 16:10
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Close all brances in tree component

OUPS!

This code is attached to the tree instance!

;-)

A+

Éric Thibault a écrit :
 Here is my old code

 Good luck!


 function CloseAll() {
var i:Number;
var j:Number;
j = this.length;
  for(i = 0; i  j; i++) {
var oNode:XMLNode = this.getTreeNodeAt(i);
if(oNode != undefined  this.getIsBranch(oNode)) {
this.CloseNode(oNode);
i=0;
j = this.length;
}  }   }

 function CloseNode(oNode:XMLNode) : Void {
  if(this.getIsBranch(oNode) and this.getIsOpen(oNode)) {

if(oNode != this.getTreeNodeAt(0)) {
 this.setIsOpen(oNode, false);
}
if(oNode.childNodes.length  0) {
var j:Number;
for(j = 0; j  oNode.childNodes.length; j++) {
var oSubNode:XMLNode = oNode.childNodes[j];
this.CloseNode(oSubNode);
}
}
}   }


 Lieven Cardoen a écrit :
 Does anybody have a function to close all branches in tree
 component???(V2 component Flash)

  

 Thx, Lieven Cardoen

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

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

   




-- 
===

Éric Thibault
Programmeur analyste
Réseau de valorisation de l'enseignement
Université Laval, pavillon Félix-Antoine Savard
Québec, Canada
Tel.: 656-2131 poste 18015
Courriel : [EMAIL PROTECTED]

===

Avis relatif à la confidentialité / Notice of Confidentiality / Advertencia de 
confidencialidad http://www.rec.ulaval.ca/lce/securite/confidentialite.htm

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Click drag to control a MC?

2006-09-12 Thread PGriswold
Thanks Zeh!

I understand the concept of what you're saying to do, but don't understand 
how to apply it.

Right now I'm doing this:

onClipEvent (enterFrame) { 
framePos = int(_xmouse / 200 *( _parent._totalframes));
if (framePos0) {
_parent.gotoAndStop(_parent._totalframes + ((framePos + 1) % 
_parent._totalframes));
} else {
_parent.gotoAndStop(1 + (framePos % _parent._totalframes));
}
}

I thought I could change my clip event to an onPress event, but that 
doesn't work at all.

Right now this code is on the MC itself.

Thanks for the help!

Paul






When the user clicks the area, you save the main stage _xmouse to any 
other 
auxiliary variable. Then, when the user moves the mouse, if you subtract 
the 
saved/original _xmouse from the current new _xmouse, you will get the 
ammount of 'pixels' it should move (then you have to translate that to how 

many frames you want your animation to skip forward/backward).


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] TextArea and TextInput differences in creation, why?

2006-09-12 Thread Stephen Matthews

Hi,
If I use this code below without having a TextArea  TextInput  
component in my library the TextArea component creation fails.


import mx.controls.TextArea;
import mx.controls.TextInput;

clip.createClassObject( TextInput, newname, depth );
clip.createClassObject( TextArea, newname2, depth2 );

However if I put a TextArea component into the library everything  
works fine.


Surely they should work consistently?

The ideal for me would be to just import the Classes for both of  
these in my Class and that's it.


Please let me know if I am being stupid. Cheers =D.

Steve
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] TextArea and TextInput differences in creation, why?

2006-09-12 Thread Robert Chyko
Gotta have the components in the library

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Stephen
Matthews
Sent: Tuesday, September 12, 2006 11:24 AM
To: Flashcoders mailing list
Subject: [Flashcoders] TextArea and TextInput differences in creation,
why?


Hi,
If I use this code below without having a TextArea  TextInput  
component in my library the TextArea component creation fails.

import mx.controls.TextArea;
import mx.controls.TextInput;

clip.createClassObject( TextInput, newname, depth );
clip.createClassObject( TextArea, newname2, depth2 );

However if I put a TextArea component into the library everything  
works fine.

Surely they should work consistently?

The ideal for me would be to just import the Classes for both of  
these in my Class and that's it.

Please let me know if I am being stupid. Cheers =D.

Steve
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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-12 Thread Merrill, Jason
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 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Wade Arnold
Sent: Thursday, August 31, 2006 11:30 PM
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] {OT} Job Postings?

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
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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-12 Thread slangeberg

And don't forget to post the location in your subject line!

-Scott

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






-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Wade Arnold
Sent: Thursday, August 31, 2006 11:30 PM
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] {OT} Job Postings?

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
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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





--

: : ) Scott
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] TextArea and TextInput differences in creation, why?

2006-09-12 Thread Stephen Matthews

Hi Robert,
I only have TextArea in my Library and everything works.
Maybe TextArea  contains everything TextInput needs to exist.

I just looked at the classes for both and they are quite different, I  
don't have time to drill down through all the dependencies and  
inheritance, but I imagine this is the reason.


Sorry I should have looked before.

Cheers
Steve


On 12 Sep 2006, at 16:32, Robert Chyko wrote:


Gotta have the components in the library

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of  
Stephen

Matthews
Sent: Tuesday, September 12, 2006 11:24 AM
To: Flashcoders mailing list
Subject: [Flashcoders] TextArea and TextInput differences in creation,
why?


Hi,
If I use this code below without having a TextArea  TextInput
component in my library the TextArea component creation fails.

import mx.controls.TextArea;
import mx.controls.TextInput;

clip.createClassObject( TextInput, newname, depth );
clip.createClassObject( TextArea, newname2, depth2 );

However if I put a TextArea component into the library everything
works fine.

Surely they should work consistently?

The ideal for me would be to just import the Classes for both of
these in my Class and that's it.

Please let me know if I am being stupid. Cheers =D.

Steve
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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-12 Thread John Grden

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


[Flashcoders] certificate problem in a desktop application

2006-09-12 Thread Céline Nguyen

Hello,

I have a strange certificate problem with Flash8.
I am building a flash app that runs on local computers. The app uses 
LoadVars and sendAndLoad methods to send and load parameters to a distant 
php page in HTTPS.
I have configured the global security panel of the flash player to add the 
entire folder of my flash application, and I have added a cross domain 
policy file on the https servers that says allow-access-from domain='*'
When I run the application within a browser, the security pop-up appears 
asking to trust the https location and once it's done, but when I run the 
.exe file created with ZINC, no pop-up appears and the http status sends a 
flash error message.
I have dicovered that I must install the certificate on my computer in order 
for my application to work properly.
But can I ask every end user to manually install the certificate ? I think 
it's not really secure to let them know about the https adress nor elegant 
to make them do this.


My questions then are :
Is there a way in Actionscript to make the security pop-up appear within the 
exe application ? Or is there a way to build an installer with ZINC and 
configure it so that it installs a certificate (.cer) on the destination 
computer ? or is there a more simple solution ? Will the registration of the 
https location solve my problem ?


Best,
Celine

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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-12 Thread John Grden

one thing I've been trying to champion is to embrace more telecommuters and
take an aggressive stance on it where they go after people not wanting to
relocate.  I think when companies finaly come to grips with letting people
work from home, and learn how to filter out bad eggs (people who get lazy at
home), they'll probably have one of the strongest flash dev teams around.

with Breeze, and other solutions, you can very easily interact with
coworkers.  I've been doing it for 2+yrs now and I've been 100x's more
productive without all the distractions etc.

Somebody ( an agency ) will do it and I think it'll be very succesfull.  Who
that'll be is still to be seen ;)


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


And don't forget to post the location in your subject line!

-Scott

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






 -Original Message-
 From: [EMAIL PROTECTED] [mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of Wade Arnold
 Sent: Thursday, August 31, 2006 11:30 PM
 To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] {OT} Job Postings?
 
 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
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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




--

: : ) Scott
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Site Check Please

2006-09-12 Thread Aaron Roberson

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


Re: [Flashcoders] Site Check Please

2006-09-12 Thread Mick G

Working OK here - FF / PC.

On 9/12/06, Aaron Roberson [EMAIL PROTECTED] wrote:


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


RE: [Flashcoders] {OT} Job Postings?

2006-09-12 Thread Kevin Aebig
I completely agree. I've seen hundreds of good job postings that I was
extremely interested in, but didn't apply because I have no need to
re-locate.

The fact that I worked at home (Canada, eh!) for a company in Chicago for
over two years really proved it to me. They got the type of geek they were
looking for and the US exchange rate made it cheaper for them and meant a
better salary for me.

I actually miss working under those conditions. Less distractions and no
office politics...

!k

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John Grden
Sent: Tuesday, September 12, 2006 10:12 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] {OT} Job Postings?

one thing I've been trying to champion is to embrace more telecommuters and
take an aggressive stance on it where they go after people not wanting to
relocate.  I think when companies finaly come to grips with letting people
work from home, and learn how to filter out bad eggs (people who get lazy at
home), they'll probably have one of the strongest flash dev teams around.

with Breeze, and other solutions, you can very easily interact with
coworkers.  I've been doing it for 2+yrs now and I've been 100x's more
productive without all the distractions etc.

Somebody ( an agency ) will do it and I think it'll be very succesfull.  Who
that'll be is still to be seen ;)


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

 And don't forget to post the location in your subject line!

 -Scott

 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
 
 
 
 
 
 
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:flashcoders-
  [EMAIL PROTECTED] On Behalf Of Wade Arnold
  Sent: Thursday, August 31, 2006 11:30 PM
  To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
  Subject: [Flashcoders] {OT} Job Postings?
  
  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
  ___
  Flashcoders@chattyfig.figleaf.com
  To change your subscription options or search the archive:
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
  Brought to you by Fig Leaf Software
  Premier Authorized Adobe Consulting and Training
  http://www.figleaf.com
  http://training.figleaf.com
 



 --

 : : ) Scott
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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


Re: [Flashcoders] {OT} Job Postings?

2006-09-12 Thread Zeh Fernando

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!


I live in another world, but I can say the same about our (Brazilian) market 
aswell. There's an absurd lack of competent people, and trying to find 
someone with the level you expect and that you can trust is an exercise in 
frustration. I have to refuse almost daily, and inevitably I have to repeat 
the same choir over and over again - No, I can't do your specific job but 
thanks, and no, I don't know anyone who could that I can point you at, I'm 
sorry, that's the truth. I get baffled replies at best; people usually 
think I'm bullsh*tting them.


Unfortunatelly it seems much of this is due to the nature and the history of 
Flash. Sure, there's a lot of people working with Flex and Flash from all 
the walks of the design/IT life, but differently from other technologies 
like, say, Java, the technology isn't seen as being integral part of a 
dedicated field. Take as an example the school (university) I go to: we have 
design/interface design/multimedia bachelor degrees, as well as computer 
science degrees. On the computer science courses, they learn C, C++, Python, 
Java, and stuff like that; on the other design courses, they learn basic 
Flash (and I mean, *really* basic flash).


Sure, I'm not the one to trust blindly in school degrees (I've worked for 12 
years and never had a degree) and I sure hope someone will come out of 
graduation with 100 design patterns memorized. But the fact that no 
university course around here sees Flash as a 'serious' programming field 
speaks a lot when you see the absense of good professionals on the market. 
You usually have a lot of 'hacks' that come from, say, the creative/design 
area, and think they're good because they can tween a banner, but it's hard 
to someone that go a little further and actually wants to get better at 
coding, or people from the 'cold coding' market moving into what's seen as a 
designerish tool. Sad but true.



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

2006-09-12 Thread Éric Thibault
I have to install flash player 9... are those users having the problems 
without administrator rights?


:-\

Aaron Roberson a écrit :

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




--
===

Éric Thibault
Programmeur analyste
Réseau de valorisation de l'enseignement
Université Laval, pavillon Félix-Antoine Savard
Québec, Canada
Tel.: 656-2131 poste 18015
Courriel : [EMAIL PROTECTED]

===

Avis relatif à la confidentialité / Notice of Confidentiality / Advertencia de 
confidencialidad http://www.rec.ulaval.ca/lce/securite/confidentialite.htm

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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-12 Thread Ryan Potter
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


Re: [Flashcoders] {OT} Job Postings?

2006-09-12 Thread Johannes Nel

paul barnes-hogget had an argument about supply and demand in the
flex/flasharena which i thought is very apt. he stated that as flex and
flash is such a hot technology the demand is very high, thus with normal
market factors wages tend to rise. big companies want to use the technology,
but due to the cost and lack of supply they struggle to use it, thus making
them consider other alternatives.

personally we have started hirring developers who are skilled in other
areas, upskilling them into this one via peer programming and code reviews
in order to try and meet some of this demand, this unfortunatly is a slow
process, but one most companies have to do if they want to expand.

On 9/12/06, Zeh Fernando [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!

I live in another world, but I can say the same about our (Brazilian)
market
aswell. There's an absurd lack of competent people, and trying to find
someone with the level you expect and that you can trust is an exercise in

frustration. I have to refuse almost daily, and inevitably I have to
repeat
the same choir over and over again - No, I can't do your specific job but
thanks, and no, I don't know anyone who could that I can point you at, I'm

sorry, that's the truth. I get baffled replies at best; people usually
think I'm bullsh*tting them.

Unfortunatelly it seems much of this is due to the nature and the history
of
Flash. Sure, there's a lot of people working with Flex and Flash from all
the walks of the design/IT life, but differently from other technologies
like, say, Java, the technology isn't seen as being integral part of a
dedicated field. Take as an example the school (university) I go to: we
have
design/interface design/multimedia bachelor degrees, as well as computer
science degrees. On the computer science courses, they learn C, C++,
Python,
Java, and stuff like that; on the other design courses, they learn basic
Flash (and I mean, *really* basic flash).

Sure, I'm not the one to trust blindly in school degrees (I've worked for
12
years and never had a degree) and I sure hope someone will come out of
graduation with 100 design patterns memorized. But the fact that no
university course around here sees Flash as a 'serious' programming field
speaks a lot when you see the absense of good professionals on the market.
You usually have a lot of 'hacks' that come from, say, the creative/design

area, and think they're good because they can tween a banner, but it's
hard
to someone that go a little further and actually wants to get better at
coding, or people from the 'cold coding' market moving into what's seen as
a
designerish tool. Sad but true.


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





--
j:pn
http://www.lennel.org
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] certificate problem in a desktop application

2006-09-12 Thread Kevin Aebig
I'd look at doing an installer. That would probably be on of the easiest
routes and would be guaranteed to work.

!k

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Céline
Nguyen
Sent: Tuesday, September 12, 2006 10:11 AM
To: Flashcoders mailing list
Subject: [Flashcoders] certificate problem in a desktop application 

Hello,

I have a strange certificate problem with Flash8.
I am building a flash app that runs on local computers. The app uses 
LoadVars and sendAndLoad methods to send and load parameters to a distant 
php page in HTTPS.
I have configured the global security panel of the flash player to add the 
entire folder of my flash application, and I have added a cross domain 
policy file on the https servers that says allow-access-from domain='*'
When I run the application within a browser, the security pop-up appears 
asking to trust the https location and once it's done, but when I run the 
.exe file created with ZINC, no pop-up appears and the http status sends a 
flash error message.
I have dicovered that I must install the certificate on my computer in order

for my application to work properly.
But can I ask every end user to manually install the certificate ? I think 
it's not really secure to let them know about the https adress nor elegant 
to make them do this.

My questions then are :
Is there a way in Actionscript to make the security pop-up appear within the

exe application ? Or is there a way to build an installer with ZINC and 
configure it so that it installs a certificate (.cer) on the destination 
computer ? or is there a more simple solution ? Will the registration of the

https location solve my problem ?

Best,
Celine

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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-12 Thread DannyT

I completely agree with Johannes approach. Knowledge of the ins and outs of
flash/flex/actionscript isn't half as important as an ability to pick up new
technologies, follow best practices and work effectively as a member of a
team.

I think if you ask if they can do something, and they can't that's fine,
it's how they'll find out how to do it that's key.

Dan

On 12/09/06, Johannes Nel [EMAIL PROTECTED] wrote:


paul barnes-hogget had an argument about supply and demand in the
flex/flasharena which i thought is very apt. he stated that as flex and
flash is such a hot technology the demand is very high, thus with normal
market factors wages tend to rise. big companies want to use the
technology,
but due to the cost and lack of supply they struggle to use it, thus
making
them consider other alternatives.

personally we have started hirring developers who are skilled in other
areas, upskilling them into this one via peer programming and code reviews
in order to try and meet some of this demand, this unfortunatly is a slow
process, but one most companies have to do if they want to expand.

On 9/12/06, Zeh Fernando [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!

 I live in another world, but I can say the same about our (Brazilian)
 market
 aswell. There's an absurd lack of competent people, and trying to find
 someone with the level you expect and that you can trust is an exercise
in

 frustration. I have to refuse almost daily, and inevitably I have to
 repeat
 the same choir over and over again - No, I can't do your specific job
but
 thanks, and no, I don't know anyone who could that I can point you at,
I'm

 sorry, that's the truth. I get baffled replies at best; people usually
 think I'm bullsh*tting them.

 Unfortunatelly it seems much of this is due to the nature and the
history
 of
 Flash. Sure, there's a lot of people working with Flex and Flash from
all
 the walks of the design/IT life, but differently from other technologies
 like, say, Java, the technology isn't seen as being integral part of a
 dedicated field. Take as an example the school (university) I go to: we
 have
 design/interface design/multimedia bachelor degrees, as well as computer
 science degrees. On the computer science courses, they learn C, C++,
 Python,
 Java, and stuff like that; on the other design courses, they learn basic
 Flash (and I mean, *really* basic flash).

 Sure, I'm not the one to trust blindly in school degrees (I've worked
for
 12
 years and never had a degree) and I sure hope someone will come out of
 graduation with 100 design patterns memorized. But the fact that no
 university course around here sees Flash as a 'serious' programming
field
 speaks a lot when you see the absense of good professionals on the
market.
 You usually have a lot of 'hacks' that come from, say, the
creative/design

 area, and think they're good because they can tween a banner, but it's
 hard
 to someone that go a little further and actually wants to get better at
 coding, or people from the 'cold coding' market moving into what's seen
as
 a
 designerish tool. Sad but true.


 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




--
j:pn
http://www.lennel.org
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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





--
http://danny-t.co.uk
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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-12 Thread Mick G

Yeh, it might be overkill to publish as Flash 9 just for a navigation
system.

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


Re: [Flashcoders] Webcam color tracking

2006-09-12 Thread Serge Jespers

So... euhm.. no one?



Hey guys,

I was wondering if anyone has already tried webcam color tracking  
inside Flash 8 or 9...? So not the difference motion tracking that  
you see everywhere but tracking one particular color. Or I should  
say range of colors...


I started out with getColorBoundsRect but that doesn't seem to be  
accurate enough or I just picked the wrong color...


So...

1) Has anyone done it before? And if so, do you have a source  
laying around that could get me on the right track?

2) How does one select the correct color?

Thanks in advance for your massive replies ;-)

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@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] does actionscript have something like sql's IN or LIKE ?

2006-09-12 Thread Jim Kremens

Hi,

Try this for checking if one string contains another:

public static function contains(str:String, val:String):Boolean {
 return str.indexOf(val) != -1 ? true : false;
}

Also, try to avoid attaching your functions directly to buttons, as it makes
scoping tricky:

this.opened_btn.onRelease=function(){

Check out the Proxy class here for a better way to handle that:
http://www.person13.com/articles/proxy/Proxy.htm

Hope that helps,

Jim Kremens
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] certificate problem in a desktop application

2006-09-12 Thread Céline Nguyen

Yes I am trying to figure out how to do this.  Any ideas ?
Do you know why a browser window running the application displays the 
security pop-up windows whereas the flash player nor the zinc .exe does not 
displays the same security pop-up, and don't even reach the https server ? 
(I trace an httpStatus 100 meaning flash error)




- Original Message - 
From: Kevin Aebig [EMAIL PROTECTED]

To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com
Sent: Tuesday, September 12, 2006 1:49 PM
Subject: RE: [Flashcoders] certificate problem in a desktop application


I'd look at doing an installer. That would probably be on of the easiest
routes and would be guaranteed to work.

!k

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Céline
Nguyen
Sent: Tuesday, September 12, 2006 10:11 AM
To: Flashcoders mailing list
Subject: [Flashcoders] certificate problem in a desktop application

Hello,

I have a strange certificate problem with Flash8.
I am building a flash app that runs on local computers. The app uses
LoadVars and sendAndLoad methods to send and load parameters to a distant
php page in HTTPS.
I have configured the global security panel of the flash player to add the
entire folder of my flash application, and I have added a cross domain
policy file on the https servers that says allow-access-from domain='*'
When I run the application within a browser, the security pop-up appears
asking to trust the https location and once it's done, but when I run the
.exe file created with ZINC, no pop-up appears and the http status sends a
flash error message.
I have dicovered that I must install the certificate on my computer in order

for my application to work properly.
But can I ask every end user to manually install the certificate ? I think
it's not really secure to let them know about the https adress nor elegant
to make them do this.

My questions then are :
Is there a way in Actionscript to make the security pop-up appear within the

exe application ? Or is there a way to build an installer with ZINC and
configure it so that it installs a certificate (.cer) on the destination
computer ? or is there a more simple solution ? Will the registration of the

https location solve my problem ?

Best,
Celine

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] does actionscript have something like sql's IN orLIKE ?

2006-09-12 Thread Mike Keesey
Why not just:

public static function contains(str:String, val:String):Boolean {
return str.indexOf(val) = 0;
}

?

A tad more concise (you don't need the ? true : false part), and
avoids the problem your function has that if str is null or undefined,
it returns true.
―
Mike Keesey

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of Jim Kremens
 Sent: Tuesday, September 12, 2006 11:25 AM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] does actionscript have something like sql's
IN
 orLIKE ?
 
 Hi,
 
 Try this for checking if one string contains another:
 
  public static function contains(str:String, val:String):Boolean {
   return str.indexOf(val) != -1 ? true : false;
  }
 
 Also, try to avoid attaching your functions directly to buttons, as it
 makes
 scoping tricky:
 
  this.opened_btn.onRelease=function(){
 
 Check out the Proxy class here for a better way to handle that:
 http://www.person13.com/articles/proxy/Proxy.htm
 
 Hope that helps,
 
 Jim Kremens
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] Re: inline images in a textarea

2006-09-12 Thread Rich Rodecker

wierd...how do you suppose they did it here then?:

http://www.mambers.com/chat/preloader.swf

i thought about picking the string apart and piecign together some new
movieclips/text fields to display the content, but that would get crazy when
the text spans multiple lines.  the link above handles it pretty well
though.



On 9/8/06, Marcelo Volmaro [EMAIL PROTECTED] wrote:


You can´t do that because flash doesn´t support images as in-line
elements, only as block elements.

On Fri, 08 Sep 2006 17:30:43 -0300, Rich Rodecker [EMAIL PROTECTED]
wrote:

 thanks...its not the text thats going to the next line though...the text
 is
 all appearing on one line, but the image is appearing on the next.

 so for instance when the image is supposed to be in the middle of the
 line
 of text:

 hey there img src=http://www.thewhole9.com/chat/smilies/smile.jpg;
 width=19 height=19 VSPACE=0 HSPACE=0 / hows it going?

 is turning into this (visually anyway, the html is still correct in the
 textarea):
 hey there hows it going?
 img src=http://www.thewhole9.com/chat/smilies/smile.jpg; width=19
 height=19 VSPACE=0 HSPACE=0 /

 does that make sense?  thee image is appearing on the next line, after
 the
 line of text when it should be right in the middle.

 On 9/8/06, Lori Hutchek [EMAIL PROTECTED] wrote:

 Check that you are setting this VSPACE=0 HSPACE=0 it's the vertical
 and horizontal space around the image which may be pushing the text to
 next line

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Rich
 Rodecker
 Sent: Friday, September 08, 2006 12:55 PM
 To: Flashcoders mailing list
 Subject: [Flashcoders] Re: inline images in a textarea

 hmmm..anyone?  i know i've seen it done a couple of times, but I'm
 pretty
 stuck.



 On 9/7/06, Rich Rodecker [EMAIL PROTECTED] wrote:
 
  ok, i know working with images in a text area is only going to lead
me
 to
  heartache, but I've seen this done and if anyone can point me in the
 right
  direction that would be awesome.
 
  I have a chat app that im building with support for emoticons.
 everyhting
  works great except the smiley image always appears on the next line
 after
  the text, so I wind up with something like:
 
  here is my smiley
  :)
 
  when i really want:
 
  here is :) my smiley
 
  The one quirk i can see that might cause some wierdness is that i am
  setting the contents of the textarea using the .text property, though
 the
  textarea is set to html = true and everything renders out ok.  I dont
 want
  to use .htmlText because I'm letting the user choose any font, and
 htmlText
  wont seem to render without the text embedded.
 
 
 
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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



--
_
Marcelo Volmaro
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] does actionscript have something like sql's IN orLIKE ?

2006-09-12 Thread Jim Kremens

Good point!  That function has been hanging around in my library for about 2
years and I never really thought much about it...

Thanks,

Jim


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


Why not just:

public static function contains(str:String, val:String):Boolean {
   return str.indexOf(val) = 0;
}

?

A tad more concise (you don't need the ? true : false part), and
avoids the problem your function has that if str is null or undefined,
it returns true.
―
Mike Keesey

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of Jim Kremens
 Sent: Tuesday, September 12, 2006 11:25 AM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] does actionscript have something like sql's
IN
 orLIKE ?

 Hi,

 Try this for checking if one string contains another:

  public static function contains(str:String, val:String):Boolean {
   return str.indexOf(val) != -1 ? true : false;
  }

 Also, try to avoid attaching your functions directly to buttons, as it
 makes
 scoping tricky:

  this.opened_btn.onRelease=function(){

 Check out the Proxy class here for a better way to handle that:
 http://www.person13.com/articles/proxy/Proxy.htm

 Hope that helps,

 Jim Kremens
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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





--
Jim Kremens
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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-12 Thread John Grden

I would agree with all that's been said - I couldn't have said it better

Finding the type of person has become the focus.  We designed some
questioning that really helped us weed through the people that would most
likely be good candidates for coming up to speed.   Then you get into work
ethic, personality etc.  But at least you have someone through the door that
might work out.


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


I completely agree with Johannes approach. Knowledge of the ins and outs
of
flash/flex/actionscript isn't half as important as an ability to pick up
new
technologies, follow best practices and work effectively as a member of a
team.

I think if you ask if they can do something, and they can't that's fine,
it's how they'll find out how to do it that's key.

Dan

On 12/09/06, Johannes Nel [EMAIL PROTECTED] wrote:

 paul barnes-hogget had an argument about supply and demand in the
 flex/flasharena which i thought is very apt. he stated that as flex and
 flash is such a hot technology the demand is very high, thus with normal
 market factors wages tend to rise. big companies want to use the
 technology,
 but due to the cost and lack of supply they struggle to use it, thus
 making
 them consider other alternatives.

 personally we have started hirring developers who are skilled in other
 areas, upskilling them into this one via peer programming and code
reviews
 in order to try and meet some of this demand, this unfortunatly is a
slow
 process, but one most companies have to do if they want to expand.

 On 9/12/06, Zeh Fernando [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!
 
  I live in another world, but I can say the same about our (Brazilian)
  market
  aswell. There's an absurd lack of competent people, and trying to find
  someone with the level you expect and that you can trust is an
exercise
 in
 
  frustration. I have to refuse almost daily, and inevitably I have to
  repeat
  the same choir over and over again - No, I can't do your specific job
 but
  thanks, and no, I don't know anyone who could that I can point you at,
 I'm
 
  sorry, that's the truth. I get baffled replies at best; people
usually
  think I'm bullsh*tting them.
 
  Unfortunatelly it seems much of this is due to the nature and the
 history
  of
  Flash. Sure, there's a lot of people working with Flex and Flash from
 all
  the walks of the design/IT life, but differently from other
technologies
  like, say, Java, the technology isn't seen as being integral part of a
  dedicated field. Take as an example the school (university) I go to:
we
  have
  design/interface design/multimedia bachelor degrees, as well as
computer
  science degrees. On the computer science courses, they learn C, C++,
  Python,
  Java, and stuff like that; on the other design courses, they learn
basic
  Flash (and I mean, *really* basic flash).
 
  Sure, I'm not the one to trust blindly in school degrees (I've worked
 for
  12
  years and never had a degree) and I sure hope someone will come out of
  graduation with 100 design patterns memorized. But the fact that no
  university course around here sees Flash as a 'serious' programming
 field
  speaks a lot when you see the absense of good professionals on the
 market.
  You usually have a lot of 'hacks' that come from, say, the
 creative/design
 
  area, and think they're good because they can tween a banner, but it's
  hard
  to someone that go a little further and actually wants to get better
at
  coding, or people from the 'cold coding' market moving into what's
seen
 as
  a
  designerish tool. Sad but true.
 
 
  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
 



 --
 j:pn
 http://www.lennel.org
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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




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


Re: [Flashcoders] Re: inline images in a textarea

2006-09-12 Thread Johannes Nel

they use on textfield per line and just leave a space in the text itself
cleverly done. this can be seen by selecting the line of text

On 9/12/06, Rich Rodecker [EMAIL PROTECTED] wrote:


wierd...how do you suppose they did it here then?:

http://www.mambers.com/chat/preloader.swf

i thought about picking the string apart and piecign together some new
movieclips/text fields to display the content, but that would get crazy
when
the text spans multiple lines.  the link above handles it pretty well
though.



On 9/8/06, Marcelo Volmaro [EMAIL PROTECTED] wrote:

 You can´t do that because flash doesn´t support images as in-line
 elements, only as block elements.

 On Fri, 08 Sep 2006 17:30:43 -0300, Rich Rodecker [EMAIL PROTECTED]
 wrote:

  thanks...its not the text thats going to the next line though...the
text
  is
  all appearing on one line, but the image is appearing on the next.
 
  so for instance when the image is supposed to be in the middle of the
  line
  of text:
 
  hey there img src=http://www.thewhole9.com/chat/smilies/smile.jpg;
  width=19 height=19 VSPACE=0 HSPACE=0 / hows it going?
 
  is turning into this (visually anyway, the html is still correct in
the
  textarea):
  hey there hows it going?
  img src=http://www.thewhole9.com/chat/smilies/smile.jpg; width=19
  height=19 VSPACE=0 HSPACE=0 /
 
  does that make sense?  thee image is appearing on the next line, after
  the
  line of text when it should be right in the middle.
 
  On 9/8/06, Lori Hutchek [EMAIL PROTECTED] wrote:
 
  Check that you are setting this VSPACE=0 HSPACE=0 it's the
vertical
  and horizontal space around the image which may be pushing the text
to
  next line
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of Rich
  Rodecker
  Sent: Friday, September 08, 2006 12:55 PM
  To: Flashcoders mailing list
  Subject: [Flashcoders] Re: inline images in a textarea
 
  hmmm..anyone?  i know i've seen it done a couple of times, but I'm
  pretty
  stuck.
 
 
 
  On 9/7/06, Rich Rodecker [EMAIL PROTECTED] wrote:
  
   ok, i know working with images in a text area is only going to lead
 me
  to
   heartache, but I've seen this done and if anyone can point me in
the
  right
   direction that would be awesome.
  
   I have a chat app that im building with support for emoticons.
  everyhting
   works great except the smiley image always appears on the next line
  after
   the text, so I wind up with something like:
  
   here is my smiley
   :)
  
   when i really want:
  
   here is :) my smiley
  
   The one quirk i can see that might cause some wierdness is that i
am
   setting the contents of the textarea using the .text property,
though
  the
   textarea is set to html = true and everything renders out ok.  I
dont
  want
   to use .htmlText because I'm letting the user choose any font, and
  htmlText
   wont seem to render without the text embedded.
  
  
  
  ___
  Flashcoders@chattyfig.figleaf.com
  To change your subscription options or search the archive:
  http://chattyfig.figleaf.com/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



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

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

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

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





--
j:pn
http://www.lennel.org
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier 

Re: [Flashcoders] Re: inline images in a textarea

2006-09-12 Thread Marcelo Volmaro
They measure the width of each character and then insert spaces where the  
image should be placed. Then the image is attached onto a movieclip using  
as a coordinates the sum of the width of all the characters in one line.


If the text spans into multiple lines, that´s no problem neither. You know  
the width of the text field, so you can check where the text will span,  
and measuring the height of a textline, add that space to the y coord.


Easy? No. Doable? Yes.
In fact, i remember now a component that does exactly that... don´t  
remember the name, but something with emoticons and flash :)


Regards,

On Tue, 12 Sep 2006 15:43:23 -0300, Rich Rodecker [EMAIL PROTECTED]  
wrote:



wierd...how do you suppose they did it here then?:

http://www.mambers.com/chat/preloader.swf

i thought about picking the string apart and piecign together some new
movieclips/text fields to display the content, but that would get crazy  
when

the text spans multiple lines.  the link above handles it pretty well
though.



On 9/8/06, Marcelo Volmaro [EMAIL PROTECTED] wrote:


You can´t do that because flash doesn´t support images as in-line
elements, only as block elements.

On Fri, 08 Sep 2006 17:30:43 -0300, Rich Rodecker [EMAIL PROTECTED]
wrote:

 thanks...its not the text thats going to the next line though...the  
text

 is
 all appearing on one line, but the image is appearing on the next.

 so for instance when the image is supposed to be in the middle of the
 line
 of text:

 hey there img src=http://www.thewhole9.com/chat/smilies/smile.jpg;
 width=19 height=19 VSPACE=0 HSPACE=0 / hows it going?

 is turning into this (visually anyway, the html is still correct in  
the

 textarea):
 hey there hows it going?
 img src=http://www.thewhole9.com/chat/smilies/smile.jpg; width=19
 height=19 VSPACE=0 HSPACE=0 /

 does that make sense?  thee image is appearing on the next line, after
 the
 line of text when it should be right in the middle.

 On 9/8/06, Lori Hutchek [EMAIL PROTECTED] wrote:

 Check that you are setting this VSPACE=0 HSPACE=0 it's the  
vertical
 and horizontal space around the image which may be pushing the text  
to

 next line

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Rich
 Rodecker
 Sent: Friday, September 08, 2006 12:55 PM
 To: Flashcoders mailing list
 Subject: [Flashcoders] Re: inline images in a textarea

 hmmm..anyone?  i know i've seen it done a couple of times, but I'm
 pretty
 stuck.



 On 9/7/06, Rich Rodecker [EMAIL PROTECTED] wrote:
 
  ok, i know working with images in a text area is only going to lead
me
 to
  heartache, but I've seen this done and if anyone can point me in  
the

 right
  direction that would be awesome.
 
  I have a chat app that im building with support for emoticons.
 everyhting
  works great except the smiley image always appears on the next line
 after
  the text, so I wind up with something like:
 
  here is my smiley
  :)
 
  when i really want:
 
  here is :) my smiley
 
  The one quirk i can see that might cause some wierdness is that i  
am
  setting the contents of the textarea using the .text property,  
though

 the
  textarea is set to html = true and everything renders out ok.  I  
dont

 want
  to use .htmlText because I'm letting the user choose any font, and
 htmlText
  wont seem to render without the text embedded.
 
 
 
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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



--
_
Marcelo Volmaro
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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


RE: [Flashcoders] {OT} Job Postings?

2006-09-12 Thread Kevin Aebig
I completely agree as well, but the initial problem remains: Finding someone
with those talents. 

I consider myself extremely talented in those areas, but won't relocate.
Employers should definitely consider giving remote workers a chance to prove
themselves through contract work if they really want to get the best
qualified person they can find.

It's frustrating all around these days as finding a good company to work for
is becoming more and more difficult. I've turned down 3 job offers in the
past year because the companies either didn't seem like they were on the up
and up or I didn't feel like it was positive place to work.

!k

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John Grden
Sent: Tuesday, September 12, 2006 12:56 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] {OT} Job Postings?

I would agree with all that's been said - I couldn't have said it better

Finding the type of person has become the focus.  We designed some
questioning that really helped us weed through the people that would most
likely be good candidates for coming up to speed.   Then you get into work
ethic, personality etc.  But at least you have someone through the door that
might work out.


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

 I completely agree with Johannes approach. Knowledge of the ins and outs
 of
 flash/flex/actionscript isn't half as important as an ability to pick up
 new
 technologies, follow best practices and work effectively as a member of a
 team.

 I think if you ask if they can do something, and they can't that's fine,
 it's how they'll find out how to do it that's key.

 Dan

 On 12/09/06, Johannes Nel [EMAIL PROTECTED] wrote:
 
  paul barnes-hogget had an argument about supply and demand in the
  flex/flasharena which i thought is very apt. he stated that as flex and
  flash is such a hot technology the demand is very high, thus with normal
  market factors wages tend to rise. big companies want to use the
  technology,
  but due to the cost and lack of supply they struggle to use it, thus
  making
  them consider other alternatives.
 
  personally we have started hirring developers who are skilled in other
  areas, upskilling them into this one via peer programming and code
 reviews
  in order to try and meet some of this demand, this unfortunatly is a
 slow
  process, but one most companies have to do if they want to expand.
 
  On 9/12/06, Zeh Fernando [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!
  
   I live in another world, but I can say the same about our (Brazilian)
   market
   aswell. There's an absurd lack of competent people, and trying to find
   someone with the level you expect and that you can trust is an
 exercise
  in
  
   frustration. I have to refuse almost daily, and inevitably I have to
   repeat
   the same choir over and over again - No, I can't do your specific job
  but
   thanks, and no, I don't know anyone who could that I can point you at,
  I'm
  
   sorry, that's the truth. I get baffled replies at best; people
 usually
   think I'm bullsh*tting them.
  
   Unfortunatelly it seems much of this is due to the nature and the
  history
   of
   Flash. Sure, there's a lot of people working with Flex and Flash from
  all
   the walks of the design/IT life, but differently from other
 technologies
   like, say, Java, the technology isn't seen as being integral part of a
   dedicated field. Take as an example the school (university) I go to:
 we
   have
   design/interface design/multimedia bachelor degrees, as well as
 computer
   science degrees. On the computer science courses, they learn C, C++,
   Python,
   Java, and stuff like that; on the other design courses, they learn
 basic
   Flash (and I mean, *really* basic flash).
  
   Sure, I'm not the one to trust blindly in school degrees (I've worked
  for
   12
   years and never had a degree) and I sure hope someone will come out of
   graduation with 100 design patterns memorized. But the fact that no
   university course around here sees Flash as a 'serious' programming
  field
   speaks a lot when you see the absense of good professionals on the
  market.
   You usually have a lot of 'hacks' that come from, say, the
  creative/design
  
   area, and think they're good because they can tween a banner, but it's
   hard
   to someone that go a little further and actually wants to get better
 at
   coding, or people from the 'cold coding' market moving into what's
 seen
  as
   a
   designerish tool. Sad but true.
  
  
   Zeh
  
 

Re: [Flashcoders] {OT} Job Postings?

2006-09-12 Thread Count Schemula

There needs to be creative agencies that works this way.

Clients can still deal with account managers and directors locally,
but they access their remote teams to get it done.

--
count_schemula

a href=http://www.thelargeglass.com/flashNo0b/;files for No0bs/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] Site Check Please

2006-09-12 Thread Aaron Roberson

On 9/12/06, Éric Thibault [EMAIL PROTECTED] wrote:

I have to install flash player 9... are those users having the problems
without administrator rights?

:-\



No, they have adminstrative rights. In fact, one of them told me they
had to install Flash 9 but once they did and returned to the links no
longer worked.

-Aaron


Aaron Roberson a écrit :
 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



--
===

Éric Thibault
Programmeur analyste
Réseau de valorisation de l'enseignement
Université Laval, pavillon Félix-Antoine Savard
Québec, Canada
Tel.: 656-2131 poste 18015
Courriel : [EMAIL PROTECTED]

===

Avis relatif à la confidentialité / Notice of Confidentiality / Advertencia de 
confidencialidad http://www.rec.ulaval.ca/lce/securite/confidentialite.htm

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Webcam color tracking

2006-09-12 Thread Mick G

http://www.adobe.com/devnet/flash/articles/webcam_motion.html


On 9/12/06, Serge Jespers [EMAIL PROTECTED] wrote:


So... euhm.. no one?


 Hey guys,

 I was wondering if anyone has already tried webcam color tracking
 inside Flash 8 or 9...? So not the difference motion tracking that
 you see everywhere but tracking one particular color. Or I should
 say range of colors...

 I started out with getColorBoundsRect but that doesn't seem to be
 accurate enough or I just picked the wrong color...

 So...

 1) Has anyone done it before? And if so, do you have a source
 laying around that could get me on the right track?
 2) How does one select the correct color?

 Thanks in advance for your massive replies ;-)

 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@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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-12 Thread Aaron Roberson

I really thought I was publishing as Flash 8. Is it possible to
publish for Flash 9 anyways? Perhaps is is just the detection script
that is requiring Flash 9, in which case the navigation system should
work without it.

Any ideas?

On 9/12/06, Mick G [EMAIL PROTECTED] wrote:

Yeh, it might be overkill to publish as Flash 9 just for a navigation
system.

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


Re: [Flashcoders] Webcam color tracking

2006-09-12 Thread Alias™

Yeah, I've done some work with it.

The trick is to apply some contrast filters to reduce the colour depth, and
be a bit more picky about getting your source colour. You can do the
getColourBoundsRect thing, but it's still pretty inaccurate though.

Alias

On 12/09/06, Serge Jespers [EMAIL PROTECTED] wrote:


Hey guys,

I was wondering if anyone has already tried webcam color tracking
inside Flash 8 or 9...? So not the difference motion tracking that
you see everywhere but tracking one particular color. Or I should say
range of colors...

I started out with getColorBoundsRect but that doesn't seem to be
accurate enough or I just picked the wrong color...

So...

1) Has anyone done it before? And if so, do you have a source laying
around that could get me on the right track?
2) How does one select the correct color?

Thanks in advance for your massive replies ;-)

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@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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-12 Thread Ryan Potter
8

-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


RE: [Flashcoders] Site Check Please

2006-09-12 Thread Ryan Potter
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


RE: [Flashcoders] Re: inline images in a textarea

2006-09-12 Thread Keith Reinfeld
This maybe the component you are referring to: 

http://home.tiscali.nl/~erikwe/component/TextFieldExtension.mxp 


HTH, 

-Keith 
http://home.mn.rr.com/keithreinfeld 
 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Marcelo
Volmaro
Sent: Tuesday, September 12, 2006 2:30 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Re: inline images in a textarea

They measure the width of each character and then insert spaces where the  
image should be placed. Then the image is attached onto a movieclip using  
as a coordinates the sum of the width of all the characters in one line.

If the text spans into multiple lines, that´s no problem neither. You know  
the width of the text field, so you can check where the text will span,  
and measuring the height of a textline, add that space to the y coord.

Easy? No. Doable? Yes.
In fact, i remember now a component that does exactly that... don´t  
remember the name, but something with emoticons and flash :)

Regards,

On Tue, 12 Sep 2006 15:43:23 -0300, Rich Rodecker [EMAIL PROTECTED]  
wrote:

 wierd...how do you suppose they did it here then?:

 http://www.mambers.com/chat/preloader.swf

 i thought about picking the string apart and piecign together some new
 movieclips/text fields to display the content, but that would get crazy  
 when
 the text spans multiple lines.  the link above handles it pretty well
 though.



 On 9/8/06, Marcelo Volmaro [EMAIL PROTECTED] wrote:

 You can´t do that because flash doesn´t support images as in-line
 elements, only as block elements.

 On Fri, 08 Sep 2006 17:30:43 -0300, Rich Rodecker [EMAIL PROTECTED]
 wrote:

  thanks...its not the text thats going to the next line though...the  
 text
  is
  all appearing on one line, but the image is appearing on the next.
 
  so for instance when the image is supposed to be in the middle of the
  line
  of text:
 
  hey there img src=http://www.thewhole9.com/chat/smilies/smile.jpg;
  width=19 height=19 VSPACE=0 HSPACE=0 / hows it going?
 
  is turning into this (visually anyway, the html is still correct in  
 the
  textarea):
  hey there hows it going?
  img src=http://www.thewhole9.com/chat/smilies/smile.jpg; width=19
  height=19 VSPACE=0 HSPACE=0 /
 
  does that make sense?  thee image is appearing on the next line, after
  the
  line of text when it should be right in the middle.
 
  On 9/8/06, Lori Hutchek [EMAIL PROTECTED] wrote:
 
  Check that you are setting this VSPACE=0 HSPACE=0 it's the  
 vertical
  and horizontal space around the image which may be pushing the text  
 to
  next line
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of Rich
  Rodecker
  Sent: Friday, September 08, 2006 12:55 PM
  To: Flashcoders mailing list
  Subject: [Flashcoders] Re: inline images in a textarea
 
  hmmm..anyone?  i know i've seen it done a couple of times, but I'm
  pretty
  stuck.
 
 
 
  On 9/7/06, Rich Rodecker [EMAIL PROTECTED] wrote:
  
   ok, i know working with images in a text area is only going to lead
 me
  to
   heartache, but I've seen this done and if anyone can point me in  
 the
  right
   direction that would be awesome.
  
   I have a chat app that im building with support for emoticons.
  everyhting
   works great except the smiley image always appears on the next line
  after
   the text, so I wind up with something like:
  
   here is my smiley
   :)
  
   when i really want:
  
   here is :) my smiley
  
   The one quirk i can see that might cause some wierdness is that i  
 am
   setting the contents of the textarea using the .text property,  
 though
  the
   textarea is set to html = true and everything renders out ok.  I  
 dont
  want
   to use .htmlText because I'm letting the user choose any font, and
  htmlText
   wont seem to render without the text embedded.
  
  
  
  ___
  Flashcoders@chattyfig.figleaf.com
  To change your subscription options or search the archive:
  http://chattyfig.figleaf.com/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



 --
 _
 Marcelo Volmaro
 

[Flashcoders] ns.onStatus calling a function

2006-09-12 Thread Christian Pugliese

can't I call a function inside a ns.onStatus ?
ie:

ns.onStatus = function(info) {
   if(info.code == NetStream.Play.Start) {
  trace(info.code);
   callTheFunction();
   }
}

the trace line executes, an any other event occurs normally, but the 
callTheFunction() is never called?


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Webcam color tracking

2006-09-12 Thread Serge Jespers
not the difference motion tracking that you see everywhere but  
tracking one particular color

Thanks tho...





http://www.adobe.com/devnet/flash/articles/webcam_motion.html




___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Webcam color tracking

2006-09-12 Thread Serge Jespers

Interesting...

So you didn't use getColorBoundsRect?
Did you 'walk through' all pixels then? Or how exactly do you search  
for the color?


Serge



Yeah, I've done some work with it.

The trick is to apply some contrast filters to reduce the colour  
depth, and

be a bit more picky about getting your source colour. You can do the
getColourBoundsRect thing, but it's still pretty inaccurate though.

Alias


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] ns.onStatus calling a function

2006-09-12 Thread Johannes Nel

its a scope issue, try delegating the onstatus function

On 9/12/06, Christian Pugliese [EMAIL PROTECTED] wrote:


can't I call a function inside a ns.onStatus ?
ie:

ns.onStatus = function(info) {
if(info.code == NetStream.Play.Start) {
   trace(info.code);
callTheFunction();
}
}

the trace line executes, an any other event occurs normally, but the
callTheFunction() is never called?

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

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





--
j:pn
http://www.lennel.org
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] [MTASC] Crashes on Point.add method ?

2006-09-12 Thread Jeroen Beckers

Hi List!

I use FlashDevelop to write my classes, and I use MTASC as bug-checker 
in FlashDevelop. I am working on a little 3d experiment and 
(apparently), I use the flash.geom.Point class. (I guess the BitmapData 
class uses the Point class, 'cause I'm not using it in my class...). 
Now, the problem is, I get an error:


C:\Program Files\Macromedia\Flash 8\en\First 
Run\Classes\FP8/flash/geom/Point.as:

Line 21: characters 17-20 : parse error:  Unexpected add

The 'add' refers to the Point.add method and I guess MTASC is having 
some trouble with the (old, not-supported) add-logical operator that's 
not supported anymore in FP8 or something... (I hope this sentence makes 
sense to you guys).


The question is: Why am I getting this error?

Greets,
Jeroen Beckers
http://www.dauntless.be
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] ns.onStatus calling a function

2006-09-12 Thread John Grden

it's a scope issue.  ns object doesn't know about calltheFunction()

use Delegate

import mx.utils.Delegate;

...later in your code

ns.onStatus = Delegate.create(this, myCustomStatusMethod);

private function myCustomStatusMethod(evtObj:Object):Void
{
trace(evtObj.info);
f(evtObj.code == NetStream.Play.Start) {
  callTheFunction();
  }
}

hth,

jpg

On 9/12/06, Christian Pugliese [EMAIL PROTECTED] wrote:


can't I call a function inside a ns.onStatus ?
ie:

ns.onStatus = function(info) {
   if(info.code == NetStream.Play.Start) {
  trace(info.code);
   callTheFunction();
   }
}

the trace line executes, an any other event occurs normally, but the
callTheFunction() is never called?

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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


Re: [Flashcoders] ns.onStatus calling a function

2006-09-12 Thread eka

Hello :)

where is your function ? :)

var write = function ( message ) {
   trace(  + message) ;
}

ns.onStatus = function(info) {
  if (info.code == NetStream.Play.Start)
  {
  write( info.code ) ;
  }
}


???

EKA+ :)


2006/9/12, Christian Pugliese [EMAIL PROTECTED]:


can't I call a function inside a ns.onStatus ?
ie:

ns.onStatus = function(info) {
if(info.code == NetStream.Play.Start) {
   trace(info.code);
callTheFunction();
}
}

the trace line executes, an any other event occurs normally, but the
callTheFunction() is never called?

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Webcam color tracking

2006-09-12 Thread Serge Jespers

Well... I need to be able to track a LED light.
I want to be able to track the position of the light to substitute a  
mouse...


Serge


depending on what you want to do, I've converted stuff to black and  
white
(thank you keith peters) for easier tacking.  Alias' suggestion is  
in the

same vein of thought


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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 Size / Scaling on IE Windows Mobile

2006-09-12 Thread Erik Bianchi
Hey list,

 

I'm trying to port an app to IE running on Windows Mobile 5.0, but I'm
fighting with the IE renderer.

 

I can't seem to get something to open perfectly in the browser without any
scroll bars. I can size it just right so the vertical scroll bars aren't
visible, but anytime I try to size my swf where the scroll bar would
normally be displayed it automatically scales it down to fit inside the
window. In other words even if I make something 800 pixels wide, inside of
horizontal scroll bars being display, IE just smushes it.

 

Is there a way to disable or work around this?

 

Also, it's been a while since I've done mobile dev, but there use to be a
way to make Flash content open standalone or full screen using a 3rd party
tool, but I can't remember the name of it?

 

Thanks!

 

-erik

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] {OT} Job Postings?

2006-09-12 Thread Chris Allen

I totally agree with John. Either you put up with what your city has
to offer, try to get people to move, or you go after telecommuting
talent. I'm based in Boston and we have a pretty big pool of talented
Flash/Flex developers and it's still hard to find people that are
willing to change jobs or are looking for work. Working with folks
remotely is really working well for my company.

Another great example of a success story is the Red5 project that John
and I are running. The lead developer Luke is based in Thailand, John
lives in Florida, Joachim is in Germany, Steven is in China,
Dominick's in New York etc... we are still able to pull this thing off
being in totally different places. In fact I think it makes our
project possible, because there's no way we would have found these
dedicated and talented people living in one city.

-Chris

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


Re: [Flashcoders] [MTASC] Crashes on Point.add method ?

2006-09-12 Thread slangeberg

It is really weird how developers either find or fix problems/ issues at the
same time as others... This should be a topic for research. -- I was just
dealing with this today, and after some poking around discovered that the
compiler is set to build to FP7 by default (even if you're not using MTASC).

Project - Properties - Movie tab - Target version - Flash player 8

Should do it!

Scott


On 9/12/06, Jeroen Beckers [EMAIL PROTECTED] wrote:


Hi List!

I use FlashDevelop to write my classes, and I use MTASC as bug-checker
in FlashDevelop. I am working on a little 3d experiment and
(apparently), I use the flash.geom.Point class. (I guess the BitmapData
class uses the Point class, 'cause I'm not using it in my class...).
Now, the problem is, I get an error:

C:\Program Files\Macromedia\Flash 8\en\First
Run\Classes\FP8/flash/geom/Point.as:
Line 21: characters 17-20 : parse error:  Unexpected add

The 'add' refers to the Point.add method and I guess MTASC is having
some trouble with the (old, not-supported) add-logical operator that's
not supported anymore in FP8 or something... (I hope this sentence makes
sense to you guys).

The question is: Why am I getting this error?

Greets,
Jeroen Beckers
http://www.dauntless.be
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

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





--

: : ) Scott
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Job posting: Flash/actionscript coder for Juniper Webcraft

2006-09-12 Thread Paul Novitski
We're looking for a Flash/actionscript developer available now to 
work on a short-term project.


Timing:  Immediate, with a hard completion deadline of October 15, 2006.

Locale:  We're located in the North American Pacific timezone (GMT 
-8) but are willing to consider fluent English-speaking workers elsewhere.


The project is a user interface to be used by the general public to 
design garments by selecting and coloring component parts.  The GUI 
will include drag  drop, coloring image segments from a palette, 
radio buttons, list selection, tab controls, and text input.


Product details will be delivered to Flash from PHP/MySQL.

We are already preparing all of the artwork, specifying the details 
of the user interface, and writing the PHP side.  We're not looking 
for a Flash art designer but rather for someone who knows 
actionscript and Flash technical development and who can create the 
Flash stage, script the user interface, and script the Flash side of 
the dialog with PHP.


We want the application to render incrementally in thin slices to 
provide the user with immediate response and to make loading 
messages unnecessary, even on dial-up.


If you're interested and available, please contact us ASAP with a 
link to a recent example of your work we can assess -- ideally a 
Flash app that's in dialog with both a server-side app and a human 
user, plus a text sample of your actionscripting style.


Regards,

Paul Novitski  Julian Hall
Juniper Webcraft Ltd.
http://juniperwebcraft.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] Flash Size / Scaling on IE Windows Mobile

2006-09-12 Thread Harald Kobler
Hi Erik,

I recently built a small Pocket PC application for IE.  The only way I found
to eliminate both scroll bars is to set the View menu option in IE to One
Column otherwise I can't get rid of the horizontal scrollbar.  I also
experimented with various size parameters and scaling to determine the
optimal setting for my needs.  Here they are:

object width=235 height=243 id=SnappMX_FE ... 
param name=movie
value=SnappMX_FE.swf?snappServer=CFscreenId=6scaleX=160scaleY=160applic
ationWidth=290applicationHeight=301 /

I'm currently using a Dell Axim X51V for testing which supports VGA.
Interestingly this required me to set my scaleX / Y values to 160 to scale
the movie down to 80% of its original size.  If I open this application in a
desktop web browser it is actually scaled to 160% so I only see one corner
of the UI.

The applicationWidth of 290 and applicationHeight of 301 allowed me to
display the entire screen without the need for any scrolling.

One pitfall that I found was that i couldn't make use of full screen mode
since my application needs to access the virtual keyboard for data entry and
I haven't found any way to programmatically access it.

Sincerely,

Harald M. Kobler

CTO, Netcentrics Corporation
www.snappmx.com


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Erik Bianchi
Sent: Tuesday, September 12, 2006 2:35 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Flash Size / Scaling on IE Windows Mobile


Hey list,



I'm trying to port an app to IE running on Windows Mobile 5.0, but I'm
fighting with the IE renderer.



I can't seem to get something to open perfectly in the browser without any
scroll bars. I can size it just right so the vertical scroll bars aren't
visible, but anytime I try to size my swf where the scroll bar would
normally be displayed it automatically scales it down to fit inside the
window. In other words even if I make something 800 pixels wide, inside of
horizontal scroll bars being display, IE just smushes it.



Is there a way to disable or work around this?



Also, it's been a while since I've done mobile dev, but there use to be a
way to make Flash content open standalone or full screen using a 3rd party
tool, but I can't remember the name of it?



Thanks!



-erik

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

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.0.405 / Virus Database: 268.12.3/446 - Release Date: 9/12/2006

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.0.405 / Virus Database: 268.12.3/446 - Release Date: 9/12/2006

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] certificate problem in a desktop application

2006-09-12 Thread Céline Nguyen
I don't use browsers because it's supposed to be an .exe in the end, but 
interestingly, I have tested on both Firefox and IE, and I have noticed that 
when I install permanently the certificate with Firefox, then, when I run 
the .exe there is no communication with the https page, and there's no 
communication when I complile the code and run it from flash, whereas, when 
I use IE and install the certificate, then the .exe works and also the swf 
compiled and tested withing the flash environment.


so that I must conclude that the certificate used in Flash and IE use the 
same store, or something similar. But not Firefox and Flash.

Strange, no ?


- Original Message - 
From: Kevin Aebig [EMAIL PROTECTED]

To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com
Sent: Tuesday, September 12, 2006 3:41 PM
Subject: RE: [Flashcoders] certificate problem in a desktop application


I'm guessing that the call is getting captured silently within those
sandboxes.

What browser are you using? Have you tried both IE and Firefox?

!k

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Céline
Nguyen
Sent: Tuesday, September 12, 2006 12:29 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] certificate problem in a desktop application

Yes I am trying to figure out how to do this.  Any ideas ?
Do you know why a browser window running the application displays the
security pop-up windows whereas the flash player nor the zinc .exe does not
displays the same security pop-up, and don't even reach the https server ?
(I trace an httpStatus 100 meaning flash error)



- Original Message - 
From: Kevin Aebig [EMAIL PROTECTED]

To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com
Sent: Tuesday, September 12, 2006 1:49 PM
Subject: RE: [Flashcoders] certificate problem in a desktop application


I'd look at doing an installer. That would probably be on of the easiest
routes and would be guaranteed to work.

!k

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Céline
Nguyen
Sent: Tuesday, September 12, 2006 10:11 AM
To: Flashcoders mailing list
Subject: [Flashcoders] certificate problem in a desktop application

Hello,

I have a strange certificate problem with Flash8.
I am building a flash app that runs on local computers. The app uses
LoadVars and sendAndLoad methods to send and load parameters to a distant
php page in HTTPS.
I have configured the global security panel of the flash player to add the
entire folder of my flash application, and I have added a cross domain
policy file on the https servers that says allow-access-from domain='*'
When I run the application within a browser, the security pop-up appears
asking to trust the https location and once it's done, but when I run the
.exe file created with ZINC, no pop-up appears and the http status sends a
flash error message.
I have dicovered that I must install the certificate on my computer in order

for my application to work properly.
But can I ask every end user to manually install the certificate ? I think
it's not really secure to let them know about the https adress nor elegant
to make them do this.

My questions then are :
Is there a way in Actionscript to make the security pop-up appear within the

exe application ? Or is there a way to build an installer with ZINC and
configure it so that it installs a certificate (.cer) on the destination
computer ? or is there a more simple solution ? Will the registration of the

https location solve my problem ?

Best,
Celine

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Flash Size / Scaling on IE Windows Mobile

2006-09-12 Thread Erik Bianchi
Hey thanks for the info Harald.

I fiddled around with it some more and on the Verizon XV6700 I got it pretty
locked at 240w x 245h running in default mode with leftMargin and topMargin
set to 0. Nice and tight all the way around the bottom and top nav bars.

It seems that there is some play in the scroll bar logic so that if you go
below a certain point, the vertical scroll bar space will appear but not the
actual scroll bars (weird).

Thanks again!

-erik


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Harald
Kobler
Sent: Tuesday, September 12, 2006 3:13 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Flash Size / Scaling on IE Windows Mobile

Hi Erik,

I recently built a small Pocket PC application for IE.  The only way I found
to eliminate both scroll bars is to set the View menu option in IE to One
Column otherwise I can't get rid of the horizontal scrollbar.  I also
experimented with various size parameters and scaling to determine the
optimal setting for my needs.  Here they are:

object width=235 height=243 id=SnappMX_FE ... 
param name=movie
value=SnappMX_FE.swf?snappServer=CFscreenId=6scaleX=160scaleY=160applic
ationWidth=290applicationHeight=301 /

I'm currently using a Dell Axim X51V for testing which supports VGA.
Interestingly this required me to set my scaleX / Y values to 160 to scale
the movie down to 80% of its original size.  If I open this application in a
desktop web browser it is actually scaled to 160% so I only see one corner
of the UI.

The applicationWidth of 290 and applicationHeight of 301 allowed me to
display the entire screen without the need for any scrolling.

One pitfall that I found was that i couldn't make use of full screen mode
since my application needs to access the virtual keyboard for data entry and
I haven't found any way to programmatically access it.

Sincerely,

Harald M. Kobler

CTO, Netcentrics Corporation
www.snappmx.com


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Erik Bianchi
Sent: Tuesday, September 12, 2006 2:35 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Flash Size / Scaling on IE Windows Mobile


Hey list,



I'm trying to port an app to IE running on Windows Mobile 5.0, but I'm
fighting with the IE renderer.



I can't seem to get something to open perfectly in the browser without any
scroll bars. I can size it just right so the vertical scroll bars aren't
visible, but anytime I try to size my swf where the scroll bar would
normally be displayed it automatically scales it down to fit inside the
window. In other words even if I make something 800 pixels wide, inside of
horizontal scroll bars being display, IE just smushes it.



Is there a way to disable or work around this?



Also, it's been a while since I've done mobile dev, but there use to be a
way to make Flash content open standalone or full screen using a 3rd party
tool, but I can't remember the name of it?



Thanks!



-erik

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

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.0.405 / Virus Database: 268.12.3/446 - Release Date: 9/12/2006

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.0.405 / Virus Database: 268.12.3/446 - Release Date: 9/12/2006

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Re: inline images in a textarea

2006-09-12 Thread Rich Rodecker

that doesnt look like it does anything with inline images, that is a pretty
cool component.

On 9/12/06, Keith Reinfeld [EMAIL PROTECTED] wrote:


This maybe the component you are referring to:

http://home.tiscali.nl/~erikwe/component/TextFieldExtension.mxp


HTH,

-Keith
http://home.mn.rr.com/keithreinfeld



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Marcelo
Volmaro
Sent: Tuesday, September 12, 2006 2:30 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Re: inline images in a textarea

They measure the width of each character and then insert spaces where the
image should be placed. Then the image is attached onto a movieclip using
as a coordinates the sum of the width of all the characters in one line.

If the text spans into multiple lines, that´s no problem neither. You know
the width of the text field, so you can check where the text will span,
and measuring the height of a textline, add that space to the y coord.

Easy? No. Doable? Yes.
In fact, i remember now a component that does exactly that... don´t
remember the name, but something with emoticons and flash :)

Regards,

On Tue, 12 Sep 2006 15:43:23 -0300, Rich Rodecker [EMAIL PROTECTED]
wrote:

 wierd...how do you suppose they did it here then?:

 http://www.mambers.com/chat/preloader.swf

 i thought about picking the string apart and piecign together some new
 movieclips/text fields to display the content, but that would get crazy
 when
 the text spans multiple lines.  the link above handles it pretty well
 though.



 On 9/8/06, Marcelo Volmaro [EMAIL PROTECTED] wrote:

 You can´t do that because flash doesn´t support images as in-line
 elements, only as block elements.

 On Fri, 08 Sep 2006 17:30:43 -0300, Rich Rodecker [EMAIL PROTECTED]
 wrote:

  thanks...its not the text thats going to the next line though...the
 text
  is
  all appearing on one line, but the image is appearing on the next.
 
  so for instance when the image is supposed to be in the middle of the
  line
  of text:
 
  hey there img src=http://www.thewhole9.com/chat/smilies/smile.jpg;
  width=19 height=19 VSPACE=0 HSPACE=0 / hows it going?
 
  is turning into this (visually anyway, the html is still correct in
 the
  textarea):
  hey there hows it going?
  img src=http://www.thewhole9.com/chat/smilies/smile.jpg; width=19
  height=19 VSPACE=0 HSPACE=0 /
 
  does that make sense?  thee image is appearing on the next line,
after
  the
  line of text when it should be right in the middle.
 
  On 9/8/06, Lori Hutchek [EMAIL PROTECTED] wrote:
 
  Check that you are setting this VSPACE=0 HSPACE=0 it's the
 vertical
  and horizontal space around the image which may be pushing the text
 to
  next line
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of Rich
  Rodecker
  Sent: Friday, September 08, 2006 12:55 PM
  To: Flashcoders mailing list
  Subject: [Flashcoders] Re: inline images in a textarea
 
  hmmm..anyone?  i know i've seen it done a couple of times, but I'm
  pretty
  stuck.
 
 
 
  On 9/7/06, Rich Rodecker [EMAIL PROTECTED] wrote:
  
   ok, i know working with images in a text area is only going to
lead
 me
  to
   heartache, but I've seen this done and if anyone can point me in
 the
  right
   direction that would be awesome.
  
   I have a chat app that im building with support for emoticons.
  everyhting
   works great except the smiley image always appears on the next
line
  after
   the text, so I wind up with something like:
  
   here is my smiley
   :)
  
   when i really want:
  
   here is :) my smiley
  
   The one quirk i can see that might cause some wierdness is that i
 am
   setting the contents of the textarea using the .text property,
 though
  the
   textarea is set to html = true and everything renders out ok.  I
 dont
  want
   to use .htmlText because I'm letting the user choose any font, and
  htmlText
   wont seem to render without the text embedded.
  
  
  
  ___
  Flashcoders@chattyfig.figleaf.com
  To change your subscription options or search the archive:
  http://chattyfig.figleaf.com/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
  

RE: [Flashcoders] Re: inline images in a textarea

2006-09-12 Thread Keith Reinfeld
There are none so blind...


-Keith 
http://home.mn.rr.com/keithreinfeld 
 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rich
Rodecker
Sent: Tuesday, September 12, 2006 6:32 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Re: inline images in a textarea

that doesnt look like it does anything with inline images, that is a pretty
cool component.

On 9/12/06, Keith Reinfeld [EMAIL PROTECTED] wrote:

 This maybe the component you are referring to:

 http://home.tiscali.nl/~erikwe/component/TextFieldExtension.mxp


 HTH,

 -Keith
 http://home.mn.rr.com/keithreinfeld



 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Marcelo
 Volmaro
 Sent: Tuesday, September 12, 2006 2:30 PM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] Re: inline images in a textarea

 They measure the width of each character and then insert spaces where the
 image should be placed. Then the image is attached onto a movieclip using
 as a coordinates the sum of the width of all the characters in one line.

 If the text spans into multiple lines, that´s no problem neither. You know
 the width of the text field, so you can check where the text will span,
 and measuring the height of a textline, add that space to the y coord.

 Easy? No. Doable? Yes.
 In fact, i remember now a component that does exactly that... don´t
 remember the name, but something with emoticons and flash :)

 Regards,

 On Tue, 12 Sep 2006 15:43:23 -0300, Rich Rodecker [EMAIL PROTECTED]
 wrote:

  wierd...how do you suppose they did it here then?:
 
  http://www.mambers.com/chat/preloader.swf
 
  i thought about picking the string apart and piecign together some new
  movieclips/text fields to display the content, but that would get crazy
  when
  the text spans multiple lines.  the link above handles it pretty well
  though.
 
 
 
  On 9/8/06, Marcelo Volmaro [EMAIL PROTECTED] wrote:
 
  You can´t do that because flash doesn´t support images as in-line
  elements, only as block elements.
 
  On Fri, 08 Sep 2006 17:30:43 -0300, Rich Rodecker [EMAIL PROTECTED]
  wrote:
 
   thanks...its not the text thats going to the next line though...the
  text
   is
   all appearing on one line, but the image is appearing on the next.
  
   so for instance when the image is supposed to be in the middle of the
   line
   of text:
  
   hey there img src=http://www.thewhole9.com/chat/smilies/smile.jpg;
   width=19 height=19 VSPACE=0 HSPACE=0 / hows it going?
  
   is turning into this (visually anyway, the html is still correct in
  the
   textarea):
   hey there hows it going?
   img src=http://www.thewhole9.com/chat/smilies/smile.jpg; width=19
   height=19 VSPACE=0 HSPACE=0 /
  
   does that make sense?  thee image is appearing on the next line,
 after
   the
   line of text when it should be right in the middle.
  
   On 9/8/06, Lori Hutchek [EMAIL PROTECTED] wrote:
  
   Check that you are setting this VSPACE=0 HSPACE=0 it's the
  vertical
   and horizontal space around the image which may be pushing the text
  to
   next line
  
   -Original Message-
   From: [EMAIL PROTECTED]
   [mailto:[EMAIL PROTECTED] On Behalf Of Rich
   Rodecker
   Sent: Friday, September 08, 2006 12:55 PM
   To: Flashcoders mailing list
   Subject: [Flashcoders] Re: inline images in a textarea
  
   hmmm..anyone?  i know i've seen it done a couple of times, but I'm
   pretty
   stuck.
  
  
  
   On 9/7/06, Rich Rodecker [EMAIL PROTECTED] wrote:
   
ok, i know working with images in a text area is only going to
 lead
  me
   to
heartache, but I've seen this done and if anyone can point me in
  the
   right
direction that would be awesome.
   
I have a chat app that im building with support for emoticons.
   everyhting
works great except the smiley image always appears on the next
 line
   after
the text, so I wind up with something like:
   
here is my smiley
:)
   
when i really want:
   
here is :) my smiley
   
The one quirk i can see that might cause some wierdness is that i
  am
setting the contents of the textarea using the .text property,
  though
   the
textarea is set to html = true and everything renders out ok.  I
  dont
   want
to use .htmlText because I'm letting the user choose any font, and
   htmlText
wont seem to render without the text embedded.
   
   
   
   ___
   Flashcoders@chattyfig.figleaf.com
   To change your subscription options or search the archive:
   http://chattyfig.figleaf.com/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:
   

[Flashcoders] Local Connection - max connections on a Mac?

2006-09-12 Thread Joe Mease
I recently built a iTunes similar html/Flash hybrid site, where each song
result has an embedded flash object sample player, based on streaming FLVs.

Using the mediator pattern, I have created a single flash component that
manages the streaming audio, through a single netStream object. And each
sampler instance sends data via the LocalConnection object.

The problem I am seeing, is that, on a mac, only the first 7 results
communicate properly with the mediator object. We have resorted he results,
and still only the first 7 results communicate properly.

Is there a known limitation of how many LocalConnection objects can co-exist
on a mac?

Thanks for the help!

Joe

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] [MTASC] Crashes on Point.add method ?

2006-09-12 Thread Jeroen Beckers

Thanks, Scott! That did it :-).

slangeberg wrote:
It is really weird how developers either find or fix problems/ issues 
at the
same time as others... This should be a topic for research. -- I was 
just

dealing with this today, and after some poking around discovered that the
compiler is set to build to FP7 by default (even if you're not using 
MTASC).


Project - Properties - Movie tab - Target version - Flash player 8

Should do it!

Scott


On 9/12/06, Jeroen Beckers [EMAIL PROTECTED] wrote:


Hi List!

I use FlashDevelop to write my classes, and I use MTASC as bug-checker
in FlashDevelop. I am working on a little 3d experiment and
(apparently), I use the flash.geom.Point class. (I guess the BitmapData
class uses the Point class, 'cause I'm not using it in my class...).
Now, the problem is, I get an error:

C:\Program Files\Macromedia\Flash 8\en\First
Run\Classes\FP8/flash/geom/Point.as:
Line 21: characters 17-20 : parse error:  Unexpected add

The 'add' refers to the Point.add method and I guess MTASC is having
some trouble with the (old, not-supported) add-logical operator that's
not supported anymore in FP8 or something... (I hope this sentence makes
sense to you guys).

The question is: Why am I getting this error?

Greets,
Jeroen Beckers
http://www.dauntless.be
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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