Code Monkey home page Code Monkey logo

Comments (2)

MCxQC avatar MCxQC commented on June 14, 2024 1

Enclose the Control Flow Statements (if, etc.) in braces (code block).

https://www.autohotkey.com/docs/v2/Language.htm#control-flow

If any of the control flow statements have only a single statement, that statement need not be enclosed in a block.

https://www.autohotkey.com/docs/v2/lib/Block.htm

DevicesActions(ThisDeviceStatusHasChanged) {

	If (ThisDeviceStatusHasChanged = "Generic Monitor (HDMI) Connected") {
		voice := ComObjCreate("SAPI.SpVoice")
		;voice.rate := -10
		voice.volume := 100
		voice.Speak("Connected")
	}

	If (ThisDeviceStatusHasChanged = "Generic Monitor (HDMI) Disconnected") {
		voice := ComObjCreate("SAPI.SpVoice")
		;voice.rate := -10
		voice.volume := 100
		voice.Speak("Disconnected")
	}
}

from deviceidpnp.

HaomingChen1998 avatar HaomingChen1998 commented on June 14, 2024

Enclose the Control Flow Statements (if, etc.) in braces (code block).

https://www.autohotkey.com/docs/v2/Language.htm#control-flow

If any of the control flow statements have only a single statement, that statement need not be enclosed in a block.

https://www.autohotkey.com/docs/v2/lib/Block.htm

DevicesActions(ThisDeviceStatusHasChanged) {

	If (ThisDeviceStatusHasChanged = "Generic Monitor (HDMI) Connected") {
		voice := ComObjCreate("SAPI.SpVoice")
		;voice.rate := -10
		voice.volume := 100
		voice.Speak("Connected")
	}

	If (ThisDeviceStatusHasChanged = "Generic Monitor (HDMI) Disconnected") {
		voice := ComObjCreate("SAPI.SpVoice")
		;voice.rate := -10
		voice.volume := 100
		voice.Speak("Disconnected")
	}
}

Thank you SO MUCH, I finally made it work! Again, I really appreciate your script, have a great day!

from deviceidpnp.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.