Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
piksel8 #1
Help please !!! on input image type
hello anyone out there. is it possible to make a mouseover state on an input
image type inside a form?
example of what i did is as below:
<input name="Login" type="image" id="Login" src="images/logUp.jpg"
onMouseOver="(this,'images/logDn.jpg',1)">
is this possible?:beer;
piksel8 Guest
-
<input type="image"... based custom control
I have created one of these controls but arent getting any call backs. I've got the source from the MSPress book "Developing Microsoft ASP.NET... -
HowTo Send Uploaded File with INPUT Type file to Sql Server Image Data Type
I have the following problem: I have the following form client side: <FORM.......> <FORM action="./WZUpload.asp" method="Post"... -
HowTo Send Uploaded File with INPUT Type file to Sql Server Image Data Type ?
I have the following problem: I have the following form client side: <FORM.......> <FORM action="./WZUpload.asp" method="Post"... -
input type image
Hi, I create a button in the form in the asp page like is: <input type="image" src="button.gif" name="detail" border=0 value="100234"> How can I... -
<input type='image'> ... IE fails to pass value while Mozilla and Netsacpe works
newsgroup... I have found that the <input type=image'> passes a value when interpeted with Netscape or Mozilla but NOT with IE. Consider the... -
Lionstone #2
Re: Help please !!! on input image type
"piksel8" <webforumsuser@macromedia.com> wrote in message
news:e1e1op$17l$1@forums.macromedia.com...The standard swap image behavior on an image field will work in IE only. To> hello anyone out there. is it possible to make a mouseover state on an
> input
> image type inside a form?
>
work in more browsers, just add your own simple instructions:
<input name="myButton" type="image" src="myButton.gif"
onMouseOver="this.src='myButton_Over.gif'"
onMouseOut="this.src='myButton.gif'">
Lionstone Guest



Reply With Quote

