This looks pretty cool. Box2DAs3 Physics Engine.
(via polygonal labs)
Other physics engines:
Read MoreThis looks pretty cool. Box2DAs3 Physics Engine.
(via polygonal labs)
Other physics engines:
Read MoreHere are the files from my BFPUG and Harvard Flash User Group talks. I can’t upload the applications I showed of Visual i|o work, but here’s everything else.
A lot of the middle slides I didn’t even show, but, used as notes while I was demoing the apps.
Download - 10MB rar file. Extracts to Open Office doc.
Here is a PowerPoint version compressed as a zip.
AS2 Bar Chart – code set up for Eclipse using FDT – to run from Flash IDE – import Main.as and run Main.main(); It also uses SOS for tracing.
Flex Chart Bar Chart example (by Peter deHann) – a great example of how easy it is to chart in Flex. I was going to port the above AS2 example to AS3 – but I’m busy and Flex charting is excellent.
Links to sites I mentioned in the talk:
Patraeus Charts – Iraq by the Numbers
National Geographic Ethanol Story
Can’t post what I showed – but here are some examples of our work:
Alex Dragulescu – Spam Architecture
Martin Wattenberg – Shape of Song
Read More
I put together a page listing all the design patterns meetings and presentations we’ve had so far. Here it is. As you will see, many of the presenters are not sending me their presentations. Keith Peters even claims to have lost his. Unfortunately, I missed the last meeting so I couldn’t bug everyone. Anyway, hopefully soon, this list will be more complete.
Also, credit for the group goes to Sam Robbins for starting the group. Although, even he hasn’t emailed me his presentations.
Read MoreBegins: Wed, 11 Jul 2007 at 7:00 PM
Ends: Wed, 11 Jul 2007 at 8:00 PM
Location:
Brightcove 1 Kendall Sq. Cambridge, MA
Tags: designPatterns flash code
So, linking to a url outside of the swf. Wanted to open the url in the same browser window each time. You’d think that getURL(myURL, “myWindow”) would always open the same window. But, it’s inconsistent. So, you can call JavaScript to force the same window to open – but, the character length of the url has to be a lot shorter for the JavaScript call to work. Anyway, this was a pain, hopefully this will save someone a few hours of mind-numbingly-boring testing.
public function load(url_ : String) : Void {
//this doesn't work if over a certain length
if (url_.length< =165){
//957 works for MIE7 and FireFox - this works for MIE 6.029... (really long version #)
//if (url_.length<=957){
var urlToCall : String;
urlToCall="javascript:var popWin; if (!popWin || popWin.closed) {popWin = window.open('"+url_+"','popWinName')} else {popWin.focus(); popWin.location.replace('"+url_+"');}; void(0);";
getURL (urlToCall);
}else{
//call doesn't happen if over 2041
if (url_.length>2041){
url_=url_.slice(0,2041);
}
getURL(url_, "myWindow");
}
}
Tested on FireFox 2.004. MIE 7 and MIE 6.029 – WinXP. Swf published for Player 7 using MTASC 1.12. Swf embedded using swfObject.
Obviously this not really Flash’s fault but some combination of Flash, JavaScript, and the browser. Browsers suck.
Read MoreBeta of Flex 3 is posted on Labs.
And beta of Player 9 also posted.
The player beta will leverage your computer’s video card for faster rendering (apparently only in full-screen mode). And will cache Flex components, so Flex apps can be deployed as smaller swfs.
Justin has a post on the player here.
Wow – I haven’t posted for a month. So much for the once a week posting resolution. We just moved to a new house – that is my current excuse. Actually it’s a pretty good one. I now paint rooms instead of blog.
Read MoreI posted the files from the Adapter and Facade patterns talk I gave Wednesday. The swfs are totally amazing and there would be no way to create them w/o using design patterns.
Read MoreThere are some excellent and very reasonably priced ($40) Flash workshops this week at New England Institute of Art. Topics include: Experimental AS3, Red5, Flex, and Game Development. Speakers include: Keith Peters, Chris Allen, Joey Lott and more. Good stuff. Check them out here. The workshops are part of the Boston Cyber Arts Festival.
Also, we are moving the Design Patterns group to the 2nd Wednesday of May as a result.
Read MoreBegins: Wed, 09 May 2007 at 7:00 PM
Ends: Wed, 09 May 2007 at 8:00 PM
Location:
Brightcove One Cambridge Ctr Cambridge, MA 02142 US
Link: map to Brightcove
Tags: flash designPatterns