Old 06-13-2008, 05:06 AM   #81 (permalink)
Zuner
 
skyroket's Avatar
 
Join Date: May 2008
Posts: 97
skyroket is on a distinguished road
Default

@iceman thats a good idea...
__________________
Yes, I believe in God.



skyroket is offline   Reply With Quote

Advertisement [Remove Advertisement]
Old 06-13-2008, 09:06 AM   #82 (permalink)
Zuner
 
Join Date: Jun 2007
Posts: 98
mikem709 is on a distinguished road
Default

Nope, that brings us back to the age old problem of hacking the firmware. Unless you happen to have the source code for WLM. And it happens to be written in C#. And even then you'd still need cracked firmware to connect to the internet. As of right now, zunes can only communicate with each other. Maybe in the future we will see MS release it for the zune in some faraway future update.




mikem709 is offline   Reply With Quote
Old 06-13-2008, 09:30 AM   #83 (permalink)
Zune Guardian
 
charmed61's Avatar
 
Join Date: Mar 2008
Location: The Gold Rush State!
Posts: 678
charmed61 is on a distinguished road
Default

is it possible to make it in touch version? the clicking of my zune IM is really loud and it's hard to sneak it in class! maybe like tap left to go left right to go right and etc. and tap middle 2 times to select the letter?
__________________




charmed61 is offline   Reply With Quote
Old 06-13-2008, 06:53 PM   #84 (permalink)
Zuner
 
skyroket's Avatar
 
Join Date: May 2008
Posts: 97
skyroket is on a distinguished road
Default ZIM Zune instant messenger

Can anyone change the looks of this application...No offense to the creator, its ugly. I really like the keyboard in Galactic Wars and i think it would be perfect for this. Also, more typing space and an all around better way of texting, like you start at a main menu, and select a nearby zune to text. then it takes you to the keyboard screen where you text ur message (up to 50 characters??) then you hit send (play button) and it takes you to the conversation screen. when your zune friend texts back, a reply button in the corner directs you to the keyboard screen again. Maybe above the keyboard (and the text you are currently typing) is the last text received from your zune buddy. This would be an amazing improvement if implemented...anyone agree?

options would also be cool, like music, keyboard style, left-handed, right-handed texting, or regular (the way you listen to music).

also, I cant get this version to work, any tips? Thanks

THIS COULD BE EPIC
__________________
Yes, I believe in God.



skyroket is offline   Reply With Quote
Old 06-15-2008, 10:58 AM   #85 (permalink)
Experienced Zuner
 
NuklHed92's Avatar
 
Join Date: Jan 2008
Location: Ohio
Posts: 113
NuklHed92 is on a distinguished road
Default

finally, a messenger!!!! havent downloaded it yet but am excited to use it!
__________________








NuklHed92 is offline   Reply With Quote
Old 06-15-2008, 06:39 PM   #86 (permalink)
Zewbie
 
Join Date: Jun 2008
Posts: 7
DoctorSkitzo is on a distinguished road
Send a message via MSN to DoctorSkitzo Send a message via Skype™ to DoctorSkitzo
Default

Quote:
Originally Posted by Sk8ierBoi View Post
THIS ROCKS!!!!!!! =D

Now I wish my friends had a Zune so we can talk lol
Exactly my thoughts




DoctorSkitzo is offline   Reply With Quote
Old 06-16-2008, 02:16 AM   #87 (permalink)
Zewbie
 
Join Date: Jan 2008
Posts: 7
Mcafee16 is on a distinguished road
Default

Ok, dl'd this 2hrs ago, (it's now 4am) and instantly fell in love. Yes i won't it landscaped, word-wrapped, and qwerty-ified. And i was able to fix one of those things. The qwerty-ness lol. So, open up your game.cs file in MS Visual C# 2008 and switch the array code with this code, minus the ""s

"
// TODO: Add your initialization logic here
packetWriter = new PacketWriter();
packetReader = new PacketReader();
cursorX = 0;
cursorY = 0;
height = 5;
width = 10;
curMes = "";
lastPushed = "";
messages=new ArrayList();

maxLength = 50;

