# cocoui **Repository Path**: Timtance/cocoui ## Basic Information - **Project Name**: cocoui - **Description**: as3组件框架 - **Primary Language**: ActionScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-01 - **Last Updated**: 2024-04-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: flash ## README # COCOUI Framework > cocoui是一个基于as3的组件框架 `使用demo` ```java public class demo extends Application { public function demo() { } override protected function createChildren():void { super.createChildren(); // add child here var button:Button = new Button(); button.label = "this is my first demo"; addChild(button); } } ``` ​