我在这个编程方面有点新,我需要帮助在ActionScript 3.0(Adobe Animate CC)中编程。我想让符号(图形)可见,但只有在点击两个不同的按钮(按钮1和按钮2)之后。我只用一个按钮就可以做到这一点,但我不能用两个按钮来制作......有人能帮助我吗?我尝试了这段代码,但它不能正常工作:
button1.addEventListener (MouseEvent.CLICK, fl_MouseClickHandler_1);
button2.addEventListener (MouseEvent.CLICK, fl_MouseClickHandler_1);
function fl_MouseClickHandler_1(event:MouseEvent):void
{
graph.visible = true;
}
汤姆
答案 0 :(得分:1)
最简单的方法是做到这一点,尽管可能还有其他方法可以做到这一点:
angular.module('starter.services', ['starter.constants'])
.factory('loginService', function($scope, $http,constants) {
var lgurl = constants.BASE_URL+constants.User_Login;
return {
loginXmanager: function(username,password,deviceID,deviceType){
/*Demo*/
return $http.post(lgurl).then(function(response){
users = response;
return users;
});
}
}
});
请注意,一旦图表可见,我将两个布尔值重置为false,以使其像重置一样工作。
另外,我建议您为按钮和事件处理程序使用更好的名称。只是最好的做法。
希望这会有所帮助。欢呼声。