Only characters can move along Paths, and this is done with the "Character: Move along path" Action.
You could feasibly convert your object into an NPC via the Character Wizard.
However, it's not necessary to rely on a Path to make an object move between two points - you can use Unity's own Animation system for that.
See Unity's own docs for creating an animation, and placing it in an Animator controller. Once done, to control an Animator's playback at runtime, you can use AC's Object: Animate Action.
Comments
Only characters can move along Paths, and this is done with the "Character: Move along path" Action.
You could feasibly convert your object into an NPC via the Character Wizard.
However, it's not necessary to rely on a Path to make an object move between two points - you can use Unity's own Animation system for that.
See Unity's own docs for creating an animation, and placing it in an Animator controller. Once done, to control an Animator's playback at runtime, you can use AC's Object: Animate Action.
Ah right. Thanks very much for the quick reply, appreciated