Hi,
I’m a newbie and, at the same time, an OLD person! I’ve built a website and purchased a downloaded Guestbook. I keep getting an .as3 error when I try to debug it in Flash. Here’s the first part of the code, where it fails:
package Guestbook{
//IMPORTS
import flash.display.Loader;
import flash.display.MovieClip;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;
import flash.events.MouseEvent;
import flash.events.TextEvent;
import flash.events.KeyboardEvent;
import flash.geom.Rectangle;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.net.URLRequestMethod;
import flash.net.URLVariables;
import flash.text.TextFieldAutoSize;
import flash.text.TextFormat;
import com.utils.StringUtils;
import com.caurina.transitions.Tweener;
import com.pageflip.Page;
import com.pageflip.PageEvent;
public class Guestbook extends MovieClip {
//PRIVATE VARS
private var myXML:XML;
private var frm:TextFormat;
(etc.)
I keep getting a 1037 error, “Packages Cannot be Nested”. Does anyone see the problem?
All help much appreciated!
jimmyb