Posts Tagged ‘Flash’

Balsamiq – Create website mock ups quickly and easily!

Sunday, August 1st, 2010

A friend at work pointed out the Balsamiq mockup software to me recently, and I think it’s great!

It’s a fantastic piece of flash software that helps you create simple web mock ups in a ridiculously fast time. It’s free to use (with a few features hidden, such as browse for image) but you get a popup every now and again asking you to buy the full version. It took me 10 minutes to produce this (admittedly lacklustre) mockup.

Using it is simple. You drag on items, such as tabbed containers, images, text boxes, buttons and even iphone layouts, until you have created your mockup. You can then export it as a pdf or a png, ready to show your client. The most impressive feature is the amount of detail they have included. You can change the position of the scrollbars, selected which tab is active and even add in disabled/selected checkboxes. Everything is customisable.

I’ll definitely be using it if given the opportunity.

Flash AS3 – FLV does not play until the file has been fully downloaded

Thursday, January 21st, 2010

At work today, I stumbled upon a problem when creating a standalone flv player. Everything seemed all and well, but the file insisted on fully downloading before playing. The only part I could find in the Adobe Docs was this useful hint:

While using an ActionScript 3 file, the video begins playing only when enough of it has downloaded so that it can play the FLV file from start to finish. This behavior can be altered using ActionScript.

Fantastic!

So I was stuck. I then began to notice that the metaData was received only after the file had been loaded. Hmm. After a little while of searching, I found this gem of a blog post.

Such a simple answer:

  • Rename the flv to a mov
  • Open it in Quicktime
  • Save as over the top of the original
  • Rename it back to flv

And all is well again, the file loads as soon as the buffer limit is reached!

Hopefully someone may find this useful, it took me long enough to figure out!