The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

CURSOR [solved]

5 posters

Go down

CURSOR [solved] Empty CURSOR [solved]

Post by klise17 December 24th 2006, 9:13 am

can i change the cursor in my forum??if can, how??and if u explain..please give web for the cursor,,,,


Last edited by pauldemonteverde on December 28th 2006, 1:39 pm; edited 1 time in total
avatar
klise17
Forumember

Male Posts : 37
Reputation : 0
Language : indonesia

http://www.ika17.editboard.com

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by lockelymarkets December 24th 2006, 10:42 am

I don't think we could change our cursor just for our forum? I see it in other forums but I'm not sure..

Maybe you could look on google?
lockelymarkets
lockelymarkets
Forumember

Male Posts : 455
Reputation : 0
Language : English, French and German. Please PM for MSN address.

http://transit.forumzen.com

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by klise17 December 24th 2006, 12:35 pm

hehehe...thats why i asked here first,,,,so i can take choose what to do next..
avatar
klise17
Forumember

Male Posts : 37
Reputation : 0
Language : indonesia

http://www.ika17.editboard.com

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by Cornelia December 24th 2006, 7:43 pm

Hello.

It's possible with the script generator : https://help.forumotion.com/viewtopic.forum?t=317

To use it, you just have to own and administer a forum hosted on NiceBoard (same host as editboard) and to enter its adddress (without http:// nor www) in the "Create a script" field. If your niceboard has a customized domain name, you must use the basic address, not the customized one. Once submitted, you will have then a list of script choices. You choose the scripts you want to use and you follow the indications. Once finished, submit and then, you will have a code to copy-paste in Admin Panel, General Admin/Configuration, in Site description. Don't forget to take note of the password given, in case you want to edit your script.
Cornelia
Cornelia
Hyperactive

Female Posts : 4763
Reputation : 173
Language : I'M NOT A TECHIE OR A MOD, SO QUIT SENDING ME PMS FOR TECHIE STUFF OR LOST PASSWORDS !!!
Location : Absent on weekends until camping season ends

http://ishimaru-design.servhome.org

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by klise17 December 25th 2006, 10:38 am

can u give some screenshot for detail?
avatar
klise17
Forumember

Male Posts : 37
Reputation : 0
Language : indonesia

http://www.ika17.editboard.com

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by pauldemonteverde December 25th 2006, 2:20 pm

this is an another option, you can visit, http://www.dynamicdrive.com for some cursor scripts.

■ make sure you have the cursor scipt, example:

/!\This is just an script example/!\
<SCRIPT LANGUAGE="JavaScript1.2">
<!--//

//Circling text trail
//Visit http://www.rainbow.arch.scriptmania.com for this script and more

// your message here
var msg='YOUR_FORUM_NAME';

var font='Verdana,Arial';
var size=3; // up to seven
var color='#000000';

// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 for just plain rotation w/out drag
var speed=.3;

// This is the rotation speed, set it negative if you want
// it to spin clockwise
var rotation= .2;

// Alter no variables past here!, unless you are good
//---------------------------------------------------

var ns=(document.layers);
var ie=(document.all);
var msg=msg.split('');
var n=msg.length;
var a=size*15;
var currStep=0;
var ymouse=0;
var xmouse=0;
var scrll=0;
var props="<font face="+font+" size="+size+" color="+color+">";

if (ie)
window.pageYOffset=0

// writes the message
if (ns){
for (i=0; i < n; i++)
document.write('<layer name="nsmsg'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props+msg[i]+'</font></center></layer>');
}
if (ie){
document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < n; i++)
document.write('<div id="iemsg" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center;font-weight:regular;cursor:default">'+props+msg[i]+'</font></div>');
document.write('</div></div>');
}
(ns)?window.captureEvents(Event.MOUSEMOVE):0;

function Mouse(evnt){
ymouse = (ns)?evnt.pageY+20-(window.pageYOffset):event.y; // y-position
xmouse = (ns)?evnt.pageX+20:event.x-20; // x-position
}

