Focal Point
hover or mouse-over within a text document

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/1151097331

August 12, 2004, 04:35 PM
S.J. Kadish
hover or mouse-over within a text document
FOCUS friends:

Has anybody had any experience with a hover or mouse-over function in a text document? We see that this option is valuable in a graph. Specifically, we want to return a translation when hovering over a two digit code.

Thanks in advance,
Sandy Kadish
August 12, 2004, 04:54 PM
<Pietro De Santis>
For $20 I can sell you an example of how to that in an HTML report, but it won't help with a graph.

For graphs, you may be able to play with the Java settings. You will most likely need the Perspective for Java Programmer�s Manual, I'm not sure if it's on the IBI site.

Pietro.


-*-- Hover / Mouseover example using html title --------------------------------
-*-- (Note that this has been tested on IE 5 and 6 only)

-SET &TITLE_MSG =
- 'Country';

DEFINE FILE CAR
CONTINENT/A10 =
IF COUNTRY IN ('FRANCE', 'W GERMANY', 'ITALY', 'ENGLAND') THEN 'Europe' ELSE
IF COUNTRY IN ('JAPAN') THEN 'Asia' ELSE '???';
MOUSEOVER/A255 =
' CONTINENT | '''>' | COUNTRY | '';
END

TABLE FILE CAR
PRINT
MOUSEOVER AS '&TITLE_MSG'
MODEL AS 'Model'
BY COUNTRY NOPRINT
ON TABLE PCHOLD FORMAT HTML
END

This message has been edited. Last edited by: <Mabel>,
August 12, 2004, 05:33 PM
susannah
We do this the same way, just directly:

SUM DOLLARS AS
'< span title="Big bucks &TODAY">dollars< /span>'

You can drop &vars right in to the title, if you like. We learned this from Mikel, on this board. Thanks Mikel.