ChildOfCode


Code, Maker, Robotic, Open Source. Knowledge Bases


Tag: mobile


  1. JavaScript CallBack

    ComponentOne.js function ComponentOneClass(parent) { this.Parent = parent; var thisClass = this; //Properties this.responseCallback = null; }; ComponentOneClass.prototype.ProcessAction = function(theValue) { if(theValue){ this.responseCallback("Callback return"); }else{ Ti.API.log("Get Error"); }; }; ComponentOneClass.prototype.CallOtherMethod = function(theValue,theCallback) { this.responseCallback = theCallback; theProcess = this.ProcessAction(theValue); }; //finally, export the module module.…

    mobile, JavaScript, Titanium, CallBack

  2. Mobile first

    This is the first post in my mobile. ^^ function toggle() { //makes the value of 'on' true if it was false before, or false if it was true before. //If you pronounce = as becomes, and ! as 'not', reading the line makes much more sense. on = !on; //Set the digital value of…

    mobile