25 October, 2007
Semester2. Done.
Frankly, I was kind of lazy to do all the works in web art and design. of course not only for web art but for all other electives and either my design practice..haha;;
But personally, I really satisfy with my final web-site. New experience (photography), new technique(automerge), new friends (who are from design computing XD).
This course gave me some different aspects of web-design for me. I think that I was kind of person who thought about web-design with too much technical issues instead of athetics and impression. It was good opportunity to study web-design with art based.
Thanx for Gianni. Wish you all the best!
See you!
Final 2 - different levels and views


I didn't expect to use people in photo to navigator to link to other flashes. But it could give me some better expression of space such as 'following someone'. thanx girl~ (who I don't know actually;;)

My favorite view, Courtyard on lv2. umm...little mistake to get half disappeared man on the left side. but overall, I really liked this panorama. If user click the entrance of city rd, It appears byebye~ message. then appears new button go back to entrance.
Final 1 - Intro [with problem..haha..]


Simply Entrance of Wilkinson Builidng and with little introduction to user how they can explore this website.
[Unfortunately, my introductin has bit of problem. When user click the door, it should open new flash file(ground level view) within the iframe. But It opens in new window. I gave exactly same script to this button as other buttons in other flash.
getURL("ground.html", _self)
But it only doens't work in this intro flash....weird. tried to solve in several times. but seriously doesn't work. So create another index.html file started with Gounrd level view. not so good. T_T]
24 October, 2007
Final - Address
[Start page with intro. Entrance view. Link has bit problem]
- http://people.arch.usyd.edu.au/~bsuh4219/final/index.html
Please Use this Address.
[ Start page with Lv1 View]
http://people.arch.usyd.edu.au/~bsuh4219/final/index2.html]
20 October, 2007
Problem solving.
So I have to solve the problem in different way. I tried to modify actionscript into horizontal scrollbar. It's in the process and seems that I can solve it. But not enough time. I decided to use 'iframe' in html page to get horizontal scrollbar. and make panorama image into flash to make some objects which user can clikc to go other panoramic image flash. It would give me some flexibility to complete this flash.
19 October, 2007
Scrollbar in flash
Y= - this.scrollDrag._y;
function scrollUpByButton() {
posY = _parnet.text._y + 20
if (posY > 100) {
_parent.text._y = 100;
} else {
_parent.text._y = poxY;
}
this.scrollDrag._y = - (((_parnet.text._y-100)/500)*(y*2)+Y);
}
function scrollDownByButton() {
posY = _parnet.text._y - 20
if (posY > 100) {
_parent.text._y = -400;
} else {
_parent.text._y = poxY;
}
this.scrollDrag._y = - (((_parnet.text._y-100)/500)*(y*2)+Y);
}
fucntion scrollByDragging() {
_parent.text._y = ((-this.scrollDrag._y-Y) / (Y*2))*500+100;
}