Klovis 0 Posted June 27, 2011 Is it possible to control the volume of a computer with an input box? Share this post Link to post Share on other sites
Melba23 3,452 Posted June 27, 2011 Klovis,It most certainly is - try searching the forum for "volume" and you get many threads discussing how to adjust the volume. All you need to do then is use the returned value from the InputBox as a parameter. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites
TomDuDolan 0 Posted June 27, 2011 (edited) Is it possible to control the volume of a computer with an input box? Yeah I think it is, though on scale of 1 - 100 Try this (top of head no testing) $InputSetData = GUICtrlSetData($Input1) in the While 1 SetSoundWaveVolume($InputSetData) Edited June 27, 2011 by TomDuDolan My ickle pieces of software :3Radio Scriptr //Almost completeSimple IP/URL pinger, my first program. //CompletedSimple Downloader // Working - basic stateOn-GoingRadio Scriptr - Radio Server. Share this post Link to post Share on other sites
monoscout999 10 Posted June 27, 2011 Yeah I think it is, though on scale of 1 - 100 Try this (top of head no testing) $InputSetData = GUICtrlSetData($Input1) in the While 1 SetSoundWaveVolume($InputSetData) eemm i think you miss something.... get insted of set $InputGetData = GUICtrlGetData($Input1) in the While 1 SetSoundWaveVolume($InputSetData) Share this post Link to post Share on other sites