Buttons=new String[width][];
for(int x=0;x<width;x++)
Buttons[x] = new String[height];
Buttons[0][0] = "q";
Buttons[1][0] = "w";
Buttons[2][0] = "e";
Buttons[3][0] = "r";
Buttons[4][0] = "t";
Buttons[5][0] = "y";
Buttons[6][0] = "u";
Buttons[7][0] = "i";
Buttons[8][0] = "o";
Buttons[9][0] = "p";
Buttons[0][1] = "a";
Buttons[1][1] = "s";
Buttons[2][1] = "d";
Buttons[3][1] = "f";
Buttons[4][1] = "g";
Buttons[5][1] = "h";
Buttons[6][1] = "j";
Buttons[7][1] = "k";
Buttons[8][1] = "l";
Buttons[9][1] = ":";
Buttons[0][2] = "z";
Buttons[1][2] = "x";
Buttons[2][2] = "c";
Buttons[3][2] = "v";
Buttons[4][2] = "b";
Buttons[5][2] = "n";
Buttons[6][2] = "m";
Buttons[7][2] = "<";
Buttons[8][2] = ">";
Buttons[9][2] = ")";
Buttons[0][3] = " ";
Buttons[1][3] = ".";
Buttons[2][3] = ",";
Buttons[3][3] = "?";
Buttons[4][3] = "(";
Buttons[5][3] = "!";
Buttons[6][3] = "@";
Buttons[7][3] = "#";
Buttons[8][3] = "$";
Buttons[9][3] = "&";
Buttons[0][4] = "1";
Buttons[1][4] = "2";
Buttons[2][4] = "3";
Buttons[3][4] = "4";
Buttons[4][4] = "5";
Buttons[5][4] = "6";
Buttons[6][4] = "7";
Buttons[7][4] = "8";
Buttons[8][4] = "9";
Buttons[9][4] = "0";

base.Initialize();

"

Make sure to paste OVER the Array coding that was already there.
Then, save all>build>deploy zim

Hope this helps, i also changed the displayable characters to 50 and found this Word wrap code but can't figure out to implement it specifically for this!

"
public static string[] Wrap(string text, int maxLength)