if (ns||ie)
(ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;
y=new Array();
x=new Array();
Y=new Array();
X=new Array();
for (i=0; i < n; i++){
y[i]=0;
x[i]=0;
Y[i]=0;
X[i]=0;
}

function makecircle(){ // rotation properties
if (ie) outer.style.top=document.body.scrollTop;
currStep-=rotation;
for (i=0; i < n; i++){ // makes the circle
var d=(ns)?document.layers['nsmsg'+i]:iemsg[i].style;
d.top=y[i]+a*Math.sin((currStep+i*1)/3.Cool+window.pageYOffset-15;
d.left=x[i]+a*Math.cos((currStep+i*1)/3.Cool*2; // remove *2 for just a plain circle, not oval
}
}

function drag(){ // makes the resistance
scrll=(ns)?window.pageYOffset:0;
y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);
x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);
for (var i=1; i < n; i++){
y[i]=Math.round(Y[i]+=(y[i-1]-Y[i])*speed);
x[i]=Math.round(X[i]+=(x[i-1]-X[i])*speed);

}
makecircle();
// not rotation speed, leave at zero
setTimeout('drag()',10);
}
if (ns||ie)window.onload=drag;

// -->
</SCRIPT>

■ Open your cursor script on a NotePad or any text editing tool.

■ Delete/Remove the text in color blue.

Save As your cursor script as CURSOR.js

■ Upload your cursor script to any web hosting. (e.g., www.freewebtown.com or www.freespaces.com)

■ get your cursor URL (e.g., www.freewebtown.com/USERNAME_or_ACCOUNT/CURSOR.js)

■ now with this code, replace your CURSOR_URL with your cursor URL
<script type=text/javascript src=CURSOR_URL></script>

■ Go to:

Admin Panel >> General Admin >> Configuration >> General

■ Put the codes in the SITE DESCRIPTION. The codes should look like this:
<script type=text/javascript src=http://www.freewebtown.com/username/CURSOR.js></script>

■ Save it.

WORDS TO KNOW:
HOST or HOSTING: To Upload or save files on internet.
Some sites you can host your files:
http://www.freewebtown.com
http://www.freespaces.com
http://geocities.yahoo.com

URL: (Uniform Resource Locator)
an address identifying the location of a file on the Internet,
consisting of the protocol,
the computer on which the file is located,
and the file’s location on that computer.
pauldemonteverde
pauldemonteverde
Forumember

Male Posts : 238
Reputation : 9
Language : English and Filipino
Location : Pilipinas

http://isanghimig.online-talk.net

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by klise17 December 25th 2006, 6:04 pm

some of script is like this :

Code:
Step 1: Add the below code to the <HEAD> section of the page:

<style type="text/css">
<!--
h1 {
  color:#cc3333;
  font-family:"Comic Sans MS",Helvetica;
}
h3 {
  color:#993333;
  font-family:"Comic Sans MS",Helvetica;
}
.kisser {
  position:absolute;
  top:0;
  left:0;
  visibility:hidden;
}
-->
</style>

<script language="JavaScript1.2" type="text/JavaScript">
<!-- cloak

//Kissing trail- By dij8 (dij8@dij8.com)
//Modified by Dynamic Drive for bug fixes
//Visit http://www.dynamicdrive.com for this script

kisserCount = 15 //maximum number of images on screen at one time
curKisser = 0 //the last image DIV to be displayed (used for timer)
kissDelay = 1000 //duration images stay on screen (in milliseconds)
kissSpacer = 50 //distance to move mouse b4 next heart appears
theimage = "lips_small.gif" //the 1st image to be displayed
theimage2 = "small_heart.gif" //the 2nd image to be displayed


//Browser checking and syntax variables
var docLayers = (document.layers) ? true:false;
var docId = (document.getElementById) ? true:false;
var docAll = (document.all) ? true:false;
var docbitK = (docLayers) ? "document.layers['":(docId) ? "document.getElementById('":(docAll) ? "document.all['":"document."
var docbitendK = (docLayers) ? "']":(docId) ? "')":(docAll) ? "']":""
var stylebitK = (docLayers) ? "":".style"
var showbitK = (docLayers) ? "show":"visible"
var hidebitK = (docLayers) ? "hide":"hidden"
var ns6=document.getElementById&&!document.all
//Variables used in script
var posX, posY, lastX, lastY, kisserCount, curKisser, kissDelay, kissSpacer, theimage
lastX = 0
lastY = 0
//Collection of functions to get mouse position and place the images
function doKisser(e) {

  posX = getMouseXPos(e)
  posY = getMouseYPos(e)
  if (posX>(lastX+kissSpacer)||posX<(lastX-kissSpacer)||posY>(lastY+kissSpacer)||posY<(lastY-kissSpacer)) {
    showKisser(posX,posY)
    lastX = posX
    lastY = posY
  }
}
// Get the horizontal position of the mouse
function getMouseXPos(e) {
  if (document.layers||ns6) {
    return parseInt(e.pageX+10)
  } else {
    return (parseInt(event.clientX+10) + parseInt(document.body.scrollLeft))
  }
}
// Get the vartical position of the mouse
function getMouseYPos(e) {
  if (document.layers||ns6) {
    return parseInt(e.pageY)
  } else {
    return (parseInt(event.clientY) + parseInt(document.body.scrollTop))
  }
}
//Place the image and start timer so that it disappears after a period of time
function showKisser(x,y) {
  var processedx=ns6? Math.min(x,window.innerWidth-75) : docAll? Math.min(x,document.body.clientWidth-55) : x
  if (curKisser >= kisserCount) {curKisser = 0}
  eval(docbitK + "kisser" + curKisser + docbitendK + stylebitK + ".left = " + processedx)
  eval(docbitK + "kisser" + curKisser + docbitendK + stylebitK + ".top = " + y)
  eval(docbitK + "kisser" + curKisser + docbitendK + stylebitK + ".visibility = '" + showbitK + "'")
  if (eval("typeof(kissDelay" + curKisser + ")")=="number") {
    eval("clearTimeout(kissDelay" + curKisser + ")")
  }
  eval("kissDelay" + curKisser + " = setTimeout('hideKisser(" + curKisser + ")',kissDelay)")
  curKisser += 1
}
//Make the image disappear
function hideKisser(knum) {
  eval(docbitK + "kisser" + knum + docbitendK + stylebitK + ".visibility = '" + hidebitK + "'")
}

function kissbegin(){
//Let the browser know when the mouse moves
if (docLayers) {
  document.captureEvents(Event.MOUSEMOVE)
  document.onMouseMove = doKisser
} else {
  document.onmousemove = doKisser
}
}
window.onload=kissbegin
// decloak -->
</script>

Step 2: Apply the following script to the <BODY>, preferably outside any other tags:

<script language="JavaScript" type="text/JavaScript">
<!-- cloak
// Add all DIV's of hearts
if (document.all||document.getElementById||document.layers){
for (k=0;k<kisserCount;k=k+2) {
  document.write('<div id="kisser' + k + '" class="kisser"><img src="' + theimage + '" alt="" border="0"></div>\n')
  document.write('<div id="kisser' + (k+1) + '" class="kisser"><img src="' + theimage2 + '" alt="" border="0"></div>\n')
}
}

// decloak -->
</script>

<p align="center"><font face="Arial" size="-2">Free DHTML scripts provided by<br>
<a href="http://www.dynamicdrive.com">Dynamic Drive</a></font></p>

You'll also need to pick up two images used by the script, and upload them to the same directory as where the script resides. We've zipped up the images into the following zip file:

kiss.zip (download by right clicking, and selecting "save as").


what the step 1 and 2 mean??why there are 2 script??and what this is mean??
"and upload them to the same directory as where the script resides"
avatar
klise17
Forumember

Male Posts : 37
Reputation : 0
Language : indonesia

http://www.ika17.editboard.com

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by pauldemonteverde December 26th 2006, 4:54 am

yes, it has two html scripts. but the codes you had given is not applicable on the forum boards. you can use that codes only for/as web page. your codes uses the HEAD and BODY of an html page. try looking for another scripts that uses only 1 script. Same as to my given cursor script above.
pauldemonteverde
pauldemonteverde
Forumember

Male Posts : 238
Reputation : 9
Language : English and Filipino
Location : Pilipinas

http://isanghimig.online-talk.net

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by klise17 December 26th 2006, 1:16 pm

i have put this code...but nothing happen...

Code:
 <!--//

//Circling text trail- Tim Tilton
//Website: http://www.tempermedia.com/
//Visit http://www.dynamicdrive.com for this script and more

// your message here
var msg='IKA17';

var font='Verdana,Arial';
var size=3; // up to seven
var color='#000000';

// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 for just plain rotation w/out drag
var speed=.3;

// This is the rotation speed, set it negative if you want
// it to spin clockwise
var rotation=.2;

// Alter no variables past here!, unless you are good
//---------------------------------------------------

var ns=(document.layers);
var ie=(document.all);
var msg=msg.split('');
var n=msg.length;
var a=size*15;
var currStep=0;
var ymouse=0;
var xmouse=0;
var scrll=0;
var props="<font face="+font+" size="+size+" color="+color+">";

if (ie)
window.pageYOffset=0

// writes the message
   if (ns){
   for (i=0; i < n; i++)
      document.write('<layer name="nsmsg'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props+msg[i]+'</font></center></layer>');
   }
   if (ie){
      document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
      for (i=0; i < n; i++)
         document.write('<div id="iemsg" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center;font-weight:regular;cursor:default">'+props+msg[i]+'</font></div>');
         document.write('</div></div>');
   }
   (ns)?window.captureEvents(Event.MOUSEMOVE):0;

function Mouse(evnt){
   ymouse = (ns)?evnt.pageY+20-(window.pageYOffset):event.y; // y-position
   xmouse = (ns)?evnt.pageX+20:event.x-20; // x-position
}

if (ns||ie)
(ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;
y=new Array();
x=new Array();
Y=new Array();
X=new Array();
for (i=0; i < n; i++){
   y[i]=0;
   x[i]=0;
   Y[i]=0;
   X[i]=0;
}

function makecircle(){ // rotation properties
if (ie) outer.style.top=document.body.scrollTop;
currStep-=rotation;
   for (i=0; i < n; i++){ // makes the circle
      var d=(ns)?document.layers['nsmsg'+i]:iemsg[i].style;
      d.top=y[i]+a*Math.sin((currStep+i*1)/3.8)+window.pageYOffset-15;
      d.left=x[i]+a*Math.cos((currStep+i*1)/3.8)*2; // remove *2 for just a plain circle, not oval
   }
}

function drag(){ // makes the resistance
   scrll=(ns)?window.pageYOffset:0;
   y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);
   x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);
   for (var i=1; i < n; i++){
      y[i]=Math.round(Y[i]+=(y[i-1]-Y[i])*speed);
      x[i]=Math.round(X[i]+=(x[i-1]-X[i])*speed);

   }
   makecircle();
   // not rotation speed, leave at zero
   setTimeout('drag()',10);
}
if (ns||ie)window.onload=drag;

