place iLogic Component

place iLogic Component

Anonymous
Not applicable
644 Views
1 Reply
Message 1 of 2

place iLogic Component

Anonymous
Not applicable

Is it possible to skip the small preview window and the parameters display when i place an iLogic component white the command Place iLogic Component.

0 Likes
645 Views
1 Reply
Reply (1)
Message 2 of 2

adam.nagy
Autodesk Support
Autodesk Support

Happy New Year!

 

If you don't want the preview window to appear, you don't want the parameters dialog to appear, then the only functionality left is the copying of the file that you want to place.

You could do that using Windows API or e.g. the ThisApplication.FileManager object

 

Then you could just start the component placement command ("Place") of Inventor with the copied part/assembly like shown in this devblog post: http://adndevblog.typepad.com/manufacturing/2013/01/provide-command-parameters-using-postprivateeven...

 

In iLogic it would look like this:

Dim cm As CommandManager
cm = ThisApplication.CommandManager
    
cm.PostPrivateEvent(
	PrivateEventTypeEnum.kFileNameEvent, 
	"C:\Users\Administrator\Documents\Inventor\TempProject\part - copy.ipt")

Dim cd As ControlDefinition
cd = cm.ControlDefinitions("AssemblyPlaceComponentCmd")

cd.Execute

I hope this helps.

 

Cheers,



Adam Nagy
Autodesk Platform Services
0 Likes