Adobe and Avatar
Posted by David in Adobe on December 22, 2009
Here is a great video describing how Adobe software was used throughout the production of the movie Avatar.
Boeing 787 Dreamliner First Flight
Posted by David in Announcements on December 15, 2009

Today was a big day for The Boeing Company. The much anticipated first flight of the 787 Dreamliner was a success! You can see the video of the first flight below thanks to Ted Patrick.
Boeing 787 First Flight Video from Ted Patrick on Vimeo.
VMware Virtualization Forum 2009
Posted by David in Conferences , VMware on November 10, 2009
![]()
Learned alot of good things at the VMware Virtualization Forum in Garden Grove. It lit the fire on alot of things that I've been wanting to implement and try out for a while now. Now its time to get it done.
First thing on my list is install ESXi! Next would be to implement vSphere...
Thanks VMware!
Flex Camp OC 2009
Posted by David in Flex , Conferences on January 31, 2009

Today was Flex Camp OC! It was a great roundup of speakers and I really enjoyed it. Best part was it was local and at Boeing HB.
I can't wait for next years Flex Camp!
Flex: Popup a Window with Javascript
Posted by David in Flex on May 20, 2008
I had the need to popup a browser window from my Flex application and wanted it to popup without toolbars, etc. I found some online examples that did it in different ways. Below is the solution I went with.
FlexPopup.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
<![CDATA[
public function goToURLPopup(url:String,winName:String,w:int,h:int,toolbar:int,location:int,directories:int,status:int,menubar:int,scrollbars:int,resizable:int):void
{
var fullURL:String = "javascript:var myWin; if(!myWin || myWin.closed){myWin = window.open('" + url + "','" + winName + "','" + "width=" + w + ",height=" + h + ",toolbar=" + toolbar + ",location=" + location + ",directories=" + directories + ",status=" + status + ",menubar=" + menubar + ",scrollbars=" + scrollbars + ",resizable=" + resizable + ",top='+((screen.height/2)-(" + h/2 + "))+',left='+((screen.width/2)-(" + w/2 + "))+'" + "')}else{myWin.focus();};void(0);";
var u:URLRequest = new URLRequest(fullURL);
navigateToURL(u,"_self");
}
]]>
</mx:Script>
<mx:Panel width="100%" height="100%" title="Flex Popup Example" paddingLeft="10" paddingTop="10">
<mx:Button label="Google" click="goToURLPopup('http://www.google.com/', 'popup', 640, 480, 0, 0, 0, 0, 0, 1, 1)"/>
</mx:Panel>
</mx:Application>
And here is my example:
Recent Comments