Ilogic

Ilogic

Torben.pedersen
Collaborator Collaborator
928 Views
3 Replies
Message 1 of 4

Ilogic

Torben.pedersen
Collaborator
Collaborator

Hallo fellow Inventor users

 

I have a question about Ilogic (I don´t use it now, but I think it would be a good thing to learn)

My question: Is it possible to make a Ilogic part, and a Ilogic drawing, so when the part change the drawing do to?

one more thing, I have seen that you can make Ilogic browser window thing, and place it on a webpage, where customers can enter the Ilogic and see the change in the window, is this hard to do when you have learned the basic Ilogic stuff?

 

I hope you all have had a good start of 2016 - Mads Refsgaard

I hope this was helpfull.
Did I answer your question please accept this as solution.

if you liked my answer feel free to give me a Kudo 🙂
0 Likes
Accepted solutions (1)
929 Views
3 Replies
Replies (3)
Message 2 of 4

Mark.Lancaster
Consultant
Consultant
Accepted solution

Drawings automatically change when the part is changed unless you have defer updates on.   So I'm not sure what you're looking for in regards to an iLogic drawing in relationship to your (iLogic) part.   Learning aspect is all based on how complex your code is.

 

In regards to the web thing...  It is called AUtodesk Configurator 360 (http://www.autodesk.com/products/configurator-360/overview) and there's a cost assoicated to it if you didn't know.  Not sure on the learning thing or how much is involved.

Mark Lancaster


  &  Autodesk Services MarketPlace Provider


Autodesk Inventor Certified Professional & not an Autodesk Employee


Likes is much appreciated if the information I have shared is helpful to you and/or others


Did this resolve your issue? Please accept it "As a Solution" so others may benefit from it.

Message 3 of 4

Torben.pedersen
Collaborator
Collaborator
Oh yeah I forgot that they are linked (the drawing and the part) thx anyways and good day to you
I hope this was helpfull.
Did I answer your question please accept this as solution.

if you liked my answer feel free to give me a Kudo 🙂
0 Likes
Message 4 of 4

Anonymous
Not applicable

Hello everybody,

I use a ilogic rule to delete the custom iProperties, and would like to delete or the author and the designer and part number with.
Get the code would need to be supplemented, thanks ...

 

'------- start of ilogic ------


'define custom property collection
oCustomPropertySet = ThisDoc.Document.PropertySets.Item("Inventor User Defined Properties")
'look at each property in the collection
For Each oCustProp In oCustomPropertySet
'delete the custom iProperty
oCustProp.Delete
Next


'------- end of ilogic ------

0 Likes