If KeyCode = KeyCodes.KEYCODE_VOLUME_DOWN Then
If phoneData.GetVolume(phoneData.VOLUME_MUSIC) > 0 Then
phoneData.SetVolume(phoneData.VOLUME_MUSIC, phoneData.GetVolume(phoneData.VOLUME_MUSIC) - 1, True)
End If
End If
If KeyCode = KeyCodes.KEYCODE_VOLUME_UP Then
If phoneData.GetVolume(phoneData.VOLUME_MUSIC) < phoneData.GetMaxVolume(phoneData.VOLUME_MUSIC) Then
phoneData.SetVolume(phoneData.VOLUME_MUSIC, phoneData.GetVolume(phoneData.VOLUME_MUSIC) + 1, True)
End If
End If