Wednesday, July 4, 2012

actionscript

PAGE EVENT

package com {
import flash.events.Event;
public class PageEvent extends Event {
public static const CHANGE_PAGE = "changePage";
public var vars:Object;
public function PageEvent( _type:String,
_vars:Object,
_bubbles:Boolean=false,
_cancelable:Boolean=false ) {
constructor code
super( _type, _bubbles, _cancelable); //refers to the parent class(Event)
vars = _vars; //{type:"up"}
}
public override function clone():Event {
return new PageEvent( type, vars, bubbles, cancelable );
}
}
}


MAIN

package com {
import flash.display.MovieClip;
import flash.events.MouseEvent;
import flash.display.Loader;
import flash.net.URLRequest;
import flash.events.Event;
import com.PageEvent;
public class Main extends MovieClip {
var swfLoader:Loader = new Loader();
var aboutURL:URLRequest = new URLRequest('about_page.swf');
public function Main() {
this.btn_back.addEventListener(MouseEvent.CLICK, backClick);
this.btn_go_up.addEventListener(MouseEvent.CLICK, go_up_Click);
addEventListener (PageEvent.CHANGE_PAGE, doSomething);
}
private function doSomething(e:PageEvent){
trace("received CHANGE_PAGE");
trace(e.vars.eileen);
trace(e.vars.shiro);
}
private function backClick (e:MouseEvent){
this.btn_back.gotoAndPlay(2);
swfLoader.load(aboutURL);
swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, setupSwf)
}
private function setupSwf(e:Event){
this.pageholder.addChild(swfLoader);
var mc = swfLoader.content;

}

private function go_up_Click (e:MouseEvent){
this.y -= 50;
}
}
}


ABOUT

package com {
import flash.display.MovieClip;
import flash.events.MouseEvent;
import com.PageEvent
public class About extends MovieClip {
public function About() {
this.btn_back_about.addEventListener(MouseEvent.CLICK, backClick_about);
this.btn_trigger.addEventListener(MouseEvent.CLICK,tellMain);
}
private function tellMain(e:MouseEvent){
trace("tell main to do something");
var evt = new PageEvent(PageEvent.CHANGE_PAGE, {eileen:"sleep", shiro:"faint"} ,true);
dispatchEvent (evt);
}
private function backClick_about (e:MouseEvent){
this.btn_back_about.gotoAndPlay(2);
}
}
}

Wednesday, January 11, 2012

WD 2 Competitors Website

Competitors of SSF Home in Malaysia

1. http://www.harveynorman.com.my/index.htm



















- should make the layout bigger to not waste the space beside
- not much details on the product
- words are too packed together
- photo quality are not that good
- some fonts are too small

2. http://www.redapple.com.my/index.php



















- the slide show can be bigger. some of the words are hard to read.
- navigation bar is quite interesting
- photos size are quite small
- content are detailed
- organised layout

3. http://www.lpfurniture.com/main.htm



















- footer can hardly be seen
- alot of text
- info not updated
- products can be only by members of the website
- layout is organised
- the title's font can be better

4. http://www.ikea.com/my/en/



















- lots of info and very detailed.
- layout is organised
- info updated
- overall website is nice and simple
- pictures are in good quality

WD 2 Beautiful websites..

1. http://www.level2d.com/home.html



















- quite interactive.has some rollover effects and some animations.
- creative designs and attractive to viewers.
- organised layout.know where the info will appear.
- nice color combination
- typography is simple and suitable for the website.
- area for content is quite small

2. http://www.giselejaquenod.com.ar/blog/



















- bright colors make the website look very attractive and fun
- interesting navigation bar
- typography for the navigation and title can be better
- overall layout is organised

3. http://www.brownbagfilms.com/#/



















- quite interactive..has rollover effect and some animations.
- website is cool and has creative graphics
- content is done creatively, makes me wants to browse more.
- layout is organised.
- but loading takes some time.
- can barely see the footer

4. http://adventuresoftinger.com/



















- content is very interesting and attracting
- graphic is cute
- colour combination is good
- layout is very organised
- typography is suitable
- but loading takes some time

Thursday, September 15, 2011

WD 1

Beautiful websites.


http://www.dannwhittakercreative.com/


- nice typography.its like handwritten so it suits the theme
- organized layout so its easy to browse.
- good colour combination. feels relaxed.
- hierachy is pretty good.
- everything is at centre so there is enough empty space for eyes to relax.


http://www.chigarden.com/



- simple and nice typography.
- good layout. everything is nicely organised.
- very warm colours.
- pretty good content.
- logo is simple and cute.
- lovely icons make the website interesting.



http://www.syfy.com/tinman/oz/


- very awesome graphics. feels like a game.
- a new creative idea for website.
- good content.






http://xhtmlcafe.net/


- creative idea for the website.
- the typography suits the web because this web is about changing our design to xhtml and css.
- colours look very welcoming.
- layout is not bad.




Photoshop / Illustrator tutorial

Photoshop - http://psd.tutsplus.com/category/tutorials/

1.  http://psd.tutsplus.com/tutorials/text-effects-tutorials/cool-typography-photoshop/


                 
2. http://psd.tutsplus.com/tutorials/photo-effects-tutorials/alien-portrait-photoshop/



Illustrator - http://ndesign-studio.com/tutorials

3. http://ndesign-studio.com/tutorials/envelope-distort



4. http://ndesign-studio.com/tutorials/christmas-tree



Ideas.

1. How To Annoy People.

Who Am I : the person who often annoy people
Who Is The Target : mainly friends
What For : fun!
1st task - Use trending internet meme's or justin bieber,rebecca black,twilight,etc
2nd task - Play disturbing songs very often and loudly (such as nyan cat)
3rd task - Dont give a fuck
Outcome : Annoyed peoples
Showcase : Gallery

2. How To Be Emo.

Who Am I : the emo one
Who is the Target : teenagers maybe?
What For : to get people come to the "dark" side
1st task - be anti-social, dont smile and dont mix with others
2nd task - get into the emo trend (dressing, hair, etc..)
3rd task - keep sad and painful past in mind.
Outcome : get more people be emo
Showcase: gallery

3. How To Bond With Your Dog.

Who Am I : Author
Who is the target : dog owners
What for : build better relationship with dog
1st task : spend lots of time with it (sleep with it,teach tricks,groom it)
2nd task : do many things together (train, walk, play)
3rd task : always reward it with snacks
Outcome : Good relationship with dog
Showcase : gallery

4. How to be a addicted gamer

Who Am I : A gamer
Who is the target : non-gamers
What for : share the joy and benefits of game
1st task : start by playing mini games (web game,flash games)
2nd task : introduce your loved ones to games (girlfriend,family) and play together.
3rd task : give yourself a mission for the day..(like what to achieve)
Outcome : get more gamers
Showcase : gallery

Sunday, January 23, 2011

Monday, January 10, 2011

(Assignment) 10 things that describe me...

1. Blood. A sadist.
2. Darkness. The lost one.
3. Games. The best entertainment.
4. Vampire. The one who loves the night.
5. Tortoise. Shy but not slow.
6. Bull. A crazy one.
7. Expresionism. Emo.
8. Fire. Short-tempered and scary.
9. Bird's eye chilli (cili padi). Rude. My words can make you mad.
10. Rabbit. Quiet one.