Jump to content

Sound on Tab Click?


 Share

Recommended Posts

Is it possible to play a .wav file when you click on a tab? I have tried the below code, only to find 4 sounds playing at the beginning of my script! :D

GuiCtrlCreateTabItem("Tab1")

SoundPlay (@TempDir & '\sound.wav', 1)

GuiCtrlCreateTabItem("Tab2")

SoundPlay (@TempDir & '\sound.wav', 1)

GuiCtrlCreateTabItem("Tab3")

SoundPlay (@TempDir & '\sound.wav', 1)

GuiCtrlCreateTabItem("Tab4")

SoundPlay (@TempDir & '\sound.wav', 1)

Now obviously I left out half of the script, so please don't give me crap! All help is appreciated. Thanks!

Link to comment
Share on other sites

Is it possible to play a .wav file when you click on a tab? I have tried the below code, only to find 4 sounds playing at the beginning of my script! :D

GuiCtrlCreateTabItem("Tab1")

SoundPlay (@TempDir & '\sound.wav', 1)

GuiCtrlCreateTabItem("Tab2")

SoundPlay (@TempDir & '\sound.wav', 1)

GuiCtrlCreateTabItem("Tab3")

SoundPlay (@TempDir & '\sound.wav', 1)

GuiCtrlCreateTabItem("Tab4")

SoundPlay (@TempDir & '\sound.wav', 1)

Now obviously I left out half of the script, so please don't give me crap! All help is appreciated. Thanks!

Link to comment
Share on other sites

  • Moderators

ShadowOps,

Try this if you want different sounds for each tab:

#include <GUIConstantsEx.au3>

GUICreate("Test", 500, 500)

$tab = GUICtrlCreateTab(10, 10, 200, 100)
    $tab0 = GUICtrlCreateTabItem("tab0")
    $tab1 = GUICtrlCreateTabItem("tab1")
    $tab2 = GUICtrlCreateTabItem("tab2")
GUICtrlCreateTabItem("")   ; end tabitem definition

GUISetState()

While 1

    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
        Case $tab
            Switch GUICtrlRead($tab)
                Case 0; tab0
                    SoundPlay (@TempDir & '\sound0.wav', 1)
                Case 1; tab1
                    SoundPlay (@TempDir & '\sound1.wav', 1)
                Case 2; tab2
                    SoundPlay (@TempDir & '\sound2.wav', 1)
            EndSwitch
    EndSwitch

WEnd

But if you want the same sound regardless of the tab selected, you can replace the Case $tab section with:

Case $tab
    SoundPlay (@TempDir & '\sound.wav', 1)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • Moderators

ShadowOps,

The answer is in the other thread!

M23

P.S. Please try not to double post. ;-)

P.S. Please try not to double post. ;-)

Edited by Melba23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

ShadowOps,

Try this if you want different sounds for each tab:

#include <GUIConstantsEx.au3>

GUICreate("Test", 500, 500)

$tab = GUICtrlCreateTab(10, 10, 200, 100)
    $tab0 = GUICtrlCreateTabItem("tab0")
    $tab1 = GUICtrlCreateTabItem("tab1")
    $tab2 = GUICtrlCreateTabItem("tab2")
GUICtrlCreateTabItem("")  ; end tabitem definition

GUISetState()

While 1

    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
        Case $tab
            Switch GUICtrlRead($tab)
                Case 0; tab0
                    SoundPlay (@TempDir & '\sound0.wav', 1)
                Case 1; tab1
                    SoundPlay (@TempDir & '\sound1.wav', 1)
                Case 2; tab2
                    SoundPlay (@TempDir & '\sound2.wav', 1)
            EndSwitch
    EndSwitch

WEnd

But if you want the same sound regardless of the tab selected, you can replace the Case $tab section with:

Case $tab
    SoundPlay (@TempDir & '\sound.wav', 1)

M23

Could you repost that code so that "sound.wav" is the sound that plays if you click on any tab? In other words, there is only one sound that plays for every tab. Thanks, I'm just a beginner!

Link to comment
Share on other sites

  • Moderators

ShadowOps,

code so that "sound.wav" is the sound that plays if you click on any tab

As I said before:

if you want the same sound regardless of the tab selected, you can replace the Case $tab section

#include <GUIConstantsEx.au3>

GUICreate("Test", 500, 500)

$tab = GUICtrlCreateTab(10, 10, 200, 100)
    $tab0 = GUICtrlCreateTabItem("tab0")
    $tab1 = GUICtrlCreateTabItem("tab1")
    $tab2 = GUICtrlCreateTabItem("tab2")
GUICtrlCreateTabItem("") ; end tabitem definition

GUISetState()

While 1

    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
        Case $tab
            SoundPlay (@TempDir & '\sound.wav', 1)
    EndSwitch

WEnd

Do not take it too seriously - we were all beginners once! :-)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...