ok, found this at doug but getting script error - variable used before
assigned a value...please help...




on getPropertyDescriptionList
  
    fontStyleRange = [[#plain], [#bold], [#underline], [#italic], [#bold,
#italic], [#bold, #underline], [#italic, #underline], [#bold, #italic,
#underline]] 
  
    props = [:] 
    props.addProp (#pNormalStyle, [#format: #list, #default: [#plain],
#comment: "Select the normal font style:", #range: fontStyleRange])
    props.addProp (#pNormalColor, [#format: #color, #default: rgb (0,0,0),
#comment: "Select the normal font color:"])
    props.addProp (#pRolloverStyle, [#format: #list, #default: [#plain],
#comment: "Select the rollover font style:", #range: fontStyleRange])
    props.addProp (#pRolloverColor, [#format: #color, #default: rgb(0,0,0),
#comment: "Select the rollover font color:"])
    props.addProp (#pClickStyle, [#format: #list, #default: [#plain],
#comment: "Select the click font style:", #range: fontStyleRange])
    props.addProp (#pClickColor, [#format: #color, #default: rgb (0,0,0),
#comment: "Select the click font color:"])
    props.addProp (#pVisitedStyle, [#format: #list, #default: [#plain],
#comment: "Select the visited font style:", #range: fontStyleRange])
    props.addProp (#pVisitedColor, [#format: #color, #default: rgb (0,0,0),
#comment: "Select the visited font color:"])
  
    return props
  
end

on ShowProps me

  set myProps = [:]


  repeat with myPropIndex = 1 to count(me)

    put getPropAt(me, myPropIndex)

    put getProp(me, getPropAt(me, myPropIndex))

    addProp myProps, getPropAt(me, myPropIndex),¬
          getProp(me,getPropAt(me, myPropIndex))

  end repeat

  return myProps

end



on 2/21/02 10:12 AM, Douglas Seib at [EMAIL PROTECTED] wrote:

> Good day everyone,
> 
> I've been searching for information regarding text link color, and am hoping
> someone here can help. I just simply do not want blue. Is it possible to
> change this in the text window somehow? Can it be done with custom lingo?
> 
> TIA,
> 
> D
> 
> [To remove yourself from this list, or to change to digest mode, go to
> http://www.penworks.com/lingo-l.cgi  To post messages to the list, email
> [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is
> for learning and helping with programming Lingo.  Thanks!]

[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email 
[EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for 
learning and helping with programming Lingo.  Thanks!]

Reply via email to