The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
hi,
ok this is what i am looking for...basically when u make a new post u get the newIconFolder image and when it isnt new it go to a normal icon folder...when it is a hot topic u get a different icon..when it is a sticky u get a different icon etc etc
so now what i want is to somhow mod it so that if the topic author is me or if i have replyed to a topic i want the same icons as they would be normaly but i want the icon to change so that i know what i have replyed/started
if that makes sense at all.
i have seen this on some of the PHP boards usually the icons will have a little dot in the middle of the icon to ytell me i have made this post or replyed to this post.
i havehad a little go at it and have came up with the new topic ones
in inc_func_chknew.asp there is a function called ChkIsNew2 this is what i have been playign with and i have come up with this
find this on line 78
and replace it with
that has made it so that when i post a new topic i will see a little dot in the middle of the icon however i am unsure of how i go about doing the same for the other icons.
can anyone shed some light and help me achieve what i am after?
thanks
MaD2ko0l<
ok this is what i am looking for...basically when u make a new post u get the newIconFolder image and when it isnt new it go to a normal icon folder...when it is a hot topic u get a different icon..when it is a sticky u get a different icon etc etc
so now what i want is to somhow mod it so that if the topic author is me or if i have replyed to a topic i want the same icons as they would be normaly but i want the icon to change so that i know what i have replyed/started
if that makes sense at all.
i have seen this on some of the PHP boards usually the icons will have a little dot in the middle of the icon to ytell me i have made this post or replyed to this post.
i havehad a little go at it and have came up with the new topic ones
in inc_func_chknew.asp there is a function called ChkIsNew2 this is what i have been playign with and i have come up with this
find this on line 78
Code:
ChkIsNew2 = getCurrentIcon(strIconFolderNew,"New Topic","hspace=""0""")
and replace it with
Code:
if Topic_Author = MemberID then
ChkIsNew2 = getCurrentIcon(strIconFolderNewAuthor,"New Topic","hspace=""0""")
else
ChkIsNew2 = getCurrentIcon(strIconFolderNew,"New Topic","hspace=""0""")
end if
that has made it so that when i post a new topic i will see a little dot in the middle of the icon however i am unsure of how i go about doing the same for the other icons.
can anyone shed some light and help me achieve what i am after?
thanks
MaD2ko0l<