Or via js and the api , just do in your code

if(is.dom)
yourDynlayerRef.css.cursor= (is.ie?"hand":"pointer");


or make a function

DynLayer.prototype.setCursor = function (str){
if(is.dom||is.ie){
   this.ctype = str || "default";
   if(is.ie)
   this.ctype = this.ctype.replace("pointer","hand");
   this.css.cursor = this.ctype;
}}

yourDynlayerRef.setCursor("pointer");


enjoy

----- Original Message ----- From: "Doug Melvin" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 26, 2004 6:13 PM
Subject: Re: [Dynapi-Help] muose cursor



this will work in any 4+ browser with the esxception of NS 4.x (of course)
----- Original Message ----- From: "Matthias Foschepoth" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 26, 2004 8:12 AM
Subject: RE: [Dynapi-Help] muose cursor



With stylesheets?

I.e. put some HTML into the layer:
<span class="classname">[...Content for the layer...]</span>

<style type="text/css">
  .classname {
    cursor:pointer;
  }
</style>


I hope this helps,

Matthias

> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of antonio
> Sent: Monday, July 26, 2004 11:42 AM
> To: [EMAIL PROTECTED]
> Subject: [Dynapi-Help] muose cursor
>
>
>
>
> I all,
> anybody know how can I change the muose cursor when it's over a layer?
>
> Antonio
>
<snip spam>





-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dynapi-help

Reply via email to