AutoCAD Inventor :: Way Of Grabbing Code That Triggers Different Commands
Dec 9, 2013
I would like to know of a way of grabbing the code that triggers different commands for example, someone a while back gave me this command of
This Application.CommandManager.ControlDefinitions.Item("SheetMetalStylesCmd").Execute
this triggers the Sheet metal defaults in a sheetmetal ipt file.Where was the SheetMetalStylesCmd part of it taken from?
View 2 Replies
ADVERTISEMENT
Aug 13, 2012
I have a couple of VB pieces of code that set up the standards of my company. What I want to do create a buttom in my Workspace -within a tab created by me with the CUI tools- and trigger my VB code.
How is possible to create this buttom that is connected with my code and displayed in my workspace?
View 1 Replies
View Related
Aug 13, 2012
I have a couple of VB pieces of code that set up the standards of my company. What I want to do create a button in my Workspace -within a tab created by me with the CUI tools- and trigger my VB code.
How is possible to create this button?
View 1 Replies
View Related
Apr 12, 2013
I am setting up template .ipts and .idw for my company, and i run Adept to save and store my files. Now i have a code to automatically make a .idw after i save an .ipt. but then after every save (adept saves the .ipt a lot of times) it will ask to make a drawing for the .ipt. well i was wondering if there is a code to put in a rule to disable the event triggers, and place that rule on the trigger after close document. so that the next time i open the document no event triggers will work.
View 1 Replies
View Related
Jul 31, 2013
So the other day I set up an external rule and created an event trigger to run the rule on save. It worked great ... for a couple days, and then it just stopped working yesterday. I can still run the rule manually and it works fine, but it doesn't seem to run automatically anymore on file save. Yes, iLogic is set to Loaded / Automati in the add-ins panel.
(on the iLogic rule attachment, remove .TXT from the end. I had to add that due to the board's rules about file types.)
Product Design Suite Ultimate 2013, 2014
Autodesk Inventor 2013
Work: Dell Precision T1600 (Xeon E3-1280 / 16GB / 512 GB SSD / 250 GB (Internal) / 1 TB (External) / Quadro 600)
Home: i7-4770k / ASUS Z87-Pro / 16GB / 250 GB SSD / 1 TB HDD / 3 TB USB3 HDD / 2xRadeonHD 4870 in CrossfireX
Laptop: Toshiba Satellite P755-S5269 (i7-2630QM / 8 GB / 250 GB SSD / 750 GB HDD / GT540M)
View 9 Replies
View Related
Oct 30, 2012
I have two polylines. Segments of one polyline are directly on top of segments of the other polyline. When I grab one of the polylines to stretch the vertices, it grabs the vertices of the polyline underneath.
View 1 Replies
View Related
May 4, 2012
I'm using Photoshop CS4 on a Mac. I'm having a strange thing happen that hasn't always happened. When I click on a layer to move it... suddenly when I go to move it, it switches to another layer and moves THAT (wrong) layer. They are not linked.
Along similar lines, something else weird is happening. When I create a group.I can't move just one layer within that group. ALL layers in the group move. This also didn't used to happen.
I somehow changed a preference, but I can't for the life of me figure out.
View 3 Replies
View Related
May 14, 2012
I have a few sites that I use just to keep FeatureLines that I'm using for construction and don't want them interacting with anything in other sites. Of the when I draw an FL in one of those sites I'll get a message such as "Updating 286 points". This takes over 2 minutes to accomplish.
Since I don't have a lot of FeatureLines in the sited I wouldn't expect it to take that long. If it were a complicated site I might not think anything of it. If I add another FL I will still get the same message with the same # of points. So it isn't based on the number of vertices in the FL in that site or it would increase after adding each FL. There is no Surface that uses these FL. So It isn't updating a TIN.
Civil 3D 2012
Dell T7400, 4GB RAM, Win 7 Pro.
BTW. If I delete the FL I don't get any message or lag.
View 9 Replies
View Related
Nov 21, 2006
Is there currently any way to integrate voice commands into Inventor? It would be an incredible time saver. Software such as Dragon Naturally Speaking and IBM ViaVoice offer this technology for some Windows applications. I was just wondering if it could be applied to Inventor? If not, can we expect something for R12?
View 8 Replies
View Related
Jun 29, 2012
Any way to turn off HUD during commands? Seems to pop up right where I want to select geometry. I came across something about it for 2012 not being an option to turn it off but may be one for 2013
View 1 Replies
View Related
Mar 27, 2013
I heard about that its possible to track/grab/capture your brush/viewport while you are working in after effects.
Is this done in AE or did they use tools like fraps etc..?
You can do some cool Realtime Masking Effects with it.
View 4 Replies
View Related
Feb 6, 2013
how to Run Commands Using the API. And he also shows API can provide one sets of input to the command.
In my case, the Inventor command "analyze interference" need two sets of inputs. I tried to feed the commands with two selectset input throght API (see attached code). But the command looks like only take one set of them.So the behavior is not what I want.
So if it is possible, how to provide 2 set of pre-defined input to inventor commands throught API?
View 9 Replies
View Related
Apr 16, 2012
I have been using the ordinate set command to place set dimensions on an Inventor drawing in version 2012, I was looking for a similar way to rapidly add dimensions for hole diameters .
View 5 Replies
View Related
Feb 4, 2009
I am trying to align two identical images which are 180 degrees rotated apart ( and not exact mirrors ) I need to be able to grab the rotation handles from within the area of the image. In order to see matching features I need to be zoomed in, and can't see the features if I zoom out far enough to grab the handles. I prefer the handles over numerically transforming.
View 6 Replies
View Related
Jun 15, 2012
I have created a very basic reactor as a test. As you can see, it doesn't actually do anything other than set a variable so I know the error isn't caused by something I'm doing with the reactor.
(defun np:test (reactor callbackdata / ) (setq abc 123))(if (not np:reactor1) (setq np:reactor1 (vlr-command-reactor nil '((:vlr-commandwillstart . np:test))) ))
OK, so the problem I have found is that if I load this reactor into a drawing and then use the MVSETUP command but escape out without completing the command, AutoCAD throws an error and becomes unusable. When I then close AutoCAD down I am met with multiple unhandled exception errors before the app finally closes.
I then altered the reactor from a vlr-command-reactor to a vlr-editor-reactor and found that with this, I am no longer met with the same error while escaping out of MVSETUP. However, when I close CAD down I am eventually left with an 'AutoCAD Application has stopped working' error dialog on screen which reports that acad.exe as crashed.
I am working on AutoCAD Architecture 2012 (although I have tried it on 2013 to with the same results) on Windows 7 64bit. I have also tried this on ACA2012 x32 and found the same error exists.
I am doing something fundamentally wrong in the way I am handling reactors?
View 9 Replies
View Related
Aug 15, 2011
Whenever I customize some keyboard commands, they always seem to reset after I close and re-open Inventor. I'm not quite sure how I could be missing something. I've gotten very use to these commands in previous versions. Once I setup my commands, I am able to use them for the session.
Inventor 2012 Ultimate/XP Pro
View 9 Replies
View Related
Jun 20, 2011
I need to import the Custom user commands in the ribbon each time inventor starts up.
I found a thread to import app options en user interface, but nothing to import the ribbon.
[URL]
View 3 Replies
View Related
Sep 6, 2013
I used to have an A1 printed sheet of all of the ilogic commands, functions, syntax or whatever you call them. It was all nicely grouped and colour coded etc
Unfortunately I have since moved jobs and lost this and neither me or google can find this again, any copy or link? it may have been a pdf or excel format.
View 3 Replies
View Related
Nov 16, 2013
I've been wanting to increase the tolerance that Illustrator has for grabbing anchor points. I don't want to have to be within two pixels or so to be able to highlight or grab an anchor point. I've tried upping the selection tolerance to 8 px and it hasn't appeared to do anything.
View 6 Replies
View Related
Mar 25, 2013
what is the best resolution do you use when uploading images on the net to avoid grabbing/stealing of photos? (ex. on facebook, flickr etc)
View 6 Replies
View Related
May 13, 2013
Any QR code creator to use in IDW.
Explaining: having the internet address and putting it in the creator it creates the image code somewhere in the IDW.
View 9 Replies
View Related
Jul 8, 2013
how to show in the message box the assembly name or part name in the model browser without selecting it using vba?
View 7 Replies
View Related
May 2, 2012
Commands Work features is not active in edit base solid.
How to make plane? How to make active ?
View 2 Replies
View Related
Aug 28, 2011
I included a VB code in our drawing template, but then I get the "Warning: You have a non-empty VBA project.." message. If I copy the code into iLogic, I just get an error message. Why it runs fine as a separate macro, but doesn´t work in Inventor, or how I can include the code into the template? URL....
View 2 Replies
View Related
Mar 16, 2012
Trying to make some of code collapsible.According to what i know this is achieved like this
'[
"code to be colapsed here"
']
However it does not work, I am assuming that this is because I am running INV 2009 +ilogic.
View 3 Replies
View Related
Dec 6, 2011
I am using below code to create a Rectangle 4 mm X 3 mm x 1 mm, I am using mm template but the model shows 40 mm X 30 mm x 10 mm.
Private Sub CommandButton1_Click()
Dim oProjectMgr As DesignProjectManager
Set oProjectMgr = ThisApplication.DesignProjectManager
Dim oTemplatesPath As String
[code]....
View 4 Replies
View Related
Jan 11, 2012
Is it possible in VBA to automatically generate dimensions on a particular view?
Some told me that retrieve dimensions tool will be applicable. Looking for sample code for retrieve dimensions?
View 4 Replies
View Related
Jun 30, 2013
Is there a line of code I can add to my default.ivb file which will load another MYFILE.ivb file ?
View 1 Replies
View Related
Jul 26, 2012
This problem happens when I am using a brush and try to select a foreground color by clicking on the "Set Foreground Color" in the toolbox. The "Color Picker" appears, I choose a color, click "OK," and then a never-ending number of Firefox windows begins to open with the Photoshop help page (as if I repeatedly pressed the F1 key extremely quickly). I have to Ctrl-Alt-Del and quit Firefox or the opening of windows won't stop.
This doesn't happen every time I use the color picker to select a foreground color, but whenever it happens, that's what I'm doing.
I'm using Windows XP Pro x64 with 6GB RAM, Photoshop CS4, and a Wacom PTZ-631W tablet.
View 1 Replies
View Related
Oct 14, 2013
I am looking for a way to log out of vault from within Inventor using iLogic codes. I have created an iLogic rule that automates export an assembly drawing and all sub component drawings. In my code, I have suppressed all Inventor prompts but I do not have a way to suppress Vault prompts. I can manually log off from vault and run this rule without any problems. However, if I forget to do so, I am stuck responding to update requests from vault and check out requests constantly for each and every file.
any iLogic code to log in and log out of vault?
View 1 Replies
View Related
Sep 18, 2013
I recently created some iLogic based components. I wonder how difficult it is to protect the iLogic code, similar as VBA code which can be password protected.
The reason being:
1. Of course, to hide & protect the creator's modeling logic;
2. To avoid the relation between parameters being messed up by the end user unintensionally.
I did have the opportunity to raise the question during the Portathon event and the answer was that the protection not directly available, though the workaround could be mixing with some Inventor API coding in .NET.
However, this might defeat one of the benefits of iLogic, simple and ease to use, gentlr learning curve, especially for users with VBA experience. .NET might not be so easy for a lot of engineers from mechanical or other disciplines.
1 Disable the "Edit" button for iLogic components, including rules, forms, etc.;
2. Put all code that are to be protected in an external file, and then make that file unreadable (password protected, or other protection) to un-intended user, however, readable to those who have proper access privelege.
View 5 Replies
View Related