Works great.
Installed on Snitz 3.4.03 and 3.4.06 with MSSQL
All Admin section changes working fine
- Members Detail Configuration Page ok
- Members List Displays Icon ok
- MySpace Field In User's Profile ok
- MySpace Icon Displays On Posts ok
Cleaned the icon_myspace.jpg file up a little to work with my black background.
Only one thing I noticed for the topic.asp instructions.
Missing 2 "End If" statements I added below in red.
------------look for this at line 636:
if strYAHOO = "1" then
if Trim(Reply_MemberYAHOO) <> "" then
Response.Write " <a href=""http://edit.yahoo.com/config/send_webmesg?.target=" & ChkString(Reply_MemberYAHOO, "urlpath") & "&.src=pg"" target=""_blank"">" & getCurrentIcon(strIconYahoo,"Send " & ChkString(Reply_MemberName,"display") & " a Yahoo! Message","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
end if
-----------add this below:
if strMYSPACE = "1" then
if Trim(Reply_MemberMYSPACE) <> "" then
Response.Write " <a href=""JavaScript:var newWin=window.open('http://www.myspace.com/" & Reply_MemberMYSPACE & "')"">" & getCurrentIcon(strIconMYSPACE,"myspace" & "","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
end if
------------look for this at line 844:
if (strYAHOO = "1") then
if Trim(Member_YAHOO) <> "" then
Response.Write " <a href=""http://edit.yahoo.com/config/send_webmesg?.target=" & ChkString(Member_YAHOO, "urlpath") & "&.src=pg"" target=""_blank"">" & getCurrentIcon(strIconYahoo,"Send " & ChkString(Member_Name,"display") & " a Yahoo! Message","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
end if
-----------add this below:
if (strMYSPACE = "1") then
if Trim(Member_MYSPACE) <> "" then
Response.Write " <a href=""JavaScript:var newWin=window.open('http://www.myspace.com/" & Member_MYSPACE & "')"">" & getCurrentIcon(strIconMYSPACE,"myspace" & "","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
end if
Great Mod Lon. Create my first MySpace page just last week so this was right on time. Thanks.

<