Archive for March, 2007

AS2 to AS3 Quick Tip: Where is attachMovie?

Thursday, March 29th, 2007

IT’S GONE! (gasp) :-) Ok a little dramatic but here’s the thing. attachMovie doesn’t exist in AS3, and for good reason.

In Flash CS3, draw a box on the stage then convert that box to a MovieClip named Box. In the Linkage dialog (or Advanced section of the Properties dialog), set the linkage to Export for Actionscript. Notice the base class is set to flash.display.MovieClip, which is perfectly fine for this example. Click OK.

We now have a dialog box that basically tells you the class Box doesn’t exist so it will be created for you in the SWF “upon export” (basically…just click OK and move one). :-) This is a nice feature. What it allows you to do is now create instances of this class. So, I return to the question. Where is attachMovie?

Take the following partial code snippet. It basically loops over some dummy data, creates a new Box() instance, sets properties on it, and adds it to the “_root” child list. The boxes will be aligned one after another in a diagonal line.

var data:Object = new Object();
data.rows = 10;
data.columns = 6;

var __x:int = 0;
var __y:int = 0;
var boxTemp:Box;

for(var i:int = 0; i < data.rows; i++){
 boxTemp = new Box();
 boxTemp.x = __x;
 boxTemp.y = __y;
 addChild(boxTemp);

 __y+= 20;
 __x+= 20;
}

That’s it for this quick tip. I was working on some AS3 in Flash CS3 and my mind kept reverting to AS2. I wrote the entire example above with attachMovie and variables x and y (conflicts with the x and y properties of the root display object). :-) My mind had to revert to AS3 in the Flash IDE, which was a bit weird but no biggie.

Look for more of these quick tips. I’ll post’em whenever I get a chance.

Adecco Technical: eLearning Developer

Thursday, March 22nd, 2007

Assignment Title:
eLearning Developer
Project Description:
Developing e-learning courseware and simulations, online help to support software application training.
Daily Responsibilities:
Develop courses (elearning, synchronous) including simulations and graphics and online help to demonstrate software procedures and business process and allow learners to practice.
Please indicate % of travel required: 0%
(more…)

Adobe CS3 Launch Event

Wednesday, March 21st, 2007

Read more: http://www.adobe.com/products/creativesuite/launchevent/

I thought this was under lock and key but I received a newsletter from Multidmedia (creators of Zinc and other cool applications) which had it noted. So, I immediately went to Adobe’s site and sure enough…there was the launch page (including date).

Be there or be square! (always wanted to say that) :-)

Apollo Camp Recordings

Wednesday, March 21st, 2007

Check’em out here:

http://labs.adobe.com/wiki/index.php/Apollo:Camp:03162007

Note:
As of today not all videos are there. More will come soon.

Apollo Alpha is here…

Monday, March 19th, 2007

That’s right…get it while it is hot!

http://www.adobe.com/go/apollo

Flex 3 to run on Flash Player 9

Tuesday, March 6th, 2007

Read more about it here: http://www.onflex.org/ted/2007/01/flex-3-most-important-feature.php.

This is GREAT news. No more “will you please let us build to Flash Player X?” questions for clients. :-)

Flex Community Pulse Survey

Tuesday, March 6th, 2007

http://www.surveymonkey.com/s.asp?u=238523173556

Chime in now and help shape the future of Flex!

Flash Video Project Needs Developer

Monday, March 5th, 2007

Scottsdale company looking for assistance with Flash video project. Project involves synchronizing .jpg images to .flv videos via XML and cue points. This project is on a fairly tight deadline and we need to find a developer as soon as possible. Must have expert level Actionscript experience, Javascript/DHTML/ ASP is a plus. Prefer to have developer work on-site in Scottsdale.

Please send demos of relevant Web sites, resume, current availability and rates to jlee@nruniversity.com.

insario.com: Immediate opening for a Flash Designer and Developer

Monday, March 5th, 2007

Immediate opening for a Flash Designer and Developer

Job Description: Resource will be responsible for understanding project objectives and creating design mockups, storyboarding animations, effects, and transitions, for various web-based projects including complete sites, applications, etc. Will be working with small team to effectively present design ideas, collect feedback, and make design revisions. Will be responsible for converting designs from static images (Photoshop, etc.) into functioning Flash or HTML pages. Will be responsible for maintaining and enhancing existing Flash assets.

Experience: Qualified candidates must have at least 3 years experience designing and developing in Flash and HTML. Must be able to provide a valid portfolio of their work. Should be proficient with Action Script, JavaScript, XML, CSS and Photoshop. Additional development experience with ASP/ASP.NET, DHTML a plus.

Compensation Package Includes:
 > Competitive Salary
 > Bonus
 > Profit Sharing
 > 401(k)
 > Health Insurance
 > Mileage reimbursement
 > Health club

Applicants MUST be located in the greater Phoenix area.


Qualified candidates: Please forward contact information, resume, salary requirements, and samples of your work (PDF, URL, etc.) to jobs at insario.com.

Flex 2.0.1 Style Explorer

Thursday, March 1st, 2007

This was briefly discussed at the meeting this week. The old one was shown but this new one is available and is MUCH better. Covers multiple areas not seen in the old one.

Check it out here: http://www.adobe.com/devnet/flex/samples/style_explorer/.