Suggestions & Feedback
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsForum InformationSuggestions & Feedback

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here
  #1  
Old October 28th, 2003, 05:19 PM
MrMatt MrMatt is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 19 MrMatt User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
View the avatars

Cool site guys!

Is there some way I can view the avatars (other than making a post)? E.g. a page (or popup) with the available avatars to choose from and which file name they correspond to on the profile page.

Reply With Quote
  #2  
Old October 28th, 2003, 06:00 PM
tkarkkainen's Avatar
tkarkkainen tkarkkainen is offline
Moderator
Click here for more information
 
Join Date: Apr 2007
Location: Finland
Posts: 2,320 tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)tkarkkainen User rank is Lance Corporal (50 - 100 Reputation Level)  Folding Points: 10700 Folding Title: Novice Folder
Time spent in forums: 6 Days 8 h 46 m 44 sec
Reputation Power: 4
RE: View the avatars

Yes, in the profile page. You'll need to have javascript on though...

Reply With Quote
  #3  
Old October 28th, 2003, 06:12 PM
MrMatt MrMatt is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 19 MrMatt User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
RE: View the avatars

Thanks for the reply tkarkkainen.

I can see the list of file names in a select box in the profile section. Good, but how do I see what each one looks like?

For example, underground.gif sounds good, but how do I know what it looks like? (I pictured some shady underworld character - not the London tube)

Reply With Quote
  #4  
Old October 28th, 2003, 06:22 PM
notepad notepad is offline
Codewalkers Loyal (3000 - 3499 posts)
 
Join Date: Apr 2007
Location: Central, IL USA
Posts: 3,214 notepad User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 5
Send a message via AIM to notepad
RE: View the avatars

like tkarkkainen said, you'll need javascript on. the images will then display themselves

Reply With Quote
  #5  
Old October 28th, 2003, 06:29 PM
MrMatt MrMatt is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 19 MrMatt User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
RE: View the avatars

Nope. Javascript is enabled.

It seems as though it doesn't work with Mozilla 1.5.
I just tried Internet Explorer and I can see the avatars. Thanks for your help anyway.

Reply With Quote
  #6  
Old October 28th, 2003, 07:02 PM
Matt Matt is offline
Moderator
Codewalkers Specialist (4000 - 4499 posts)
 
Join Date: Apr 2007
Location: Florida
Posts: 4,158 Matt User rank is Private First Class (20 - 50 Reputation Level)Matt User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 h 10 m 20 sec
Reputation Power: 6
RE: View the avatars

Yep...the little script only works in IE. Haven't gotten around to dealing with it for Mozilla yet

Reply With Quote
  #7  
Old October 29th, 2003, 12:40 AM
CodeKadiya CodeKadiya is offline
Codewalkers Regular (2000 - 2499 posts)
 
Join Date: Apr 2007
Location: Colombo,Sri Lanka
Posts: 2,313 CodeKadiya User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 4
Send a message via Yahoo to CodeKadiya
RE: View the avatars

Yes I accept. In mozilla avatar previews are not working..

Matt,
I think the problem there is not with Javascript... In Mozilla <div> or innerHTML is not working/supporting.... Isn't it?

Reply With Quote
  #8  
Old October 29th, 2003, 01:22 AM
CodeKadiya CodeKadiya is offline
Codewalkers Regular (2000 - 2499 posts)
 
Join Date: Apr 2007
Location: Colombo,Sri Lanka
Posts: 2,313 CodeKadiya User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 4
Send a message via Yahoo to CodeKadiya
RE: View the avatars

Matt,

I went on thinking for a way to make this to suit everybody... I think this should work for any javascript enabled browser. May be some bugs....
Code:
<html>
<head>
<title>Avatar</title>
<script language="JavaScript">
function showAvatar()
{
	var filename=avName.options[avName.selectedIndex].value;
	av.src="images/"+filename;
}
</script>
</head>
<body>Avatar :
<select name="avName" onChange="showAvatar()">
<option value="icon_love.gif">Love</option>
<option value="icon_tone.gif">Tone</option>
<option value="icon_game.gif">Game</option>
</select><br>
<input type="image" id='av' name="av" src="blank.gif"> 
</body>
</html>

Reply With Quote
  #9  
Old November 4th, 2003, 09:50 PM
sliver's Avatar
sliver sliver is offline
Moderator
Codewalkers Novice (500 - 999 posts)
 
Join Date: Apr 2007
Location: WI, USA
Posts: 888 sliver User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 21 h 17 m 29 sec
Reputation Power: 2
Send a message via AIM to sliver Send a message via XFire to sliver
RE: View the avatars

Works in opera. You should have a new window that has all the avatars, bit more convient than having to click each one, *shrugs* o well.

Reply With Quote
  #10  
Old November 4th, 2003, 11:19 PM
Matt Matt is offline
Moderator
Codewalkers Specialist (4000 - 4499 posts)
 
Join Date: Apr 2007
Location: Florida
Posts: 4,158 Matt User rank is Private First Class (20 - 50 Reputation Level)Matt User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 h 10 m 20 sec
Reputation Power: 6
RE: RE: View the avatars


Quote:
Works in opera. You should have a new window that has all the avatars, bit more convient than having to click each one, *shrugs* o well.


Agreed...done.

Reply With Quote
  #11  
Old November 5th, 2003, 12:59 AM
CodeKadiya CodeKadiya is offline
Codewalkers Regular (2000 - 2499 posts)
 
Join Date: Apr 2007
Location: Colombo,Sri Lanka
Posts: 2,313 CodeKadiya User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 4
Send a message via Yahoo to CodeKadiya
RE: View the avatars

Yes, it works... only thing is that will take bit more time to load the whole page.

Isn't it a good idea to open a small popup window and just display the avatar selected by the user?

Reply With Quote
  #12  
Old November 5th, 2003, 01:04 AM
Matt Matt is offline
Moderator
Codewalkers Specialist (4000 - 4499 posts)
 
Join Date: Apr 2007
Location: Florida
Posts: 4,158 Matt User rank is Private First Class (20 - 50 Reputation Level)Matt User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 h 10 m 20 sec
Reputation Power: 6
RE: View the avatars

I always found it annoying to click through each avatar. I think this will make avatar selection for the user much faster....


Reply With Quote
  #13  
Old November 22nd, 2003, 08:52 AM
prycejones prycejones is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 87 prycejones User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 9 m 44 sec
Reputation Power: 2
Send a message via ICQ to prycejones
RE: View the avatars

...whilst we're on the subject

Are we any way nearer to having our own uploadable avatars yet, please?

Thanx


Pryce

Reply With Quote
Reply

Viewing: Codewalkers ForumsForum InformationSuggestions & Feedback > View the avatars


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by