Hello sadbot, I have an idea of how to do, I believe there are other ways to do this.
Place an editbox on top of a label, make them the same size. Change editbox.visible to false. Create a function label1_onclick () and put this: Edit1.Visible = true; Edit1.value = Label1.innerText; edit1.focus (); Now create a function edit1_onfocusout () and put this: Label1.innerText = Edit1.value; Edit1.Visible = false; Best Regards, -- Wagner Nitsch Bressan On Wed, Jan 13, 2010 at 9:54 PM, sadbot <[email protected]> wrote: > Hi, I'm trying to create a region of editable text which displays > opaque text over a translucent background. As far as I know the only > way to allow the user to edit text is through the use of an edit box, > however, this element has a solid background which does not appear to > accept transparency in its color value (#aarrggbb). I can make the > entire thing translucent, but this also affects the text, which I want > to remain opaque. > > Anyone have ideas on how this can be done? > > > > > ================================================================== > Tags: opaque, opacity, translucent, translucency, transparent, > transparency, alpha, edit box > > -- > You received this message because you are subscribed to the Google Groups > "Google Desktop Developer Group" group. > To post to this group, send email to > [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-desktop-developer%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-desktop-developer?hl=en. > > > > -- You received this message because you are subscribed to the Google Groups "Google Desktop Developer Group" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-desktop-developer?hl=en.
