Still same error please help me to fix this problem
Menu_1Depth_ESubAll.as, Line 66 | 1084: Syntax error: expecting identifier before rightparen. |
Menu_1Depth_ESubAll.as, Line 67 | 1084: Syntax error: expecting rightparen before leftbrace. |
- package Navi.Default
- {
- import flash.display.*;
- public class Menu_1Depth_ESubAll extends Menu_1Depth
- {
- public var motionOb:Object;
- public var area:MovieClip;
- public var oX:Object;
- public var oY:Object;
- public function Menu_1Depth_ESubAll()
- {
- motionOb = new Object();
- this.gotoAndStop(1);
- return;
- }// end function
- public function changeVal(param1, param2)
- {
- param1.changeVal(param2);
- return;
- }// end function
- override public function clickF(param1)
- {
- var _loc_2:* = undefined;
- trace(this.name + " " + this.index + " " + this.num);
- _loc_2 = String(ExternalInterface.call("Btn_Skip", num));
- return;
- }// end function
- override public function outF(param1)
- {
- applyMotion(motionOb.mEM, "out");
- applyAllMotion(motionOb.sPM, "out");
- applyMotion(motionOb.sPBGM, "out");
- applyMotion(motionOb.mBGM, "out");
- return;
- }// end function
- public function applyMotion(param1, param2)
- {
- if (param1 != null)
- {
- param1.applyMotion(param2);
- }
- return;
- }// end function
- public function applyAllMotion(param1, param2)
- {
- var _loc_3:* = undefined;
- var _loc_4:* = undefined;
- var _loc_5:* = undefined;
- var _loc_6:* = undefined;
- if (param1 != null)
- {
- _loc_3 = SVars.rMainMenu.parent;
- _loc_4 = 0;
- while (_loc_4 < _loc_3.numChildren)
- {
- _loc_5 = "main";
- _loc_6 = _loc_3.getChildByName(_loc_5 + _loc_4);
- if (_loc_6 is )
- {
- _loc_6.applyMotion(_loc_6.motionOb.sPM, param2);
- }
- _loc_4 = _loc_4 + 1;
- }
- }
- return;
- }// end function
- override public function overF(param1)
- {
- applyMotion(motionOb.mEM, "over");
- applyAllMotion(motionOb.sPM, "over");
- applyMotion(motionOb.sPBGM, "over");
- applyMotion(motionOb.mBGM, "over");
- return;
- }// end function
- }
- }