英文:
Probable syntax-error in multi-monitor-, GUI- and clipboard-context
问题
%Final_x% -= (%width% / 2)
英文:
I'm new to AHK and the following syntax doesn't work:
%Final_x% -= (%width% / 2)
Can you spot my error?
答案1
得分: 1
"Final_x := Final_x - width / 2"
Thank you all for your contributions!
英文:
After reading the doc on AHK's somewhat quirky varibale syntax I managed to fix it this way:
Final_x := Final_x - width / 2
Thank you all for your contributions!
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论