Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Anyone know what this javascript is?

Status
Not open for further replies.

nolymytz

IS-IT--Management
Nov 14, 2003
4

I have a client that would like that javascript cursor handler on their site, and i can't seem to find a script anywhere similar to this. Thanks in advance if anyone can help.
 
That is flash

____________ signature below ______________
The worst mistake you'll ever make is to do something simply the way you know how while ignoring the way it should be done
 
The way to find out is View/Source. What you will see is something like
Code:
      <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="[URL unfurl="true"]http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"[/URL] width="900" height="800" align="top">
          <param name="movie" value="flint-Commercial.swf">
          <param name="quality" value="high">
          <param name="BGCOLOR" value="#000000">
          <embed src="flint-Commercial.swf" width="900" height="800" align="top" quality="high" pluginspage="[URL unfurl="true"]http://www.macromedia.com/go/getflashplayer"[/URL] type="application/x-shockwave-flash" bgcolor="#000000"></embed>

        </object>
The .swf suffix tells you it is a flash file
Other hints are pluginspage="
and type="application/x-shockwave-flash"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top