Guest User

Untitled

a guest
Oct 21st, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html lang="ja">
  4. <head>
  5. <meta charset="utf-8"/>
  6. <title>uwsc script</title>
  7.  
  8. <!--
  9. <link href="js/google-code-prettify/src/prettify.css" type="text/css" rel="stylesheet" />
  10. <link href="js/google-code-prettify/styles/sunburst.css" type="text/css" rel="stylesheet" />
  11. <link href="js/google-code-prettify/styles/desert-modify.css" type="text/css" rel="stylesheet" />
  12. <link href="js/google-code-prettify/styles/sons-of-obsidian.css" type="text/css" rel="stylesheet" />
  13. -->
  14. <link href="js/google-code-prettify/styles/sons-of-obsidian.css" type="text/css" rel="stylesheet" />
  15. <script type="text/javascript"
  16. src="js/google-code-prettify/src/prettify.js"></script>
  17. <script type="text/javascript"
  18. src="js/google-code-prettify/src/lang-uwsc.js"></script>
  19. </head>
  20.  
  21. <body onload="prettyPrint();">
  22.  
  23. <pre class="prettyprint linenums lang-uwsc">
  24. <code>
  25. // CTRLキーにてアクティブウィンドウの画像保存  #n9
  26.  
  27. Class サンプル
  28. Procedure キー状態を得る()
  29. GETKEYSTATE(VK_CTRL)
  30. while True
  31. if GETKEYSTATE(VK_CTRL) then
  32. dim id = GETID(GET_ACTIVE_WIN)
  33. dim titl = STATUS(id, ST_TITLE)
  34. if titl <> "" then SAVEIMG(titl, id) // タイトル名にて保存
  35. endif
  36. Sleep(0.2)
  37. wend
  38. fend
  39. EndClass
  40.  
  41. TEXTBLOCK
  42. あいうえお
  43. ENDTEXTBLOCK
  44. </code>
  45. </pre>
  46.  
  47. </body>
  48. </html>
Add Comment
Please, Sign In to add comment