please give me an idea(script) to create a "DROPDOWN MENU" dialog box to extract User input in abaqus. By using getInput, I can ask for the same but I want to do it using dropdown dialog box.
I don't know exactly what you want to do, but a few ideas:
Use the "Real Simple GUI Dialog Builder", click in Plug-ins, Abaqus, RSG Dialog Builder and add a dropdown menu, then you need to create a "kernel function", for example this very useful thing:
def KernelFunction(keyword01):
print keyword01
save it in the working directory and then in the Kernel tab open that file.
I don't know exactly what
I don't know exactly what you want to do, but a few ideas:
Use the "Real Simple GUI Dialog Builder", click in Plug-ins, Abaqus, RSG Dialog Builder and add a dropdown menu, then you need to create a "kernel function", for example this very useful thing:
def KernelFunction(keyword01):
print keyword01
save it in the working directory and then in the Kernel tab open that file.
and voila, everything works! Simple indeed!