Jump to content

MasterPlayer

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by MasterPlayer

  1. another update i would like to share if i use ControlSend("title","","[NAME:UserID]","userid") ---> this is being passed to the application user id feild. i belive the issue with the array length but dont know how to solve
  2. my bad as i thought some other script of extension. here is the script. Run("C:\Users\sample.exe") WinWaitActive("Title","",10) Sleep(10000) ControlSend("title","","[NAME:UserID]",$CmdLine[1]) ControlSend("title","","[NAME:Password]",$CmdLine[2]) ControlClick("title","","[NAME:button]") is there a way i can capture the array values without mentioning the array range, or display the array index that is being sent by browser extension
  3. i am really Sorry i dont have the access to that and if i have also do not know which one to share. As mentioned completely new to this. what i can tell you is extension is built to pass the credentials to auto2exe file. in SSO we store credentials in app. when app is launched extension calls the built exe and pass the values. exe files pass the values to thick client applications through controlsend But,..Sorry for the mess..
  4. i just checked. it is not hardcoded. but it sends the data in array. same will be used to pass to the to the applications using controlsend. i am getting the error may be cause array range is not matching or something..
  5. This is partially working with below code. to the username field its passing value "0". but i have given username as "test" in source WinWaitActive("outlook","",1000)ControlSend("outlook","","[NAME:UserName]",$CmdLine[1])
  6. i am basic programmer, more explanation would be great
  7. when i run the below code i get - Array variable has incorrect no of subscripts or subscripts dimnsion range has exceded. That means array range i am giving is not matching with the receiving value. i want to know that array range so it can pass the value to right array WinWaitActive("outlook","",1000)ControlSend("outlook","","[NAME:UserName]",$CmdLine[1])ControlSend("outlook","","[NAME:Password]",$CmdLine[2])
  8. I have extension developed that saves the credentials and pass it to the thick client application. i have build the exe file that run's the thick client app and pass the array values from extension to thick client. I want to see those array values sample script below i have written for exe. WinWaitActive("outlook","",1000) ControlSend("outlook","","[NAME:UserName]",$CmdLine[1]) ControlSend("outlook","","[NAME:Password]",$CmdLine[2])
×
×
  • Create New...