From: Matthias F. <m.f...@iq...> - 2004-07-26 12:13:14
|
With stylesheets? I.e. put some HTML into the layer: <span class=3D"classname">[...Content for the layer...]</span> <style type=3D"text/css"> .classname { cursor:pointer; } </style> I hope this helps, Matthias > -----Original Message----- > From: dyn...@li...=20 > [mailto:dyn...@li...] On Behalf Of antonio > Sent: Monday, July 26, 2004 11:42 AM > To: dyn...@li... > Subject: [Dynapi-Help] muose cursor >=20 >=20 >=20 >=20 > I all, > anybody know how can I change the muose cursor when it's over a layer? >=20 > Antonio >=20 >=20 > ------------------------------------------------------- > 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=3D4721&alloc_id=3D10040&op=3Dclick > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help >=20 |
From: Doug M. <do...@cr...> - 2004-07-26 17:05:43
|
this will work in any 4+ browser with the esxception of NS 4.x (of course) ----- Original Message ----- From: "Matthias Foschepoth" <m.f...@iq...> To: <dyn...@li...> 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: dyn...@li... > > [mailto:dyn...@li...] On Behalf Of antonio > > Sent: Monday, July 26, 2004 11:42 AM > > To: dyn...@li... > > Subject: [Dynapi-Help] muose cursor > > > > > > > > > > I all, > > anybody know how can I change the muose cursor when it's over a layer? > > > > Antonio > > > > > > ------------------------------------------------------- > > 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 > > Dyn...@li... > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > ------------------------------------------------------- > 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_idG21&alloc_id040&opÌk > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.726 / Virus Database: 481 - Release Date: 7/22/04 |
From: sh0rtie <tra...@ho...> - 2004-07-28 15:04:28
|
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" <do...@cr...> To: <dyn...@li...> 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" <m.f...@iq...> > To: <dyn...@li...> > 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: dyn...@li... >> > [mailto:dyn...@li...] On Behalf Of antonio >> > Sent: Monday, July 26, 2004 11:42 AM >> > To: dyn...@li... >> > 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> |