PlaySound(@"Alert4"); No sound is played, no error and my computer make other sounds without any problem. So it isn't the computer.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
PlaySound()
Collapse
X
-
PlaySound()
Please show me where I'm being stupid. I've played sounds before from code and now i can't make it work. The sound I'm trying to play is in the nt sounds folder. I insert this line of code into my indicator without any conditions just to test it and no sound is played nor is there an error in the log.
PlaySound(@"Alert4"); No sound is played, no error and my computer make other sounds without any problem. So it isn't the computer.Tags: None
-
-
Hello Mike,
If you're using PlaySound() with a default sound file, you do not need to specify a path with the @ symbol. This should only be used if you are directing the sound outside of the default directory:
Please try using PlaySound("Alert4.wav");
If using CalulateOnBarClose = True, this alert will not trigger until the next bar forms.MatthewNinjaTrader Product Management
Comment
-
cobc is set to false and removed the @ symbol
What I sent you was PlaySound(@"Alert4");
Very dumb I changed to this...PlaySound("Alert4.wav"); I forgot to include the file extension.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
27 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
17 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
9 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
10 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
17 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment