카테고리 없음2020. 11. 4. 13:31

ACT


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'

Posted by 오늘보다 나은 내일
카테고리 없음2019. 12. 12. 12:17

속성에서 "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" -no-sandbox 로 변경

 

혹은 

 

호환성 탭에서 windows7 로 변경

Posted by 오늘보다 나은 내일
카테고리 없음2019. 9. 24. 10:47

GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}

Posted by 오늘보다 나은 내일