Jump to content

Search the Community

Showing results for tags 'lync'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 2 results

  1. Here is a very simple little program I made for fun, Lets you change your Lync Note to something random or predefined. In the ini file, change NoteNo to a number greater than 0 to have the note always be the same quote. 0 or blank will randomly pick one. #Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Icon=lync notes.ico #AutoIt3Wrapper_Run_Tidy=y #Tidy_Parameters=/tc 4 /reel #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** $LyncTitle = "Microsoft Lync" If WinExists($LyncTitle) And FileExists(@ScriptDir & "\lync notes.ini") Then $CurMouse = MouseGetPos() $LyncPos = WinGetPos($LyncTitle) $qArray = IniReadSection(@ScriptDir & "\lync notes.ini", "Quotes") $nN = IniRead(@ScriptDir & "\lync notes.ini", "Lync", "NoteNo", "") $rN = Round(Random(1, $qArray[0][0]), 0) If $nN < 1 Then $Note = $qArray[$rN][1] Else $Note = $qArray[$nN][1] EndIf ClipPut($Note) WinActivate($LyncTitle) MouseClick("Left", $LyncPos[0] + 20, $LyncPos[1] + 62, 1, 1) Send("^v") ClipPut("") MouseMove($CurMouse[0], $CurMouse[1], 1) EndIf lync notes.ico lync notes.ini
  2. Has anyone ever successfully done anything with automating functions of Microsoft lync? Primarily the change of status or the message window above your status (preferably without having to activate the window and send keys, anyone can do that.) I'm thinking more of API integration or custom DLL functions with autoit as the front end?
×
×
  • Create New...