Jump to content

alex146089

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by alex146089

  1. sorry for my english it would be great if you make a function that can check "suspend status"... If i suspend process twice than i must resume it twice...
  2. thank you for your reply but it will return integer like 0 or 1 or something else but i need a contents of that variable not an integer
  3. how i can get return value from compiled "function"??? if i run not compiled script then i can use "function" return value in other script if i compile and run---i get nothing... how to make my compiled script to redirect function return value to stdout??? sorry for my english... for example... Global $mySusRet $i_PID=1238 ;for exemple ae_suspend_process($i_PID) func ae_suspend_process($i_PID = -1) If $i_PID <> -1 Then Dim $s_TempFile Dim $aRecords $s_TempFile = _TempFile() $foo=Run(@ComSpec & " /c " & 'pssuspend' & ' ' & $i_PID ,"",@SW_HIDE,$STDOUT_CHILD) While 1 $line = StdoutRead($foo) If @error = -1 Then ExitLoop FileWrite($s_TempFile,$line) Wend _FileReadToArray($s_TempFile,$aRecords) FileDelete($s_TempFile) if $aRecords[7]="Process does not exist." Then $mySusRet=$aRecords[7] Else $mySusRet=$aRecords[6] EndIf EndIf Return $mySusRet EndFunc ;==>_suspend_process i get the result in "var"-> $mySusRet <- and can use this "var" in other scripts but if i run a compiled version of this cod i get nothing on stdout of this executable... helpppppp....
  4. every time when outlook is active or front most on screenI see my msgbox
  5. Opt("WinTitleMatchMode", 2) Run ("C:\Program Files\Outlook Express\MSIMN.EXE") Sleep ( 300 ) While 1 WinWaitActive("Outlook") MsgBox(262144,'','I see that you are active now') WinSetState("Outlook", "", @SW_MINIMIZE) Sleep ( 500 ) WEnd
  6. what is the problem what are you trying to do all work for me sorry for my english
  7. details here http://www.autoitscript.com/forum/index.php?showtopic=14799
  8. sorry for my english... Can somebody help me? How can i get a name of a user or network name of a machine that have been started some program on my PC... Is there any function to retrive that name from process PID??? please help if you can...I need it very much I'm building a network render automatization for Adobe After Effects 6.5 And want to code all stuff with --AUtoit--...and native AE6.5 --JavascriptS-- Something like --Gridlon X-factor for AE-- but adapted for our company needs and totally free for everyone I'm not a programmer (but i know very well --JavascriptS-- for Adobe After Effects 6.5) but your soft making me feel like i'm a real "WINDOWS debugger" Does anybody knows a solution for my question??? May be with "dll calls" or "reg reads" ??? Thank you for reading this post
×
×
  • Create New...