Нашли или выдавили из себя код, который нельзя назвать нормальным,
на который без улыбки не взглянешь?
Не торопитесь его удалять или рефакторить, — запостите его на
говнокод.ру, посмеёмся вместе!
package ***.modules.login.view
{
import ***.modules.login.view.skins.LoginViewSkin;
import ***.uni.mvp.View;
import spark.components.Button;
import spark.components.TextInput;
public class LoginView extends View implements ILoginView
{
/************************************************************************************
* SKIN PARTS *
************************************************************************************/
[SkinPart(required="true")]
public var emailInput:TextInput;
[SkinPart(required="true")]
public var loginButton:Button;
/************************************************************************************
* VARS *
************************************************************************************/
public function LoginView()
{
super();
}
public function get emailInputWidget():TextInput
{
return this.emailInput;
}
public function get loginButtonWidget():Button
{
return this.loginButton;
}
protected override function configureView():void
{
this.setStyle("skinClass", LoginViewSkin);
}
}
}
В четвёртом флеше код вводился вообще через ГУИ кнопочкой плюсик и текстбоксами с выбором команды, типа конструктор.
"With the release of Flash 5 in September 2000, the "actions" from Flash 4 were enhanced once more and named "ActionScript" for the first time. This was the first version of ActionScript with influences from JavaScript and the ECMA-262 "
"With the release of Flash 5 in September 2000, the "actions" from Flash 4 were enhanced once more and named "ActionScript" for the first time. This was the first version of ActionScript with influences from JavaScript and the ECMA-262 "