Multi-input touch screen
this is the up coming technology that will be available to our home computer soon
http://www.shoutwire.com/viewstory/4996/Crazy_Multi_Input_Touch_Screen
I want one!
Add comment February 19th, 2006
this is the up coming technology that will be available to our home computer soon
http://www.shoutwire.com/viewstory/4996/Crazy_Multi_Input_Touch_Screen
I want one!
Add comment February 19th, 2006
/* ************************************************************ Developed by R.Arul Kumaran [arul@shockwave-india.com] * for more code keep visiting [www.shockwave-india.com/blog] * ************************************************************ */ /* Object.Clone creates a perfect copy of an object Modified from FlashGuru’s version to support Arrays */ Object.prototype.clone = function() { if (this instanceof Array) { var to = []; for (var i = 0; i< this.length; i++) { to[i] = (typeof (this[i]) == “object”) ? this[i].clone() : this[i]; } } else if (this instanceof XML || this instanceof MovieClip) { // can’t clone this so return null var to = null; trace(“Warning! Object.clone can not be used on MovieClip or XML objects”); } else { var to = {}; for (var i in this) { to[i] = (typeof (this[i]) == “object”) ? this[i].clone() : this[i]; } } return to; }; ASSetPropFlags(Object.prototype, [“clone”], 1); /* Usage:- myObject=new Object() myObject.name=”Arul”; myObject.gender=”Male”; myObject.age=29; copyObject=myObject.clone(); //now copyObject containes {name:”Arul”, gender:”Male”, age:29}; //changing myObject will not affect copyObject */
Add comment February 14th, 2006
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « Jan | Mar » | |||||
| 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 | |||||