Saturday, 30 January 2010
Screen print idea
Friday, 29 January 2010
PPRD presentation
Thursday, 28 January 2010
Animal Farm printing
Wednesday, 27 January 2010
Planning and reflection
Friday, 22 January 2010
Evaluation screen based 2
I was really looking forward to this project, being able to learn new skills and new software. One of the main paths I wanted to follow after finishing University was in the digital industry. I quite like the idea of designing polished websites. Because I was learning new software I knew it would be difficult from the start, but I didn’t anticipate the amount of problems I was going to encounter.
Having finished this unit now I regret not taking the decision to use the extension given to me. If I had taken it, it would have given me the opportunity to sort myself out with organisation and time management skills. I wish that I had a better experience of learning Dreamweaver as this could have helped with my ideas generation for the unit.
Thursday, 21 January 2010
ActionScript 3.0!!!!!!!
btn_shoe.addEventListener(MouseEvent.CLICK, loadImage);
function loadImage(event)
{
var imageLoader:Loader = new Loader();
var theImage:String = "images/graphic/test.jpg";
var imageRequest = new URLRequest(theImage);
imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
imageLoader.load(imageRequest);
function onComplete(event:Event)
{
addChild(imageLoader.content);
imageLoader.content.x = 267;
imageLoader.content.y = 213;