mindless_moder
Tank
- Joined
- Jul 6, 2003
- Messages
- 4,931
- Reaction score
- 0
i'm trying rather desperately to import a class from the same package. i have the two files saved in the same folder , i have the root in the class path , i have them listed under the same package and yet when i type "import blah.classblah" i get no intelisense or formatting.
anyone have any experience in this sort of thing ? .
edit :
i just tried instantiating an object of a class that was defined within the same file and that doesnt bring up intelisense either. so either intelisense just doesnt work or theres something wrong with my class definition :S .
heres what it looks like
anyone have any experience in this sort of thing ? .
edit :
i just tried instantiating an object of a class that was defined within the same file and that doesnt bring up intelisense either. so either intelisense just doesnt work or theres something wrong with my class definition :S .
heres what it looks like
Code:
package Game
{
public class rod
{
public function rod(){}
public function tie(){}
}
public class game
{
var rodObj:rod = new rod();
rodObj. //the function doesnt come up and i dont see "rod" highlighted.
}
}