記事「ActionScript 3.0」 の 検索結果 62 件
-
as3 from the ground up #10 create an object-oriented programcreate an object-oriented program ・create custom classes ・make objects from custom and built-in cl..
-
as3 from the ground up #11 main classmain class every program must have a main class main class provides program starting point to sta..
-
as3 from the ground up #12 the virtual zoothe virtual zoo a simulated zoo game with virtual pets player must feed pets, like a Tamagotchi ..
-
as3 from the ground up #13 program folderprogram folder store program files in /virtualzoo/ store ActionScript source files in /virtualzoo/..
-
as3 from the ground up #14 the main class: VirtualZoothe main class: VirtualZoo program main class is VirtualZoo class code placed in a text file named..
-
as3 from the ground up #15 packagespackages potential problem: ・"VirtualZoo" name might conflict with built-in class to prevent name..
-
as3 from the ground up #16 package namespackage names each package has a lowercase name: ・game ・physics ・networking packages can be nes..
-
as3 from the ground up #17 classes in packagesclasses in packages a class in a package adopts the package name e.g., class Player in package gam..
-
as3 from the ground up #18 creating a packagecreating a package create packages using package definition directive directive means program inst..
-
as3 from the ground up #19 creating a packagepackage definition directive here's a package definition directive: package packageName { }defini..
-
as3 from the ground up #20 the zoo packagethe zoo package create a package, zoo, to hold our app's classes package zoo { }move VirtualZoo.a..
-
as3 from the ground up #21 defining a classdefining a class create classes using class definition directive: class Identifier { }definition ..