Create Fixed Support automatically with name selection that has 'fix' in it
num = ExtAPI.DataModel.Project.Model.NamedSelections.Children.Count
for ct in range(num):
nmtmp = ExtAPI.DataModel.Project.Model.NamedSelections.Children[ct].Name
nm = nmtmp.lower() # lowercase for comparison
if nm.find('fix')>=0:
cker = nmtmp+' is fixed' # found one that mets criteria
print cker
fixfix = ExtAPI.DataModel.Project.Model.Analyses[0].AddFixedSupport()
fixfix.Location = ExtAPI.DataModel.Project.Model.NamedSelections.Children[ct]
fixfix.Name = nmtmp+'_auto'
전체 글
- ACT 2020.11.04
- 크롬에서 인터넷이 안될때 2019.12.12
- GodMode 2019.09.24 1
ACT
2020. 11. 4. 13:31
크롬에서 인터넷이 안될때
2019. 12. 12. 12:17
속성에서 "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" -no-sandbox 로 변경
혹은
호환성 탭에서 windows7 로 변경
GodMode
2019. 9. 24. 10:47
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}