

It is possible that the other applications may have control of the sound card and have locked out Studio. Please shut down other media playing software while trying to use Studio. Now click the Driver tab and you will see all the driver information including Driver Provider and Driver Date. To determine the manufacturer and date of the video card driver, double click on the video card name. In Device Manager the sound card is displayed in the Sound, video and game controllers section. If you are using Windows Vista, just select the Device Manager button directly from the System window. If you are using Windows XP you can select the Hardware tab then click the Device Manager button. You can get to Device Manager by right clicking on the My Computer icon and selecting Properties. You can determine what sound card you have by checking in Device Manager. If you want to distinguish between walking or jumping, you need to perform a couple of more checks, but nothing hard.Make sure that you have the latest drivers installed for your sound card from the manufacturer's website.

Play sound if walk/jump on a musical blockĪs commented in code, this code may work both for jumping on top of or walking onto a musical block. Var curr_coll = place_meeting(x,y+1,oBlock) So, our full code will be: /// Step Event for object 'oPlayer' /// If we want to just play a sound only when landing on a musical key, we can write: if ( (curr_coll=1) & (prev_coll=0) ) You can use both a switch statement, or a chain of ifs, depending on your purpose. That said, we can write our code to check for the needed values.

