# Class problem import through Linkage Properties

**URL:** https://forum.kirupa.com/t/class-problem-import-through-linkage-properties/231560
**Category:** Uncategorized
**Created:** [July 5, 2007, 7:15pm UTC](https://forum.kirupa.com/t/class-problem-import-through-linkage-properties/231560 "2007-07-05T19:15:54Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![dfm\_](https://avatars.discourse-cdn.com/v4/letter/d/3da27b/32.png) [@dfm\_](https://forum.kirupa.com/u/dfm_)
#### Post date: [July 5, 2007, 7:15pm UTC](https://forum.kirupa.com/t/class-problem-import-through-linkage-properties/231560/1 "2007-07-05T19:15:54Z")

</div>

hello,

I want to Linkage one MC in my library. So I wrote  
In **Class** zPlayerClasses.contoller,  
In **Base class** flash.display.MovieClip

My class contoller is located in folder zPlayerClasses, and it is in the main directory (with .swf).

this is my class script:  
[AS]package zPlayerClasses{  
public class contoller extends flash.display.MovieClip {  
public function contoller():void {  
trace(“contoller class instance”);  
}  
}  
}[/AS]

After compile output this error, why?

1017: The definition of base class MovieClip was not found.  
5000: The class ‘zPlayerClasses.contoller’ must subclass ‘flash.display.MovieClip’ since it is linked to a library symbol of that type.

The some error come after change **flash.display.MovieClip** to \*\*MovieClip \*\*
