ejmin ejoni:
hi guys, i need to set text every second but i also i need play sound every 5 seconds, do u have any idea?
this is what i wrote, but it dont work correctly
Something like this, if timer is set to one second
static int second = 0; second++; if(second==5) { PlaySound("news"); second = 0; }
Navdeep Singh:
Thank u, so much
Something like this, if timer is set to one second
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
hi guys, i need to set text every second but i also i need play sound every 5 seconds, do u have any idea?
this is what i wrote, but it dont work correctly