Adobe and Avatar

Here is a great video describing how Adobe software was used throughout the production of the movie Avatar.

No Comments

Boeing 787 Dreamliner First Flight

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.

 

No Comments

VMware Virtualization Forum 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!

No Comments

Flex Camp OC 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!

No Comments

Flex: Popup a Window with Javascript

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:

No Comments