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 Conferences , Flex 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:
Flash Player 10 Beta (Astro) on Labs
Posted by David in Flash on May 16, 2008
Adobe has released Flash Player 10 (Astro) on the Adobe Labs site. Go check it out!
http://labs.adobe.com/wiki/index.php/Astro
For more information, see the Flash Player 10 technology page at
http://labs.adobe.com/technologies/flashplayer10/
And here is a link on how to compile for Flash Player 10 in Flex 3
http://opensource.adobe.com/wiki/display/flexsdk/Targeting+Flash+Player+10+Beta+with+Flex+SDK+3.0.x
You can download the Flash Player 10 beta from here
Recent Comments