Shake (Shake it) controlled wallpaper (Sony Ericsson K850i and W910i compatible)
wallpapers that changes image to the next one when you shake your phone
tools needed Flash CS3 Professional
Used script
Code explanation:
As every other animation that goes on a mobile phone this one has Extend Backlight Duration (to 30 seconds) and Full Screen fscommands. onEnterFrame makes sure that the following function will be repeated all the time though the movie has only one frame. The function is to read accelerometer data, in this case only the accX is of interest. The maximum it can react with Earth's gravity is 990. When shaking the phone it can reach over 2000 but I find 1500 enough to initiate the wallpaper change which happens with simple play function for the "imager". Imager is a movie clip that changes the picture to next one when it plays. It can be animated whatever way you like. The last 2 lines of the script are for those who want to preview the animation on PC. It unloads the next button if animation is open on the phone; on PC that button is visible and can be used.
source1.zip
result1.zip
More info for source file downloaders:
To add your own images. They must be 240x320, JPG, PNG, or GIF.
To add them open the source file "Shake control.fla", import your images (File, Import > Import to Library...). Double click the movie clip "Holder (add images here)". Now you can delete all frames if you don't want these images in the movie. What you have to do is add enough frames (blank keyframes) and put your images in them (coordinates of each image have to be (0,0)). Make sure that the first frame and the last frame have the same image. Frame 1 should have stop(); script in it and the last frame should have gotoAndStop(1); script in it. Otherwise the images won't loop. Now close that movie clip and publish the movie. Enjoy!
Tutorial by
www.trekker-reactor
How to change the theme file to include the swf wallpaper by vinnieza:
(IMG:http://img182.imageshack.us/img182/5419/swftutorialuj9.jpg)
This post has been edited by vinnieza: Apr 6 2008, 06:09 AM
wallpapers that changes image to the next one when you shake your phone
tools needed Flash CS3 Professional
Used script
CODE
fscommand2("FullScreen");
onEnterFrame = function () {
loadVariables("accelerometer://data", _root);
if (accX>1500) {
imager.play();
}
}
displayDevice = substring(eval("/:$version"), 0, 2) == "FL" ? "phone" : "pc";
if (displayDevice == "phone") {nextButton._visible=false;}
onEnterFrame = function () {
loadVariables("accelerometer://data", _root);
if (accX>1500) {
imager.play();
}
}
displayDevice = substring(eval("/:$version"), 0, 2) == "FL" ? "phone" : "pc";
if (displayDevice == "phone") {nextButton._visible=false;}
Code explanation:
As every other animation that goes on a mobile phone this one has Extend Backlight Duration (to 30 seconds) and Full Screen fscommands. onEnterFrame makes sure that the following function will be repeated all the time though the movie has only one frame. The function is to read accelerometer data, in this case only the accX is of interest. The maximum it can react with Earth's gravity is 990. When shaking the phone it can reach over 2000 but I find 1500 enough to initiate the wallpaper change which happens with simple play function for the "imager". Imager is a movie clip that changes the picture to next one when it plays. It can be animated whatever way you like. The last 2 lines of the script are for those who want to preview the animation on PC. It unloads the next button if animation is open on the phone; on PC that button is visible and can be used.
source1.zip
result1.zip
More info for source file downloaders:
To add your own images. They must be 240x320, JPG, PNG, or GIF.
To add them open the source file "Shake control.fla", import your images (File, Import > Import to Library...). Double click the movie clip "Holder (add images here)". Now you can delete all frames if you don't want these images in the movie. What you have to do is add enough frames (blank keyframes) and put your images in them (coordinates of each image have to be (0,0)). Make sure that the first frame and the last frame have the same image. Frame 1 should have stop(); script in it and the last frame should have gotoAndStop(1); script in it. Otherwise the images won't loop. Now close that movie clip and publish the movie. Enjoy!
Tutorial by
www.trekker-reactor
How to change the theme file to include the swf wallpaper by vinnieza:
(IMG:http://img182.imageshack.us/img182/5419/swftutorialuj9.jpg)
This post has been edited by vinnieza: Apr 6 2008, 06:09 AM
Attached File(s)