// -->

what is wrong?should the HTML on?
avatar
klise17
Forumember

Male Posts : 37
Reputation : 0
Language : indonesia

http://www.ika17.editboard.com

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by pauldemonteverde December 27th 2006, 2:52 am

that will work fine. try saving it as .js file

follow again my instruction above using that cursor script you have now.
pauldemonteverde
pauldemonteverde
Forumember

Male Posts : 238
Reputation : 9
Language : English and Filipino
Location : Pilipinas

http://isanghimig.online-talk.net

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by klise17 December 27th 2006, 2:08 pm

i have tried it...but nothing happen...

can u try this one?

this is the script right??

Code:
http://www.freewebtown.com/klise17/CURSOR.js

and i put it in site description....nothing happen,,,
avatar
klise17
Forumember

Male Posts : 37
Reputation : 0
Language : indonesia

http://www.ika17.editboard.com

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by pauldemonteverde December 27th 2006, 2:16 pm

its working... tested.

put this code on your site description, go to:

Admin Panel >> General Admin >> Configuration >> Site Description

Code:
<script type=text/javascript src="http://www.freewebtown.com/klise17/CURSOR.js"></script>
pauldemonteverde
pauldemonteverde
Forumember

Male Posts : 238
Reputation : 9
Language : English and Filipino
Location : Pilipinas

