Jump to content

Recommended Posts

Posted

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!

Posted

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!

  • Moderators
Posted

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:

  Reveal hidden contents

 

  • Moderators
Posted (edited)

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:

  Reveal hidden contents

 

Posted

  Melba23 said:

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!

  • Moderators
Posted

ShadowOps,

  Quote

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

As I said before:
  Quote

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:

  Reveal hidden contents

 

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
  • Recently Browsing   0 members

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