Invisible HTMLText Character?
Jim Ault
jimaultwins at yahoo.com
Wed Sep 22 00:16:56 EDT 2010
You are probably going to have to use a combination of tags
say <div> <ul> <li> <A href> <p>
and it would be easier to eventually create the CSS since you will
want to apply this to several text areas
The idea is to nest <div> and other tags to hold characters and then
move them into position using
style='position:absolute; left: 5px' --move to the right +5
-- by setting the left attribute to 5 more pixels than the default
layout position
style='position:absolute; left: -15px; top: 10px'
-- move left 15 pixels, and down 10
style='position:absolute; left: 100px; top: -120px'
--move left 100, and up 120
--------------------
<div style='position: absolute; left='10px' >
<p> </p>
</div>
or
<ul>
<li style='position:absolute; left: 5px'>Point one is the best
one</li>
<li style='position:absolute; left: 10px'>Point two is also very
good</li>
</ul>
or something like
<div id='outer'>
<div id='innerA' style='position:absolute; left: 5px'>Point one is the
best one </div>
<div id='innerB' style='position:absolute; left: 5px'>Point two is
also very good </div>
</div>
On Sep 21, 2010, at 6:25 PM, Scott Rossi wrote:
> Anyone know if it's possible to define a character in HTMLtext as
> being
> invisible or hidden?
>
> I'm trying to create a workaround for bulleted text lines that wrap.
> Ideally, the wrapped portion of a bulleted line should be indented
> the same
> amount as the above line that's indented by a bullet. I was hoping
> I could
> place a bullet in front of the wrapped line and use HTMLtext to make
> the
> bullet hidden or invisible.
>
> Is anything like this possible?
>
> Thanks & Regards,
>
> Scott Rossi
> Creative Director
> Tactile Media, UX Design
>
>
> _______________________________________________
> use-revolution mailing list
> use-revolution at lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
Jim Ault
Las Vegas
More information about the use-livecode
mailing list