Can anyone(who has flash) create me a small 30x30 px flash movie which has the following actionscript:
Well, basically just to hide the mouse. Thank you for your time and patience.Code:Mouse.hide();![]()
Can anyone(who has flash) create me a small 30x30 px flash movie which has the following actionscript:
Well, basically just to hide the mouse. Thank you for your time and patience.Code:Mouse.hide();![]()
you could just go with a cursor changing attribute (css), and create a blank cursor...
Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum
*Unfortunately* Doesn't work with invisible cursors.![]()
And the Flash movie will only hide the mouse when it is over that 30X30 spot... Unless that is what you want?
<edit> To attach the file</edit>
Last edited by BLiZZaRD; 01-30-2007 at 02:39 PM.
{CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
Follow Me on Twitter: @InkingHubris
PHP Code:
$result = mysql_query("SELECT finger FROM hand WHERE id=3");
echo $result;
BLiZZaRD: Thanks a billion!! Do you know how to make the background(which is black right now) transparent? So that the movie is see through? Thanks again.
In the HTML source find:
after, add:Code:<param name="quality" value="high" />
Then find:Code:<param name="wmode" value="transparent" />
and replace with:Code:<embed src="mouseHide.swf" quality="high" bgcolor="#000000"
Should do it.Code:<embed src="mouseHide.swf" quality="high" wmode="transparent" bgcolor="#000000"
{CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
Follow Me on Twitter: @InkingHubris
PHP Code:
$result = mysql_query("SELECT finger FROM hand WHERE id=3");
echo $result;
BLiZZaRD: I don't think it did the trick, maybe because I did some mistakes in editing the markup, here is what I have now(sorry I am a flash newbie).
Code:<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>mouseHide</title> </head> <body bgcolor="#FF0000"> <!--url's used in the movie--> <!--text used in the movie--> <!-- saved from url=(0013)about:internet --> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="30" height="30" id="mouseHide" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="wmode" value="transparent" /> <param name="movie" value="mouseHide.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <param name="bgcolor" value="#000000" /> <embed src="mouseHide.swf" quality="high" wmode="transparent" bgcolor="#000000" width="30" height="30" name="mouseHide" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> </body> </html>
Sorry that I am getting too demanding, which ID do I use if I want to change the position of the object dynamically through javascript? And is there a way to disable the context menu(that comes up when you right-click on the movie)? Thanks again.
Okay, attached is a new one. This is published as transparent, with no context menu. The source of the HTML has been done for you. Just copy and paste, or use as is.
The ID is tricky, and I am not sure I can answer correctly. The problem stems from the ActiveX suit from EOLAS about a year ago.
there is a fix, and I can show you how to do that as well. What you will run into though is the <embed> is for Netscape-based browsers, and it is not valid HTML.
Not sure what exactly you are trying to accomplish so I can't be too specific here. If you follow the ActiveX fix, and then situate your HTML so that it is valid, you will not have the embed tag anymore and it will work in all browsers. It's a bit tricky though.
{CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
Follow Me on Twitter: @InkingHubris
PHP Code:
$result = mysql_query("SELECT finger FROM hand WHERE id=3");
echo $result;
I think it's the problem with Linux that I the movie isn't transparent and I can still see the context menu. Thanks anyways.I found out a fix to effectively move it.
Bookmarks