Problem with my 80, whenever i try to click the center button to choose my selection, it wont click! I have to click on it about 5 times for it to register.
Problem with my 80, whenever i try to click the center button to choose my selection, it wont click! I have to click on it about 5 times for it to register.
A lot of us are having this problem.
The coder is working on a fix for this now.
i let the timer run out for one of the questions and it showed up correct answer: (song) and everytime i hit the button it gave me the answer for the next song. even going to the menu and back again didn't fix it, but exiting the game does at least
i let the timer run out for one of the questions and it showed up correct answer: (song) and everytime i hit the button it gave me the answer for the next song. even going to the menu and back again didn't fix it, but exiting the game does at least
Same thing here. For me if i click the center button a couple of times it seems to jump back into it.
Also i like the game. But id really like it to have "guess who the artist is" and "guess which album this is on"
I also think that i read other post saying about ignoreing comic songs. I have some dane cook and i dont want that to play if possible.
Another thing. Like the other thread about music quiz. Im not sure if this is ignoring unknown artists or unknown titles but it should if it isnt.
If shoutout wants to in a later version, this can be solved by instead of checking the Index of what choice the user chooses, check the string against the song's name, that way both choices will be correct
or compare strings while making the options so they don't get reused.
__________________
Sig by MajerPayne
Use Mp3Tag to get your music to show up as playcount on Zune.net
This post may or may not contain accurate information. This post is that
of my own opinion, knowledge, and reasoning, and does not nessessarily
reflect that of CrowdGather or Zuneboards and their affiliates, period.
this should fix the chance of the same song showing up twice in the list of choices. just put this in where his setSongOption block is.
__________________
Sig by MajerPayne
Use Mp3Tag to get your music to show up as playcount on Zune.net
This post may or may not contain accurate information. This post is that
of my own opinion, knowledge, and reasoning, and does not nessessarily
reflect that of CrowdGather or Zuneboards and their affiliates, period.
void setSongOptions()
{
MediaPlayer.Pause();
//Chose correct song and play it
string randSongTitle;
int random = RandomHelper.GetRandomInt(4);
int randomSongIndex = RandomHelper.GetRandomInt(songCount);
correctSong = mediaLibrary.Songs[randomSongIndex];
//Fill list
for (int count = 0; count < 4; count++)
{
randSongTitle = mediaLibrary.Songs[RandomHelper.GetRandomInt(songCount)].Name;
while (randSongTitle == correctSong.Name)
randSongTitle = mediaLibrary.Songs[RandomHelper.GetRandomInt(songCount)].Name;
songTitles[count] = randSongTitle;
}
songTitles[random] = mediaLibrary.Songs[randomSongIndex].Name;
MediaPlayer.Resume();
MediaPlayer.Play(correctSong);
correctAnswer = random;
//roundTime = new TimeSpan();
loadedSongs = true;
}
this should work now until shutout can pushout a good fix
__________________
Sig by MajerPayne
Use Mp3Tag to get your music to show up as playcount on Zune.net
This post may or may not contain accurate information. This post is that
of my own opinion, knowledge, and reasoning, and does not nessessarily
reflect that of CrowdGather or Zuneboards and their affiliates, period.
I'm having a lot of trouble with this game like... recognizing clicks. Also, when i lose a level, I seem to just stay at the level, and If I click, I lose the next one.
<concur>i've experienced the same problems... just lag that seems unnecessary. i mean, c'mon, this shouldn't use up any more ram than it does to play songs normally on the zune</concur>
[edit: okay, so apparently i should've read further into the thread and said errors have been acknowledged and fixed?]
<concur>i've experienced the same problems... just lag that seems unnecessary. i mean, c'mon, this shouldn't use up any more ram than it does to play songs normally on the zune</concur>
haha, its a lot harder to develope game sthan your giving credit to. I have yet to experience any lag or any problems (except the one where u loose the next around after getting 1 round wrong). Ive said many times, I am working on an update due out friday or saturday that should clean up the code, and fix the lag error and the game loose error.