http://isanghimig.online-talk.net

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by klise17 December 28th 2006, 6:47 am

i have site description.....(i mean it the form is filled)
when i have deleted the description, put that code...n submit....nothing change....it is still the site description that i have submit before....
avatar
klise17
Forumember

Male Posts : 37
Reputation : 0
Language : indonesia

http://www.ika17.editboard.com

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by klise17 December 28th 2006, 7:00 am

Btw.....i have tried to put it in "other metatags", then it is worked...
avatar
klise17
Forumember

Male Posts : 37
Reputation : 0
Language : indonesia

http://www.ika17.editboard.com

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by pauldemonteverde December 28th 2006, 1:39 pm

case solved.


>klise17
next time, please avoid creating double post. you can use the edit button at the top right of your message if you want to update your post.


Last edited by on December 29th 2006, 2:59 pm; edited 1 time in total
pauldemonteverde
pauldemonteverde
Forumember

Male Posts : 238
Reputation : 9
Language : English and Filipino
Location : Pilipinas

http://isanghimig.online-talk.net

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by skorpy December 28th 2006, 7:11 pm

I didnt use any of the above to have a curosr on my forum.I just looked for cursors and copied and paste.Some places do them for you to add straight away. Smile
skorpy
skorpy
Forumember

Female Posts : 323
Reputation : 1
Language : 33
Location : uk, somerset

http://babytalk.megabb.com/

Back to top Go down

CURSOR [solved] Empty Re: CURSOR [solved]

Post by pauldemonteverde December 29th 2006, 3:50 am

this case had been solved already, i locked this topic to avoid floods.
pauldemonteverde
pauldemonteverde
Forumember

Male Posts : 238
Reputation : 9
Language : English and Filipino
Location : Pilipinas

http://isanghimig.online-talk.net

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum