Error 1046:Type was not found or was not a compile-time constant

橙三吉。 提交于 2019-12-11 02:29:23

问题


I'm trying to make a interactive flash video in CS6 for a class I am taking. I briefly talked with the professor about this and he could not figure out the issue either. The weird thing is it says the errors are on lines 2 and 3. When I remove the code on those lines it still says the error is on those lines. Take a look at my AS and tell me what you think.

import flash.events.MouseEvent;
import flash.display.MovieClip;
import flash.display.Stage;
import flash.events.*;

public class Essay1 extends MovieClip{

public function Essay1() {

    mc_Gas.visible = false;
    mc_Drive.visible = false;
    mc_Outside.visible = false;
    mc_DriveZoom.visible = false;
    mc_Dash.visible = false;

    mc_Start.btn_Start.addEventListener(MouseEvent.MOUSE_DOWN, gotoWindow);
    mc_Drive.btn_Drive.addEventListener(MouseEvent.MOUSE_DOWN, gotoZoom);
}
public function gotoWindow(MouseEvent):void{
    mc_Start.gotoAndPlay(2);
}
public function gotoZoom(MouseEvent):void{
    mc_DriveZoom.visible = true;
    mc_DriveZoom.mc_Car3.mc_HeadDown.gotoAndPlay(2);
}

}

Here's the error message:

F:\WDMD201\Essay\Essay1.as, Line 2 1046: Type was not found or was not a compile-time constant: mc_Dash.

F:\WDMD201\Essay\Essay1.as, Line 2 1046: Type was not found or was not a compile-time constant: mc_Drive.

F:\WDMD201\Essay\Essay1.as, Line 3 1046: Type was not found or was not a compile-time constant: mc_Gas.

F:\WDMD201\Essay\Essay1.as, Line 3 1046: Type was not found or was not a compile-time constant: mc_Start.

F:\WDMD201\Essay\Essay1.as, Line 4 1046: Type was not found or was not a compile-time constant: mc_Outside.

F:\WDMD201\Essay\Essay1.as, Line 5 1046: Type was not found or was not a compile-time constant: mc_DriveZoom.


回答1:


The issue is that you are trying to access unknown properties. To access them, your need to declare properties matching the instance names on the stage. Declare all the properties mc_Dash, mc_Drive, and so on, as member variables :

public class Essay1 extends MovieClip {

    public var mc_Dash:MovieClip;

    public function Essay1 {
    ....


来源:https://stackoverflow.com/questions/13423596/error-1046type-was-not-found-or-was-not-a-compile-time-constant

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!