/** * Neave Imagination // Example document class * * Copyright (C) 2008 Paul Neave * http://www.neave.com/ * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation at http://www.gnu.org/licenses/gpl.html */ package { import flash.display.*; // import com.neave.imagination.*; [SWF(width="770", height="400", frameRate="31", backgroundColor="0x000000")] public class lib_present_graphic_imagination_Main extends Sprite { private var imagination:lib_present_graphic_imagination_com_neave_imagination_NeaveImagination; public function lib_present_graphic_imagination_Main() { // Create Neave Imagination on the stage var sprite:Sprite = new Sprite(); addChild(sprite); imagination = new lib_present_graphic_imagination_com_neave_imagination_NeaveImagination(sprite); stage.showDefaultContextMenu = false; } } }