Friday, April 15, 2011

Printing in Flash AS3

How to get the PrintJob working in flash

Monday, February 28, 2011

Launch control, this is Houston. We are go for launch.



We made it! What a buzz.

Wednesday, February 09, 2011

Blogging silence

It's been a while since I've updated my blog. Between it moving over to google and loosing ftp I just didn't get around to getting it working again.

Now it's back up I'll probably take a look at the rest of the site again soon sometime!

Monday, October 11, 2010

Moved from FTP

It's been awhile - that's largely because of the blogger move from publishing via ftp, and me having a to do list larger that overruled sorting this out.

Anyway, this is a test post. More to come if this works, for sure!

Monday, April 26, 2010

Testing an embedded video podcast

Yes, it's yours truly.

My podcasts - Check out more at Podium Podcasting.

Wednesday, January 27, 2010

Off to Grandvalira!! Oh Yeah!

Off skiing for a week in Andorra with my new ski boots. I can't bloody wait!!!







Friday, November 13, 2009

Swf Object Javascript not displaying correctly in some browsers

After having issues with some browsers incorrectly displaying the height of an embedded swf object I came across this fix to add to the html before the embed code.


/* hide from ie on mac \*/
html
{
height: 100%;
overflow: hidden;
}

#flashcontent
{
height: 100%;
}
/* end hide */

body
{
height: 100%;
margin: 0;
padding: 0;
background-color: #ffffff;
}