小弟有一个问题,小弟跟着它的tutorials (help>quick start>create an application)
里面有一个部分要我打入actionscripts。我跟着打竟然得到个syntaxerror。
请问有人知道一下actionscript有什么问题吗?
//Calculates total price
on(click) {
with(_parent){
priceTotal_txt.text = Number (price1_txt.text) + Number (price2_txt.text) + Number (price3_txt.text);
}
};