Advertisement
Guest User

ListGlobalVars_and_also_print_arrays

a guest
Apr 24th, 2017
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ListGlobalVars_and_also_print_arrays(){
  2.     🔪 := ListGlobalVars()
  3.     💩 := ""
  4.     ⏎ := "`r`n"
  5.     Loop, parse, 🔪, `n, `r
  6.     {
  7.         💩 .= A_LoopField
  8.         if (RegExMatch(A_LoopField,"^(\w+)\[Object\]",🍡))
  9.         {
  10.             _obj_name := 🍡1
  11.  
  12.             if InStr(A_LoopField, "WinClip") ; for some reason, PrintArray(WinClip) displays an error message, anyone know how to fix it?
  13.                 continue
  14.  
  15.             💩 .= ⏎ PrintArray_by_name(_obj_name) ⏎ ⏎
  16.         }
  17.     }
  18.     return 💩
  19. }
  20.  
  21.  
  22. PrintArray_by_name(){
  23.     ❑ := %➊%
  24.     return PrintArray(, 0)
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement