Hi Charles,

You were perfectly right.
Thanks for having dug in the question and for giving us with David this clever workaround :-)

Best Regards from Paris,

Eric Chatonet.

Le 8 juil. 05 à 04:55, Charles Hartman a écrit :

David Epstein (who's having list access problems & wrote me separately) suggests the solution copied below, to the problem of getting text in a field into "owner" font and style after some lines have been put into another font.

It looks cool, and I'm working toward using it. Meanwhile, I've discovered the source of my problem. If you set the text style of some words in a field to link, bold, etc., and then look at the htmlText of the field, you see that after the end-of-link/bold marker, Rev is putting in a <font> specification (setting it to whatever the effective font is at the time the card is made. Get rid of that font tag, and the following text reverts to the _real_ owner's font even when that changes.

Surely that's not the right behavior Rev should have, is it?

(Hope this makes sense -- written in too much haste.)

========= Epstein Solution ============================

on changeFieldTextProps f,mySize,myFont

  repeat with c = 1 to the number of cards

    put the htmlText of fld f of card c into hold[c]

  end repeat

  set the textSize of fld f to mySize

  set the textFont of fld f to myFont

  repeat with c = 1 to the number of cards

    set the htmlText of fld f of card c to hold[c]

  end repeat

end changeFieldTextProps

----------------------------------------------------------------
So Smart Software

For institutions, companies and associations
Built-to-order applications: management, multimedia, internet, etc.
Windows, Mac OS and Linux... With the French touch

Free plugins and tutorials on my website
----------------------------------------------------------------
Web site        http://www.sosmartsoftware.com/
Email        [EMAIL PROTECTED]/
Phone        33 (0)1 43 31 77 62
Mobile        33 (0)6 20 74 50 86
----------------------------------------------------------------

_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to