|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
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
|
|||
|
|||
|
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. |
|
#2
|
||||
|
||||
|
RE: View the avatars
Yes, in the profile page. You'll need to have javascript on though...
|
|
#3
|
|||
|
|||
|
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) |
|
#4
|
|||
|
|||
|
RE: View the avatars
like tkarkkainen said, you'll need javascript on. the images will then display themselves
|
|
#5
|
|||
|
|||
|
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. |
|
#6
|
|||
|
|||
|
RE: View the avatars
Yep...the little script only works in IE. Haven't gotten around to dealing with it for Mozilla yet
|
|
#7
|
|||
|
|||
|
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? |
|
#8
|
|||
|
|||
|
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>
|
|
#9
|
||||
|
||||
|
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.
|
|
#10
|
|||
|
|||
|
RE: RE: View the avatars
Quote:
Agreed...done. |
|
#11
|
|||
|
|||
|
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? |
|
#12
|
|||
|
|||
|
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....
|
|
#13
|
|||
|
|||
|
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 |
![]() |
| Viewing: Codewalkers Forums > Forum Information > Suggestions & Feedback > View the avatars |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|