//WW var URL = 'https://hifi-content.s3.amazonaws.com/wadewatts/Animation%20Apps/back%20flip%20in%20place/back_flip_animation.fbx'; var CONFIG = { text: 'B Flip', icon: "https://hifi-content.s3.amazonaws.com/wadewatts/Animation%20Apps/back%20flip%20in%20place/back-flip-off.svg", activeIcon: "https://hifi-content.s3.amazonaws.com/wadewatts/Animation%20Apps/back%20flip%20in%20place/back-flip-on.svg" }; var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"), button = tablet.addButton(CONFIG); button.clicked.connect(function() { this.a = !this.a; button.editProperties({ isActive: this.a }); if (this.a) MyAvatar.overrideAnimation(URL, 30, true, 0, 65); else MyAvatar.restoreAnimation(); }); Script.scriptEnding.connect(function() { tablet.removeButton(button); });