{

text = text.Replace("\n", " ");

text = text.Replace("\r", " ");

text = text.Replace(".", ". ");

text = text.Replace(">", "> ");

text = text.Replace("\t", " ");

text = text.Replace(",", ", ");

text = text.Replace(";", "; ");

text = text.Replace("
", " ");

text = text.Replace(" ", " ");



string[] Words = text.Split(' ');

int currentLineLength = 0;

ArrayList Lines = new ArrayList(text.Length / maxLength);

string currentLine = "";

bool InTag = false;



foreach (string currentWord in Words)

{

//ignore html

if (currentWord.Length > 0)

{



if (currentWord.Substring(0,1) == "<")

InTag = true;



if (InTag)

{

//handle filenames inside html tags

if (currentLine.EndsWith("."))

{

currentLine += currentWord;



}



else

currentLine += " " + currentWord;

if (currentWord.IndexOf(">") > -1)

InTag = false;



}



else

{

if (currentLineLength + currentWord.Length + 1 < maxLength)

{

currentLine += " " + currentWord;

currentLineLength += (currentWord.Length + 1);

}



else

{

Lines.Add(currentLine);

currentLine = currentWord;

currentLineLength = currentWord.Length;



}

}

}

}



if (currentLine != "")

Lines.Add(currentLine);

string[] textLinesStr = new string[Lines.Count];

Lines.CopyTo(textLinesStr, 0);

return textLinesStr;

}

"

PM me if you have any questions, or comments and Thanks so much Nurta/God for this great app

BTW **First Post**!!!

Last edited by Mcafee16; 06-16-2008 at 02:17 AM. Reason: left an "o" of the word one



Mcafee16 is offline   Reply With Quote
Old 06-16-2008, 02:31 AM   #88 (permalink)
God
α+ω
Retired Staff
Professional Spammer
 
Join Date: Jan 2007
Location: Look up
Posts: 7,805
God has much to be proud ofGod has much to be proud ofGod has much to be proud ofGod has much to be proud ofGod has much to be proud ofGod has much to be proud ofGod has much to be proud of
Send a message via AIM to God Send a message via MSN to God Send a message via Yahoo to God Send a message via Skype™ to God
Awards Showcase
Biggest Abuser of Noobs Trogdor's Peasant Favorite zB Extremity 
Total Awards: 3
Default

Hmm, that word wrap thing seems to go by number of chars. Doing that, I can create a quasi-word wrap... Hmm, I may just do that...
__________________
Quote:
Originally Posted by sb
10:15 PM <Marshillboy> I almost never eat out

Nurta.net cures 29 known diseases



God is offline   Reply With Quote
Old 06-16-2008, 02:36 AM   #89 (permalink)
Zewbie
 
Join Date: Jan 2008
Posts: 7
Mcafee16 is on a distinguished road
Default

Quote:
Originally Posted by Nurta View Post
Hmm, that word wrap thing seems to go by number of chars. Doing that, I can create a quasi-word wrap... Hmm, I may just do that...

^^^ If you do i'll <3 u, maybe even more than i do my zune
also, sorry for the SUPER long reply above.



Mcafee16 is offline   Reply With Quote
Old 06-16-2008, 07:45 PM   #90 (permalink)
Experienced Zuner
 
gpdude's Avatar
 
Join Date: Jun 2008
Location: Earth
Posts: 123
gpdude has disabled reputation
Default

this looks good
__________________
trumpeter,Zuner,baseball player It's all good!




gpdude is offline   Reply With Quote
Old 06-16-2008, 07:49 PM   #91 (permalink)
Zewbie
 
Join Date: Jan 2008
Posts: 7
Mcafee16 is on a distinguished road
Default

Due to interest in my keyboard, thru PM's, Here's a .rar link for my keyboard.

http://www.megaupload.com/?d=NQJRTZXY



Mcafee16 is offline   Reply With Quote
Old 06-18-2008, 08:47 PM   #92 (permalink)
Zuner
 
Join Date: Nov 2007
Posts: 93
tw05baller is on a distinguished road
Default

ok so i made a video of the chat in action between two zunes to show it actually works between them. so here it is for all those wanting screenshots and proof and what-not....

+ YouTube Video
ERROR: If you can see this, then YouTube is down or you don't have Flash installed.



tw05baller is offline   Reply With Quote
Old 06-19-2008, 08:59 AM   #93 (permalink)
Squirt
 
Hawthorne's Avatar
 
Join Date: Jun 2008
Posts: 29
Hawthorne is on a distinguished road
Send a message via Skype™ to Hawthorne
Default

Nice video, but I hate the edited N.E.R.D music, put the whole song




Hawthorne is offline   Reply With Quote
Old 06-19-2008, 09:52 AM   #94 (permalink)
Experienced Zuner
 
miceylulu's Avatar
 
Join Date: May 2008
Posts: 182
miceylulu is on a distinguished road
Default

I don't know if this is helpful or not, but I made a new button thing that you can use for the keyboard.



I think it looks neat, anyway...lol.




miceylulu is offline   Reply With Quote
Old 06-20-2008, 06:06 AM   #95 (permalink)
Zuner
 
skyroket's Avatar
 
Join Date: May 2008
Posts: 97
skyroket is on a distinguished road
Default

looks nice, I like the blending of colors (those two shades of grey are actually my favorite)
good work +rep
__________________
Yes, I believe in God.



skyroket is offline   Reply With Quote
Old 06-20-2008, 07:38 AM   #96 (permalink)
Jr. Member
 
Join Date: Mar 2008
Posts: 448
Techy Dude is on a distinguished road
Default

sick man











Techy Dude is offline   Reply With Quote
Old 06-20-2008, 08:57 AM   #97 (permalink)
Experienced Zuner
 
miceylulu's Avatar
 
Join Date: May 2008
Posts: 182
miceylulu is on a distinguished road
Default

Quote:
Originally Posted by skyroket View Post
looks nice, I like the blending of colors (those two shades of grey are actually my favorite)
good work +rep
Oh! Thank you! I just made it in Photofiltre real quick, but thanks for the rep




miceylulu is offline   Reply With Quote
Old 06-20-2008, 10:40 PM   #98 (permalink)
God
α+ω
Retired Staff
Professional Spammer
 
Join Date: Jan 2007
Location: Look up
Posts: 7,805
God has much to be proud ofGod has much to be proud ofGod has much to be proud ofGod has much to be proud ofGod has much to be proud ofGod has much to be proud ofGod has much to be proud of
Send a message via AIM to God Send a message via MSN to God Send a message via Yahoo to God Send a message via Skype™ to God
Awards Showcase
Biggest Abuser of Noobs Trogdor's Peasant Favorite zB Extremity 
Total Awards: 3
Default

NEW VERSION OUT!
__________________
Quote:
Originally Posted by sb
10:15 PM <Marshillboy> I almost never eat out

Nurta.net cures 29 known diseases



God is offline   Reply With Quote
Old 06-20-2008, 10:59 PM   #99 (permalink)
Squirt
 
Join Date: May 2008
Posts: 12
RANDEEZY is on a distinguished road
Send a message via AIM to RANDEEZY
Default

Quote:
Originally Posted by Nurta View Post
NEW VERSION OUT!
Sounds great, could you fix the download link?



RANDEEZY is offline   Reply With Quote
Old 06-20-2008, 11:00 PM   #100 (permalink)
God
α+ω
Retired Staff
Professional Spammer
 
Join Date: Jan 2007
Location: Look up
Posts: 7,805
God has much to be proud ofGod has much to be proud ofGod has much to be proud ofGod has much to be proud ofGod has much to be proud ofGod has much to be proud ofGod has much to be proud of
Send a message via AIM to God Send a message via MSN to God Send a message via Yahoo to God Send a message via Skype™ to God
Awards Showcase
Biggest Abuser of Noobs Trogdor's Peasant Favorite zB Extremity 
Total Awards: 3
Default

Quote:
Originally Posted by RANDEEZY View Post
Sounds great, could you fix the download link?
What's wrong with it? It works for me
__________________
Quote:
Originally Posted by sb
10:15 PM <Marshillboy> I almost never eat out

Nurta.net cures 29 known diseases



God is offline   Reply With Quote
Reply

Bookmarks

Thread Tools