Autodesk Inc. is an American multinational corporation that focuses on 3D design software for use in the architecture, engineering, construction, manufacturing, media and entertainment industries.
Questions tagged [autodesk]
981 questions
0
votes
0 answers
How to move an object with hot keys in Maya python
well I got this piece of code-
def moveCurrent(direction):
getSel = cmds.ls(sl=True)
if getSel:
if direction == "up":
currentVal = cmds.getAttr("%s.tx" % getSel[0])
cmds.setAttr("%s.tx" % getSel[0],…

ErezProductions
- 41
- 3
- 11
0
votes
1 answer
How to recive an input from the keyboad in Maya 2016 python
I wanted to know if there is an option in Maya 2016 , python script, to get the data from the keyboard, but not with opening UI windows or things like the
'raw_input' command in python, but live, like if you play a game, and you press a button, an…

ErezProductions
- 41
- 3
- 11
0
votes
2 answers
Error in Autodesk API call through PHP with CURL
I am trying to make call to Autodesk Authentication API through PHP with the help of CURL but I am continously getting false response.
Not sure what is wrong, can anyone please suggest how to call REST services with the help of CURL in PHP?
My code…

Neha Narlawar
- 229
- 3
- 13
0
votes
1 answer
How do I kill a process that doesn't have any windows in VB.net?
I am new to VB.net and I am trying to write a forms app that works with Autodesk Inventor.
Unfortunately, every time I close Inventor, the "Inventor.exe" process still stays. I didn't realize this while debugging and I only realized this when I…

RBuntu
- 907
- 10
- 22
0
votes
3 answers
Is there an option to recieve the data from a UI window to a variable?
I saw that it is possible to print the data that has been written in the user interface window, however, when I searched in the internet, none of the options were like that, to retrieve the data into a variable.
This is a very simple window code -…

ErezProductions
- 41
- 3
- 11
0
votes
2 answers
How to add a color to an object in Autodesk Maya 2016 in Python scripts?
I am new in Autodesk Maya.
I looked over the internet to find some details about how can I command in the python scripting , to an object to change it's color when it is selected.
I know how to see the selected object, however, I didn't succeed to…

ErezProductions
- 41
- 3
- 11
0
votes
1 answer
Mayapy.exe as python interpreter for SublimeREPL
I've tried following SublimeREPL instructions for setting default_extend_env.
I tried:
"default_extend_env":
{"PATH": "{PATH}:C:/Program Files/Autodesk/Maya2016/bin/mayapy.exe"}
I also tried:
"default_extend_env":
{"PATH":…
0
votes
0 answers
Making 3D or 2D Modelling and Drawings
I need some pictures for my site like this;
https://farm9.staticflickr.com/8014/7490668848_a800ec5337_b.jpg
https://farm8.staticflickr.com/7270/7769969514_acd8dcf948_b.jpg
How can I draw pictures like this? I need help very much

oskiyano
- 1
0
votes
2 answers
Autodesk Vault API - Renaming Files
I am new to Autodesk Vault Professional. I have a task to rename files that are stored in the database. There are around 2000 files and there is a pattern how the new name will look like. I have searched, googled on the net but did not find anything…

Nash
- 1,043
- 2
- 14
- 33
0
votes
1 answer
Python code has an error: 'module' object is not callable
I try to coonect to API of Autodesk Inventor with Python. I can create a new file but then an error aooears here:
import os
import win32com.client
from win32com.client import constants
from win32com.client import gencache
os.system(r'C://Programm…

Alexey Tumanov
- 21
- 1
- 2
0
votes
1 answer
Does anyone know how to download the Three.js converted file using Autodesk View and Data API?
I am trying to use the WEBGL(three.js) file translated through REST api using Autodesk view and Data API.
But, I am not able to download the streaming JSON file, does any one knows about this?

Shridhar Patil
- 33
- 1
- 3
0
votes
2 answers
How to combine multiple captures through 123D Capture?
I was wondering if there is a way to combine multiple captures using either the ipad app or desktop application for 123D Capture through Autodesk. I want to take a capture of an object, flip it, take a second capture of the bottom of the object, and…

Kyra
- 5,129
- 5
- 35
- 55
0
votes
2 answers
Autocad scaling
I'm studing AutoCAD and encountered with a scale problem.
I write a simple detail, but when i'm setting Lineweight 1.00 mm AutoCAD draw 2cm line instead of 1mm line. I tried to change scale in Annotate -> Dimensions -> Scale factor = 0.05, but it…

Alex Zhukovskiy
- 9,565
- 11
- 75
- 151
0
votes
1 answer
Hide a Part (document) in Autodesk Inventor
I am using Autodesk Inventor Proffessional 2015 and the C# SDK API. I am able to hide a full AssemblyDocument by traversing the ComponentOccurrences:
foreach ( var occurrence in _assemblyDocument.ComponentDefinition.Occurrences )
…

marsop
- 323
- 4
- 19
0
votes
1 answer
Problems with .vsp3d file from Civil 3D to 3D Max
It maybe doesn't fit exactly to that forum but I really need help with the .vsp3d file.
When I want to export my project from Autodesk Civil 3D to 3D Max and open it in Civil View I only can open the Corridor Baseline and the Surface, however,…

The B
- 545
- 2
- 5
- 16