[Flashcoders] OT Job in Baltimore

2008-10-20 Thread Jessica Svehla
I am looking to connect with Flash Developers interested in full-time  
opportunities in Baltimore. My client, an ad agency, is looking for  
developers with very strong Flash development skills - specifically  
Action Script 2 and/or 3. Skills in PHP, Java Script and/or MySQL are  
a plus. Please contact me directly (410-244-0944) and send a copy of  
your resume as well as samples to [EMAIL PROTECTED]


Thanks!


Jessica Svehla
Creative, Editorial and Marketing Recruiter
[EMAIL PROTECTED]
410-244-0944
The BOSS Group - where talent and opportunity meet
http://www.thebossgroup.com
http://www.creativeconnects.com
201 N. Charles Street
Suite 1903
Baltimore, MD 21201
410-244-6747 (fax)

Connect with me on Linked In - http://www.linkedin.com/in/jessicasvehla

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


[Flashcoders] Actionscripter 3.0 developers

2008-10-20 Thread LSI001
It seems I may have gotten off to a bad introduction last week.  So with
your indulgence let me start over..

 

I am a technical recruiter based in the Washington DC area.  I have been a
recruiter/owner for 33 years.  I ONLY work the developer side of technical
recruiting.  Although I cannot promise absolutely that if we work together
it will be perfect, but I can promise I will always treat candidates with
the respect everyone deserves.

 

Again, I appologise if last week I causesd a stir, that was not my
intention.  

 

If you have not noticed, the experience of good Actionscript and Flex
developers at least here in DC is elusive.  In my clients case they really
wants someone on site which only makes things more difficult.

 

If this does not satisfy the proper introduction aspect of who I am, 

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


[Flashcoders] Actionscripter 3.0 developers

2008-10-20 Thread LSI001
It seems I may have gotten off to a bad introduction last week.  So with
your indulgence let me start over..

 

I am a technical recruiter based in the Washington DC area.  I have been a
recruiter/owner for 33 years.  I ONLY work the developer side of technical
recruiting.  Although I cannot promise absolutely that if we work together
it will be perfect, but I can promise I will always treat candidates with
the respect everyone deserves.

 

Again, I apologize if last week I caused a stir, that was not my intention.


 

If you have not noticed, the experience of good Actionscript and Flex
developers at least here in DC is elusive.  In my clients case they really
wants someone on site which only makes things more difficult.

 

Hopefully this will satisfy the skeptics that I am a real person, not just
looking to fill a database.

 

That said.  If anyone KNOWS of someone looking for either a permanent or a
contract position in the suburbs of DC I would be grateful.

 

Thanks in advance

 

-Larry Stein

___ 

LSI, Inc 
Professional Recruiting Consultant 
Larry Stein 
[EMAIL PROTECTED]  

  

 

 

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


RE: [Flashcoders] ComBox Box - Font Issues

2008-10-20 Thread Karim Beyrouti
I am setting everything before I add the data. However I have sorted the
issue out by setting the global style. I don't think its optimal - but it
works.

Here is my working code for reference:


var tClass:Class=
getDefinitionByName("GothamMedium") as Class;
Font.registerFont(tClass);

var tf:TextFormat   = new TextFormat();
tf.font = "Gotham Medium";
tf.size = 12;
tf.bold = false;

