Tile-based Flash game: Bloxorz
http://www.miniclip.com/games/bloxorz/en/
found this in miniclip, and got addicted to it. Read the few rules and start playing
betaruce.com
M | T | W | T | F | S | S |
---|---|---|---|---|---|---|
« Jul | ||||||
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
http://www.miniclip.com/games/bloxorz/en/
found this in miniclip, and got addicted to it. Read the few rules and start playing
After some experiments with Papervision, I must say it is not difficult to use and is really handy. I am trying to build a room and put up some pillars in it. The following is what I have done so far:
Walk with arrow keys, turn around with ur mouse.
http://as3.betaruce.com/room/room.html
Get the Source here.
The room basically is made up of several Plane objects, and the pillar with Cylinder object.
I come across several problems:
- the rendering of the pillar sometimes got “confused” with the walls, ceiling and floor, as below. I am not sure where the problem lies….and I find that this is particularly the problem with Cylinders, but less with cubes and spheres…
- I am not sure if there is a way of filling the objects with a bitmap like tiles but not stretch the bitmap to cover the whole surface?
- seems to me I cannot find a decent tutorial from the official site or any place like a forum for discussion (besides osflash list). I did go to http://forum.papervision3D.org but it seems it is not active….
It would be great if someone could give me some ideas about these
In previous versions of AS, just a few lines of simple codes will allow you to click on a button and go to another website. In AS3, however, getURL() is replaced. You have to do the following:
btn is a movie clip on stage. When someone click on it, it will trigger the onClick() function and bring the user to adobe web.
Then, you have to declare the url with the URLRequest object. Last but not the least, we have to code the onClick() function.
getURL() is replaced by navigateToURL(), which belongs to flash.net. The syntax is:
public function navigateToURL(request:URLRequest, window:String = null):void
The 1st parameter is the URLRequest object that contains the target url. The 2nd parameter defines whether a new window will pop up or open the website in the current window.
an insane Japanese guy playing with HTML
This is probably one of the hottest news recently.
If you are >18yo and you are a HK citizen, you are eligible to enter the Adobe AIR Developer Derby.
You can create an Adobe AIR application (aka Apollo) and there are several categories to classify your work.
The prize is definitely amazing, which include:
etc etc....
Is there anyone in HK planning to enter that competition?
Thanks for all the support.
PhotoFlip is still an online album with its basic functions only. More updates will be done to the program soon
I have converted my previous pageflip program into one that allow people to load in their photos from external source. I build this website which allow people to define some variables (e.g. page colors, album title, etc), generate codes and paste to their site easily.
Here is an example which load in my Flickr photo set.
If there is "\" in a String variable, it will be "deleted" automatically and immediately (since "\" is usually used to represent something e.g. "\n" means a line break), and you won't be able to replace it e.g. with regular expression. To overcome this, you may use "\\".
However, if the value is taken from a textfield (either dynamic or input textfield), the "\" will still remain.
I have converted my pageflip program, which was written in AS1, into AS3, and integrate into an Apollo application PhotoFlip.
The app allows you to type in the full link to a local folder containing your photos and display it in the book-like album.
This is still the alpha version (so not much function besides flipping), but I think the pageflip program is better being used as a web rather than a desktop application. I will convert it to a web app which can load in photos from various source e.g. Facebook, Flickr, etc, and allow user to put it to their blog.