• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Tex-Edit: What OSAX is this using?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Tex-Edit: What OSAX is this using?


  • Subject: Re: Tex-Edit: What OSAX is this using?
  • From: Kai Edwards <email@hidden>
  • Date: Thu, 21 Nov 2002 14:42:04 +0000

on 21 November 2002 4:57 am, I wrote:

> on Tue, 19 Nov 2002 07:46:03 -0700, Gnarlodious <email@hidden>
> wrote:
>
>> This ran well in 9.2, but not in X. The problem line is:
>> set color of style run n to "#FF33DD"
>> So I need to know:
>> 1) Does this script run vanilla in 9.2? I tried it in 9 and no go.
>
> I don't believe this is a vanilla coercion on any system, Rachel.

For a reasonably fast vanilla handler, Rachel, try replacing "#FF33DD" with:

my hexToRGB("#FF33DD")

...then add something like this subroutine to your script:

------------------------------------------------
on hexToRGB(tx)
set {tid, tx, hx, rgb} to [NO BREAK]
{text item delimiters, tx's text -6 thru -1, "0123456789ABCDEF", {}}
repeat with n from 1 to 6 by 2
set text item delimiters to tx's character n
set {hi, text item delimiters} to [NO BREAK]
{(hx's text item 1's length) * 4112, tx's character (n + 1)}
set {lo, text item delimiters} to [NO BREAK]
{(hx's text item 1's length) * 257, tid}
set rgb's end to hi + lo
end repeat
rgb
end hexToRGB
------------------------------------------------

Not tested exhaustively - but seems to work on the examples I've tried so
far...

HTH

Kai

--
email@hidden
email@hidden
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.

  • Prev by Date: Re: Number of days left in the month
  • Next by Date: Re: [OT] Re: RegEx & Concordances
  • Previous by thread: Re: Tex-Edit: What OSAX is this using?
  • Next by thread: Re: Tex-Edit: What OSAX is this using?
  • Index(es):
    • Date
    • Thread