[Flashcoders] Flash Job - high pay, southern california - full time

2007-03-29 Thread Carlos Saenz

Anyone fit the bill?

- Salary: $85 - 95k range
- Southern California (must be local, work on site)
- Full time
- Full benefits, free food on site
- Bonuses
- Skills required: OOP with AS 2.0 and Javascript, AS 3.0 and Flex  
gets bonus points, HTML / CSS / Flash / Cross browser development /  
Debugging


Please provide your email address

Thanks,
-Carlos-
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Sending binary data to server - NO HEADERS

2007-03-26 Thread Carlos Saenz
I am trying to send binary data to a server side script which takes a  
variable called file, and saves it as a binary file.


so if I have a variable in my flash movie myfile, with a value of  
asdf, and I send that to the server, it will make a file on the  
filesystem called myfile, and the contents of it will be asdf


Now, the trick is to send the script an image or video file. I have  
tried the following ways:


1) Using FileReference class (Flash 8)
--- This works with php and move_uploaded_file.
--- This does NOT work the server side script mentioned above. It  
adds headers to the file. Same headers found here:


http://livedocs.adobe.com/flash/8/main/wwhelp/wwhimpl/common/html/ 
wwhelp.htm?context=LiveDocs_Partsfile=2225.html


Namely:
Content-Type: multipart/form-data; boundary=AaB03x
--AaB03x
Content-Disposition: form-data; name=Filedata; filename=example.jpg
Content-Type: application/octet-stream
... contents of example.jpg ...
--AaB03x--

PHP can handle this, the other script cannot. Unfortunately we are  
stuck with the other script. So I looked at different ways to send  
binary data to the server, without using FileReference.



2) Flex Builder 2.

Here we have some new classes. Such as URLRequest and URLLoader,  
where you can use URLLoaderDataFormat.BINARY. This transferred the  
file to the server side script we are stuck with perfectly. No errors  
or problems.


Unfortunately they want a Flash Player 8 solution.


3) Some examples on the web where people have taken a BitmapData  
object in Flash 8 and programmatically convert a bitmap into an array  
of string data which represents pixel data, which is converted on the  
server to an image.
-- Is this method possible with LoadVars to send a binary stream of  
data to a script via POST, which will make it think it's the same as  
a file upload???



Well these are my three options
1) FileReference -- Flash 8 -- Is there a way to eliminate the  
headers its sending by default?
2) Flex Builder 2 - URLLoader class -- Any way to use this in Flash  
Player 8? (Doesn't seem possible)
3) Manually encode binary data into a variable and pass it through  
loadVars making the server think it's a file upload. Possible???


OR

4) Any other possibility I may have overlooked?

Thanks for any help,
-Carlos-
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Apple using Flash for their new retail store reservation system

2005-11-17 Thread Carlos Saenz

Check it out!

http://genius.apple.com/customer/?store=R050

Any news behind the developers?

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


[Flashcoders] Re: attachMovie woes

2005-10-08 Thread Carlos Saenz
I am attaching the dots at a position well within the area of the  
target movieClip.
Also, the dots MUST be loaded into this MC because the MC will be  
programmatically scaled up and moved, and the red dots need to grow  
and move with it.


I just need to know why the width and height of the MC is getting  
messed up. There's no good visible reason.


Thanks,
-Carlos-


On Oct 8, 2005, at 5:56 AM, [EMAIL PROTECTED]  
wrote:



Message: 13
Date: Sat, 8 Oct 2005 12:47:18 +1000
From: Chris Velevitch [EMAIL PROTECTED]
Subject: Re: [Flashcoders] attachMovie woes
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Message-ID:
[EMAIL PROTECTED]
Content-Type: text/plain; charset=ISO-8859-1

It sounds like you are attaching the dots at a position outside of the
area of the target movieclip. Thus the result is the target movieclip
is now bigger.

It might be better if you attached the dots to the parent of the
target clip. That way you are not changing the target clip.

Does that make sense?


Chris
--
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au


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