cmb_mc.dropdown.setRendererStyle("embedFonts" ,
true);
cmb_mc.dropdown.setRendererStyle("textFormat" , tf);
cmb_mc.textField.setStyle("fontFamily" , "Gotham
Medium" );
cmb_mc.textField.setStyle("embedFonts" , true );

dob_txt.embedFonts  = true;
dob_txt.setTextFormat(tf);
StyleManager.setStyle("textFormat" , tf)




Many thanks for all your help


Karim
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Glen Pike
Sent: 19 October 2008 21:59
To: Flash Coders List
Subject: Re: [Flashcoders] ComBox Box - Font Issues

Hi,

Are you setting these values before or after you add the data?  That 
may have a bearing.  
   
Have a look at this article:
   

http://blogs.adobe.com/pdehaan/2008/03/using_embedded_fonts_with_the_3.html

Which may / may not help?

Glen
   
T

karim beyrouti wrote:
> Hi Glen - thanks for the answer.. Yep - i remember that one - I tried 
> this at first and sadly it did not work...
>
> however to make things stranger - the fonts work in the textfield when 
> i use the keys to select from the drop down (then mouse selection 
> works). But it does not work initially.
>
> hmmm...
>
>
>
>
> On 18 Oct 2008, at 17:38, Glen Pike wrote:
>
>> Hi,
>>
>>   Try putting a text field off the stage set and embed your chosen 
>> font into it - that used to do the trick with AS2.
>>
>>   Glen
>>
>> karim beyrouti wrote:
>>> Hi list  -
>>>
>>> I am using the flash CS3 components - and have hit a little snag - 
>>> when testing in the IDE ( or just running the SWF ) all the fonts 
>>> show up fine - no problem. However the moment the site goes in the 
>>> browser - the font does not show up in the ComboBox textField, 
>>> however they show up no in the dropdown menu. I have embedded the 
>>> font in my library - and well - i have no clue as to why this is not 
>>> working in the browser.
>>>
>>> this is the code i am using to format the combobox:
>>>
>>> 
>>>var tf:TextFormat = new TextFormat();
>>>tf.font = "Gotham Medium";
>>>tf.size = 12;
>>>tf.bold = false;
>>>
>>>cmb_mc.dropdown.setRendererStyle("embedFonts", true);
>>>cmb_mc.dropdown.setRendererStyle("textFormat", tf);
>>>   cmb_mc.textField.setStyle("embedFonts", true);
>>>cmb_mc.textField.setStyle("textFormat", tf);
>>>
>>> 
>>>
>>>
>>> Kind regards
>>>
>>>
>>>
>>> Karim Beyrouti
>>> ___
>>> Flashcoders mailing list
>>> Flashcoders@chattyfig.figleaf.com
>>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>>
>>>
>>
>> -- 
>>
>> Glen Pike
>> 01326 218440
>> www.glenpike.co.uk 
>>
>> ___
>> Flashcoders mailing list
>> Flashcoders@chattyfig.figleaf.com
>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
>

-- 

Glen Pike
01326 218440
www.glenpike.co.uk 

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

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


[Flashcoders] weird bug in flash player 10 - firefox

2008-10-20 Thread Fabio Pinatti
Hello list,

I just saw a too weird bug, in a website that was working fine in all
browsers and flash player 9...

http://www.nakheelharbour.com

There a lot of rendering errors, like the intro, with the upper and bottom
corner of star in a ugly color and line format.. and inside website, when
changes section, it was supposed to do a alpha between background images,
not that greeny horrible thing that is now..

Did anyone already run this problem with FP 10 ? I tested in two pc's using
firefox, on IE it looks fine..

Thanks,
-- 
Fábio Pinatti
:: web.developer
 www.pinatti.com.br
:: 19. 9184.3745 / 3342.1130
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] attachMovie() with non-library-symbols

2008-10-20 Thread strk
On Tue, Oct 14, 2008 at 09:45:56AM +0200, Matthias Dittgen wrote:
> You're talking about AS2?

Talking about SWF8:
http://dailymotion.alice.it/flash/dmplayer/dmplayer.swf

> See here for the answer:
> http://www.peterjoel.com/blog/?archive=2004_01_01_archive.xml

Thank you for the pointer, but reading that article doesn't
help me much. For example, I don't understand if the resulting
SWF from that syntax is expected to contain EXPORT tags or not.

My problem with the dmplayer.swf above is that it ends up 
looking for symbols like 'video_frame':

 ERROR: No export symbol video_frame found in movie dmplayer.swf. 

Which do NOT appear in any EXPORT tag.

> This way you can attach classes that don't have a library symbol but
> extend MovieClip.

You mean it is possible to add entries to the 'symbols library'
trough DOACTION blocks only ? I mean, not something automatically
done by the AS *compiler* but something done by the actual VM/player ?

If so, can you provide the smallest example of such thing ?

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


Re: [Flashcoders] URLStream, POST and requestHeaders

2008-10-20 Thread Peggy Laramie
I will be out of the office from Wednesday, October 15 - Friday, October
17.  Please contact another member of the admission staff at 314-995-7367
or [EMAIL PROTECTED] if you need assistance before next Monday.

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


Re: [Flashcoders] URLStream, POST and requestHeaders

2008-10-20 Thread EECOLOR
I just found out the problem. If you put a value in the 'data' property of
the urlRequest everything starts to work:

*  var r:URLRequest = new URLRequest("http://www.google.com";);
  r.method = URLRequestMethod.POST;
  r.data = 0;

*

Now the request will be sent as post and request headers are sent with it.
Apparently the flash player thinks it is only usefull to check the
URLRequest for additional arguments if the 'data' property is filled.

Greetz Erik

On Mon, Oct 20, 2008 at 1:53 AM, Glen Pike <[EMAIL PROTECTED]>wrote:

> Hi,
>
>   Does your request go out at all?
>
>   Have you used some kind of web-proxy to look at what is going out of your
> Flash across the network - "Charles" http://www.charlesproxy.com/
>
>   Check that the system is not requesting a crossdomain.xml file before
> your request - you may not have problems in the IDE, but maybe in the
> browser / standalone - but FP may not be sending if the x-domain is "not
> working" satisfactorily.
>
>   Glen
>
>
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders