Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Jansolo #1
Faded Textbox
Hi there,
I posted a topic years ago that someone answered and I have forgotten how to
do it!!
I want to have a checkbox that when checked makes a textbox, that is faded and
not able to have anything entered into it, come to full alpha and be able to
have info entered!!
Hope that makes sense - it is imperitive that the textbox be faded to start
with!!
Thanks
Jansolo
Jansolo Guest
-
Faded image in Acrobat
I'm using Quark 5 and importing a photoshop tiff document, and then creating a pdf file from Quark. For some reason all the imagery is faded and I'm... -
Faded out boarders on pics
alien skin (www.alienskin.com) and others make a plugins w/borders, but the effect can also be done w/o plugs using brushes, eraser and other... -
Faded edge on picture
I'm a brand new Elements user coming from PictureIt, so bear with me, please. I need to know how to fade the edge of a picture. With PictureIt it was... -
Faded Background
This is a newbie question but what tool do you use to create that faded background look. For example, you have a blue background but you want it to... -
help on faded/washed out effect?
tried a few ways, with less than satisfactory results...any idea how to get a nice washed out faded (in certain areas and/or all over if wanted)... -
mzanime.com #2
Re: Faded Textbox
<html>
<head>
<title>Enable / Disable</title>
<script>
function SetState(obj_checkbox, obj_textarea)
{ if(obj_checkbox.checked)
{ obj_textarea.disabled = false;
}
else
{ obj_textarea.disabled = true;
}
}
</script>
</head>
<body>
<form>
<input type="checkbox" onclick="SetState(this, this.form.my_text)"><br>
<textarea disabled="disabled" name="my_text">Enable/Disable</textarea>
<br>
</form>
</body>
</html>
mzanime.com Guest



Reply With Quote

