Anyone here expereienced in ActionScript ?

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

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.

	}
}
 
yeah i kind of realized that as i went along :( , that really blows . thanks for the link ! . i completed my project regardless though :P . it felt a little weird without intelisense , i didn't realized how much i depended on it.

its hosted here incase any of you want to check it out
http://franklyn.hostbot.com/ms/index.html
 
Back
Top