I am gettint this error, and it just doesn't make sense to me

**Error** \\sugarmomma\projects\couresFrameWork\04-04-2007\com\infusion\ui\DataUpdate.as: Line 1: The class being compiled, 'com.infusion.ui.DataUpdate', does not match the class that was imported, 'DataUpdate'.
    class com.infusion.ui.DataUpdate {

here is my class:
class com.infusion.ui.DataUpdate {
   //
   public var _dataList:Array;
   public var _data:XML;
   public var _currSec:Number;
   public var _isInit:Boolean;
   //
public function DataUpdate(init:Boolean, dataList:Array, secData:XML, sec:Number) {
       trace("DataUpdate "+init);
       this._isInit = init;
       this._dataList = dataList;
       this._data = secData;
       this._currSec = sec;
   }
}

it is in the folder it is suppose to be, and I am only using it in one place in my app.

I don't get what the error is telling me, where is the class being imported? Like I said it is only being used in one place, and I went over the code in that class a hundred times to see if I madee a spelling mistake or something, but it is correct.

Any thoughts?

Thanks
Russ
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to