Welcome to TalkGraphics.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 2000
    Location
    Beaverton, OR
    Posts
    3,267

    Arrow Pro 3-2-2 Color Editor suggestion

    Display a cross-hatch when the fill or outline is No Color.

    This would be consistent with the Color Line display and give more concise information to the user.
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	NO-fill.png 
Views:	265 
Size:	98.4 KB 
ID:	39582  

  2. #2
    Join Date
    Dec 2006
    Location
    Voronezh, Russia
    Posts
    46

    Wink Re: Pro 3-2-2 Color Editor suggestion

    it's not a thing that you requested, but i want a share improvement for xara color editor,.... two autohotkey script that make my work litle bit comfortable

    second - toggle color model modes between hsv and cmyk
    first script - toggle between fill color to line color


    ;toggle color model in color editor (ctrl-t key)

    IfWinExist, Color editor
    ^t::
    {
    ControlGet, combox, FindString, RGB color model, ComboBox1, Color editor
    if combox
    combox = ComboBox1
    else
    combox = ComboBox2

    if (ColorModel = 2)
    colorModel = 3
    else
    colorModel = 2
    Control, Choose, %colorModel%, %combox%, Color editor
    }
    return

    ;toggle betwen fill and line color in color editor (ctrl-h key)
    IfWinExist, Color editor
    ^h::
    {
    ControlGet, combox, FindString, Current fill color, ComboBox3, Color editor
    combox = ComboBox3
    if (Model = 2)
    Value = 1
    else
    Value = 2
    Control, Choose, %Value%, %combox%, Color editor
    }
    return

  3. #3
    Join Date
    Jun 2007
    Location
    Montreal
    Posts
    780

    Default Re: Pro 3-2-2 Color Editor suggestion

    Wow this looks great!

    I was thinking lately how it would be convenient to have a key that toggles line/fill in the color editor, especially in the situation where the editor is located in the bottom portion of the screen and you have to scroll over all colors swatches to get to the. (the menu open upwards.)

    About the color editor, is there no way to dock it the same fashion than galleries?
    It is true that a difference between white/no fill would be more consistent in the color editor.

    I will have to try this script, thanks for sharing!

    -Coco
    Last edited by MarcT; 07 July 2007 at 12:18 AM. Reason: Attention deficit

 

 

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •