Friday 23 January 2009

Website Project

I haven't really spent much time on my blog for quite a while now. Since my last post a lot has changed, including my final website layout. In the end I chose to go with an arty feel, the second design on my last post. This was because no matter how many times I change my mind over the designs I had created, I ended up getting bored with it. Having too many ideas can be worse than having none at all.

Overall I am pleased with the progress I made and the knowledge I picked up with this project. I had been looking forward to this project for some time, since I seen the second year’s websites when I was in the first year in fact. I am glad I decided to do it in Flash as I think I would have just struggled a lot more in Dreamweaver, I haven’t quite got my head around that yet, but it is on my to do list! There will come a time that I will have to design a website in Dreamweaver and I plan on updating my knowledge on it very soon.

I think the aspect of the assignment that surprised me the most was the amount of information I took in about the world wide web, HTML, java script and action script. At first it all looked like chinese but after a while I got used to it and coding became fairly second nature.

I will take a lot away with me from this project and I am pleased with that being the case. I have learnt a lot from tutors and the assistants that were always there to help. Good project indeed!

To view my final website click here and enjoy

Thursday 8 January 2009

Website Progress

It has been a quite some time since we were give the website assignment. To be honest it has been very testing, I have come up with so many ideas, each one getting better and better. But eventually it had to come to an end. Most of my designs were dark as per usual, so whilst sat at home in Jersey after a good day at work, I decided I was going to attempt a design in white and not use black at all.

All the ideas that I had come up with previous had the use of my name as the main focus. Yet I was getting frustrated with how the 'J' in my name never really worked well with any font I wanted. So I started playing around with names for myself, this turned out to be very amusing. In the end I started messing around with my middle name; Mark, and came up with markedDESIGN. I also wanted a logo to go with it. I knew exactly what I wanted, and the reason for this was the way Lime:Green works, all their work is very sharp and perfectly laid out, nothing is left untouched. Here are a couple of my previous designs that I would like you to see in order to see my progression.

When I came away from the briefing, I knew it had to be simple, therefore I came up with this:


As you can see it is very basic, yet not unacceptable. The second a traced back to the CMYK as in my previous work:


This worked really nicely and was made in Flash with subtle yet cool motion tweens. In the end I decided it wasn't mature enough for what I wanted, yet I wouldn't dismiss using this design for something else. The next design is my final:

As you can see I have decided to use the markedDESIGN and the logo as my identity. I have posted it as my blogger title image and posted it on my flickr account as well. The website is still in progress with just the portfolio section left to do, but will keep you updated and as soon as I've finished it I will post the swf.

Let me know what you think

Flash Reloaded

It's been a while since I've set about doing a blog. I've been very busy over the Christmas period, I worked at Lime Green again which is doing me good, especially as it is improving my Uni work. But first off, I have some notes that need to be put on here from the Flash recap lesson, so here goes...

Actionscript 2.0
Time based
EPS 8 (Illustrator)
.swf (Illustrator)
Frame rate:
12fps - web animation
24fps - tv animation (UK)
25fps - tv animation (US)

Select everything ---> Click and drag over it
Convert to symbol ---> Button

3 Buttons = 3 Key frames
Click between Layer 1 and pencil to highlight all
Needs to be housed in HTML
New Layer ---> Stop
Window ---> actions ---> timeline ---> double click ();
Movie clip controls ---> user controls
Timeline control ---> Flash moving through time, previous frame etc
Browser/Network ---> Linking to external files, links etc
Click on Button 2 ---> actions ---> movieclip ---> on (release)
next line, timeline ---> goto and stop (2) (2 represents the frame number)

Circle > convert to symbol > movieclip > holder > centre > double click > delete > single cross
To get back to backboard click 'Scene 1'

Actions > on (release)
loadMovie("images/onoff3.jpg","holder")

Link to external website
Actions > on (press)
getURL("http://www.limegreencreative.com","_blank")

Text Button:
Double click on text
UP - When mouse click is released
OVER - When the mouse is hovering over
DOWN - When the text is clicked
HIT - Clickable area. Draw a fairly big square over it so whole area is active

Make sure the control button is way off screen.

Control > Actions > on(keypress"")
drag._x+=10;

///////////////// - Acts as dividers

To drag with the mouse:
New Layer > Actions >

drag.onPress=function(){
drag.startDrag();
};
////////////
drag.onRelease=function(){
drag.stopDrag();
};
////////////
drag.onReleaseOutside=function(){
drag.stopDrag();

hit.onEnterFrame=function(){
if(this.hitTest(drag)){
hit._rotation -=10;
drag._alpha -=3;
if(drag._alpha<20)}
hit.onEnterFrame=null;
hit.rotation = 0

All looks very straight forward right? Once you have the program in front of you and you start playing around with it it becomes pretty straight forward.