Hide annotations of a specified color

I know next to nothing about scripting, although I have spent considerable amount of time examining the js_developer_guide.pdf and similar resources.
I need to show/hide all annotations of a particular color, for example all annotations that have a "red " fill color.  The below script seems to find and hide only the first instance of a "red" annotation.  It doesn't continue on to find and hide all other "red" annotations.  Any help would be greatly appreciated.
this.syncAnnotScan();
var myAnnotList = this.getAnnots();
for (var i=0; i<myAnnotList.length; i++)
if (color.equal(myAnnotList[i].fillColor, color.red))
myAnnotList[i].hidden = true;

It could be that the color of the annotations is not exactly red (like if a
custom color was used), so they aren't being hidden.
You can have the script print out the fill color of each annot to test it
out.

Similar Messages

  • CS2 - "Clamp" specified colors (aka Replace Colors)

    Hi all,
    I have a non-indexed RGB image that is required to have only very specific colors within it.  I'm trying to write a script that will look for these specific colors within the image and will clamp any pixel color *not* found in the list to the closest match in the list.  I should also mention that we have quite a number of artists using various versions of Photoshop, with the lowest version being CS2.  As a result I'm targetting Photoshop CS2.
    My first attempt was to cycle through all of the pixels one-by-one, pull the color, find the closest match, and set it again.  This was terrifyingly slow to the tune of ~hour or so on a fairly high-res image.
    My next approach was to use ScriptListener and use Select->Color Range to select pixels of a particular color and provide some error using the Fuzziness value.  This sort-of worked, except when I tried to fill the selection the fill was not a solid color as the selection was feathered.  I can't figure out how to set the feathering to 0.0 under CS2   I know I can do the whole Refine Edge on CS3+, but like I said my target is CS2 as we have a few folks still using that version.
    I also played around with Magic Wand, and it theory it does exactly what I want - provides a selection with some provided tolerance which I can then fill with a solid color.  The problem is I seem to be able to only use the magic wand given a target pixel-coordinate (x,y).  Is there a way I can invoke the magic wand given a color instead?  That or use Color Range without feathering?  Or any other better/recommendd solution that would replace a color +- some tolerance with a specified color?
    Thank you in advance --
    Graf

    It does have that option, but that just selects all pixels with the exact (or rather, really close) color.  Instead, I need to select all of the pixels of that color within some margin of error, and then replace all of them with a solid color.  Not particularly useful to me, as the purpose is to find all pixels of a specific color within some tolerance, and select them without any feathering.
    In CS3 I found that I could refine the selection and set the feathering / anti-aliasing / etc to 0, and then fill the entire selection.  That is *exactly* the desired result, but alas no such option exists in CS2.  Alternatively, using the magic-wand with continuity disabled also provides the desired selection, but I can't seem to invoke the tool without providing an X/Y coordinate.

  • How to hide the pricing conditions specified in pricing procedure of sd.

    dear friends,
    my situation is to hide the conditions specified in the pricing procedure. so that it is not viewed by the some users.can you please tell me how to hide the conditions. so some of the persons, who are having authorization to see the conditions , will be able to see the pricing conditions.
    can you please suggest me how to do this.
    regards,
    g.v.shivakkumar

    Authorisation  issues viz. Role Impementations
    Hide Condition Records Line Item & Header Wise from all the transactions QK / So /  P.I. / Enquiry / Invoice etc. for specific user grps. - in CRETATE / AMEND / DISPLAY / REPORTS all
    Only Display the fields
    regards,
    g.v.shivakkumar

  • How to hide the grid in a colored JTable?

    Hello,
    I have a JTable in "zebra"-look. The color is different every second row.
    Now i tried to hide the grid of the table with: setShowGrid(false);
    Oviously this method only makes the grid's color white. How can i hide the grid in my table?
    thx in advance
    Tobias

    thank you, now it looks like it have to

  • Specifying Colors with a different ColorModel than sRGB

    Hi everyone,
    for a reason which I still don't understand, for sometimes I'm as foolish as hell, I want to specify a color with the HSV color model.
    In order to do this I went through the API specification and I came up with this solution, which I thought would work:
    float components[] = {0.67f, 0.6f, 0.85f};
    ColorSpace cs = new ICC_ColorSpace(ICC_Profile.getInstance(ICC_Profile.icSigHsvData));
    Color HSVColor = new Color(cs, components, 1.0f);
    but at run-time I receive the IllegalArgument Exception "Unknown color space".
    Can someone lend a hand?
    Thanks guys,
    Pierlu.

    It's strange how sometimes you understand where you were wrong only when you ask someone else for cues.
    I've rearranged my code in the following way, and now it works:
    float components[] = {0.67f, 0.6f, 0.85f};
    ColorSpace cs = new ICC_ColorSpace(ICC_Profile.getInstance(ColorSpace.CS_CIEXYZ)); //<---
    Color c = new Color(cs, components, 1.0f);
    but nonetheless it doesn't do what I want!
    I tried to specify the ColorSpace in the following way
    ColorSpace cs = new ICC_ColorSpace(ICC_Profile.getInstance(ColorSpace.TYPE_HSV));
    but I still get an error.
    So I've come to the conclusion that I only can specify colorspaces through static constants that starts with "CS_".
    But my question now is: "How can I specify a color though the HSV or the CIE_Lab or any other damned colorspace?"
    (Sorry guys but I'm getting a nerve out of this)
    Thanks again you all,
    Pierlu.

  • Flattening annotations (comments) changes highlight color in Acrobat, but not Reader

    I have a pdf document with multiple comments consisting of sentences highlighted with different colors. The colors are the default, bright colors in the default commenting "Highlighter Tool Properties" palette. When I flatten with either Adobe Acrobat Pro 9 or X (Tools - Print Production - Preflight - flatten annotations and form fields) the colors of the highlights change from the normal 'bright' colors to dull 'pantone'-like colors. Interestingly, if I view the flattened file with Reader, the colors are fine (back to the bright colors), but when viewing with Acrobat Pro they are the dull pantone colors. It is as if there is a 'flag' in the file telling Acrobat (but not Reader) to change the displayed highlight colors.
    I'm using Mac OS X 10.9.5
    Does anyone know how I might change this so that the highlight colors do not change when flattening?
    Thanks

    Well, I was able to answer my own question. You have to go into "Flattener Preview" and change "Color Space" from the default "none" to something else, in my case, "Device RGB". Also, make sure to set page range.

  • [Acrobat Plugin] How to hide annots and uncheck text indicators and tooltips programmatically?

    I am using C++ developing a plugin for Windows Acrobat Professional 11.
    I want to do following things:
    1) hide and show annots on pages
    2) check and uncheck Edit|Preferences|Commenting Enable text indicators and tooltips
    I know both these are already done by Acrobat, but I just want to make a dialog and help my customers to these in same place.
    Thanks in advance.

    1.
    There is not methods to change visibility of annot on PD layer and PDAnnot object.
    2.
    I have checked AVAppSetPreference, there are only three keys about annots(AVPrefsD.h), they are
    - AVP(avpShowHiddenAnnots, ASBool)
    - AVP(avpShowAnnotSequence, ASBool)
    - AVP(avpPrintAnnots, ASBool)
    none of these change that setting. and I looked for tooltip, even no keys contain "tooltip"

  • Displaying specified colors on the pie chart rather than default colors

    Any ideas on how I can display my own colors on the pie charts rather than displaying default colors?

    Hi,
    You can specify your own colours by changing the default CSS styles.
    Go to the Chart Attributes for the pie chart, and in the CSS section select Yes in the "Use Custom CSS" option. You can now edit the CSS for the chart.
    At the bottom of the "Custom CSS, inline" setting, you need to add in two lines for each possible segment of the chart. Something like:
    rect.data1{stroke:#FFFFFF;stroke-width:0.5;fill:green;}
    path.data1{stroke:#FFFFFF;stroke-width:0.5;fill:green;}
    rect.data2{stroke:#FFFFFF;stroke-width:0.5;fill:yellow;}
    path.data2{stroke:#FFFFFF;stroke-width:0.5;fill:yellow;}
    rect.data3{stroke:#FFFFFF;stroke-width:0.5;fill:red;}
    path.data3{stroke:#FFFFFF;stroke-width:0.5;fill:red;}
    This will set the colours of the first three segments to green, yellow and red respectively. Add in more rect.datan and path.datan entries until you have accounted for the maximum number of segments that your chart may contain.
    Regards
    Andy

  • Could not complete your request because specified color book could not be found

    I have seen this question on here before but the problem was never dealt with. From what I can tell this is an issue when a specific color from a color book is applied to a channel in Photoshop as a spot color and when the same file is opened on another computer with an instance of photoshop that doesn't share the same color book that said colors were pulled from, it simply won't open. Now I have been to countless pages that stated that I can simply download the new color books such as the Adobe Blog New PANTONE libraries but when I go to the link it suggests it just gives me some pantone color manager which after trying it for 30 days, did not download any missing color books. It seems to be the new pantone + libraries that I need in order to open these files. I also called pantone themselves to see if they could give me an answer so hopefully between here and there someone somewhere can get me those color books i need.
    They are apparently free and easy to download. I will probably feel like a moron when someone reveals something obvious I have overlooked but at the very least I just want this problem solved.
    thank you for your time.

    I have seen this question on here before but the problem was never dealt with. From what I can tell this is an issue when a specific color from a color book is applied to a channel in Photoshop as a spot color and when the same file is opened on another computer with an instance of photoshop that doesn't share the same color book that said colors were pulled from, it simply won't open. Now I have been to countless pages that stated that I can simply download the new color books such as the Adobe Blog New PANTONE libraries but when I go to the link it suggests it just gives me some pantone color manager which after trying it for 30 days, did not download any missing color books. It seems to be the new pantone + libraries that I need in order to open these files. I also called pantone themselves to see if they could give me an answer so hopefully between here and there someone somewhere can get me those color books i need.
    They are apparently free and easy to download. I will probably feel like a moron when someone reveals something obvious I have overlooked but at the very least I just want this problem solved.
    thank you for your time.

  • Specify colors in drop down lists

    A client has requested that their drop down menu options are color coded - is this possible? As an example, they have a drop down with 3 choices (Completed, In Progress, Not Started). They want to attribute a color to each option (ie Complete - Green, In Progress - Yellow, Not Started - Red) so that when the form is filled out - a glance at the form provides a quick reference as to the status of all of their projects.  Is this possible? Thanks...  

    Here's a script that you can use as the custom Validate script for the dropdowns. It assumes there are only the three items that you mentioned and set the background color to red, yellow, or green, which will be easier to notice than the font color.
    // Custom Validate script for dropdown
    // Determine the background color
    var f_color = color.red;
    if (event.value === "In Progress") f_color = color.yellow;
    if (event.value === "Complete") f_color = color.green;
    // Set this field's background color
    event.target.fillColor = f_color;

  • Can I change freehand annotation line weight and color BEFORE creating the annotation?

    I'm trying to sign documents and the default pen size is way too big. I can't make my signature small enough to go back and change the size after I write.

    No.  You can only change the properties (Thickness, Color, etc.) of your signature AFTER creating it.
    Once you've created your signature, you can
    Tap the handwritten signature icon (the right-most icon) in the toolbar.
    Tap where you want to add your signature. You will see the popup menu showing "Add Signature" and "Edit Saved Signature".
    Tap Edit Saved Signature to edit it.  You can change the thickness or color of your signature here.
    Additionally, when you tap a newly added signature, you will get a blue rectangle outline with four grabber circles like this.
    You can drag one of the grabber to change the overall size of your signature as well.

  • Dynamic series in flash chart & color specified for each series

    Example of data:
    Date     Series 1     Series 2     Series 3     Series 4     Series 5     Series 6     Series 7     Series 8
    A     12     22     23     22     22     10     10     10
    B     10     9     55     8     8     20     20     20
    C     55     2     5     88     5     15     15     15
    In excel, I can get a stacked horizontal bar chart with the numbers of different series stacked and it is easy to specify the color for each series (it works with Dephi aslo).
    I use a PL/SQL to generate the dynamic series for the chart. And in my application, I need to show some serires with the same color (group of series, each has a specified color). One of the solution I am trying is to input a fixed color sequence and loop it many times in the custom color theme and then insert dummy series into the SQLS. But this could be a disaster while the number of group goes up.
    Anyone has better idea on this? Or is this a limiation of apex?
    Thanks.

    As I tried, apex can support 300 series at most. Dynamic series here is not a good solution still.

  • Reflective Annotation Processing

    Hi there,
    I am using annotations to annotate methods in classes to indicate that they are accessors for some property. Here's an example:
      An enum that defines what type of accessor a method is.
    public enum AccessorType {
      GET, SET ;
    }And then the annotation definition
       An annotation to indicate that the target method is an accessor for this property.
    @Target(ElementType.METHOD)
    @Inherited // btw, I am not sure if this inheritance works on targets of ElementType.METHOD.
    @Retention(RetentionPolicy.RUNTIME)
    public @interface ColorProperty {
      AccessorType value();
    }And an example usage:
    public class Thing {
    private Color _color ;
    @ColorProperty(AccessorType.GET)
    public Color getColor() {
       return this.color ;
    @ColorProperty(AccessorType.SET)
    public void setColor(Color color) {
           this._color = color ;
    }Such a way of using annotations allows me to properly encapsulate, so I prefer it to simply annotating fields and bypassing the security manager (using Field.setAccessible...). (This also makes using AspectJ for interception simple.)
    The application code is supposed to process instances of objects in response to events on a GUI and create appropriate property editors by looking up a widget registry that is basically a Map<Annotation, Widget>. It does this by reflectively examining the methods of each object passed to it, pulling out the methods which have been annotated and binding the appropriate methods to the appropriate widgets. In the above example, this would mean that the engine would create a JColorChooser and bind it to the setColor method of this class.
    Now my question: Currently, the only way to do this processing is to get all the methods of the target class, examine each method to see if it has the annotation. I have to do this for each property that is registered in the widget registry because all such properties need to be editable. Is there a way to do something like this:
    annotation.getTarget(ElementType elementType)which would return the element which has been annotated using the specified annotation and is of the specified ElementType (and maybe null if there is no match)? Or is repeated iteration the only way to do this? Also, are there data on performance for this sort of reflection and/or annotation available somewhere?

    Yes, that's basically what I ended up with a slight difference. I use type() to specify the type of the object that the method accepts in the set method and returns in the get method. As far as I know, there's no way to get a particular method from a class only by its name (is there?). So I can use type information from the annotation to retrieve the correct method without looping through all the methods of this class.
    So the Property annotation looks like this:
    public @interface Property {
      String name() default "Property" ;
      Class<?> valueType() default Object.class ;
      String getter() default "getProperty()" ;
      String setter() default "setProperty()" ;
    }Its used like this:
    @Properties({
       @Property(name="Color", valueType=Color.class, setter="setColor", getter="getColor"),
       @Property(name="Width", valueType=double.class, setter="setWidth", getter="getWidth")
    public class Thing {
    }And processed like this:
    Properties propertiesAnnotation = thing.getClass().getAnnotation(Properties.class);
    Property[] properties = propertiesAnnotation.value();
    for (Property prop : properties) {
         Class<?> c = prop.type();
         Method getMethod = thing.getClass().getMethod(prop.getter(),new Class[0]);
         Method setMethod(thing.getClass().getMethod(prop.setter(),new Class[] { c });
    }There is obviously still some convention I am relying upon, like the fact that accessors will have the form I expect them to be here, but that's no big deal.
    Thanks for your solution.

  • Want to hide or mod FCP 6 Splash Screen

    Just want to hide the splash screen on my FCP system. I rent it to indy projects and I want to protect my serial. How can I access the Splash Screen Image? I've been able to mod the splash screen on all the other apps on the rental system but can not find or get to the Splash Screen for Color and FCP 6. I know that a real hacker can find my serial some how but I am not trying to block those geniuses. Just the lazy ones that are willing to go as far as copying or screen grabbing my Splash Screen and or About Screens to get a working serial. I know how to mod the Splash Screen to hide my serial and how to hide the app so the user can't get to the splash screen. I just don't know where the splash screen file is. I've read that it is in the .nib files? I just wanna hide my serial. Don't care if I mod it myself or install an app that does it for me. Any apple people or anyone else know what I can do to protect my product. I've also been told that the splash screen does not display the full serial but it soo totally does. Hey apple, please add the ability to hide this splash screen. Perhaps with it's own password to unlock and show again? OR, make splash screen hiding a universal ability in the OS. That would be sweet! Anyway,... ideas?

    Hey all. I have been able to mod the splash screen on all the apps in FCP Studio 2 except for FCP and Color. The other studio apps Splash Screens access a .psd file. The only files I've found in Color that seem like they might be the splash screen files are ft_splash.Isi, ft_splashEDU.Isi, ft_splashNFR.Isi and ft_splashVOL.Isi
    How do I open a .Isi file? If I can figure that out I can hide the serial number for Color but it still leaves FCP. Why do apps show the serial on the splash screen at all? What purpose does this serve?

  • Can't set up irssi colors

    I'm feeling really... stupid. I just can't set up irssi colors, almost ashame for asking advice on this
    Here's my theme (just cloned the default theme):
    # When testing changes, the easiest way to reload the theme is with /RELOAD.
    # This reloads the configuration file too, so if you did any changes remember
    # to /SAVE it first. Remember also that /SAVE overwrites the theme file with
    # old data so keep backups :)
    # TEMPLATES:
    # The real text formats that irssi uses are the ones you can find with
    # /FORMAT command. Back in the old days all the colors and texts were mixed
    # up in those formats, and it was really hard to change the colors since you
    # might have had to change them in tens of different places. So, then came
    # this templating system.
    # Now the /FORMATs don't have any colors in them, and they also have very
    # little other styling. Most of the stuff you need to change is in this
    # theme file. If you can't change something here, you can always go back
    # to change the /FORMATs directly, they're also saved in these .theme files.
    # So .. the templates. They're those {blahblah} parts you see all over the
    # /FORMATs and here. Their usage is simply {name parameter1 parameter2}.
    # When irssi sees this kind of text, it goes to find "name" from abstracts
    # block below and sets "parameter1" into $0 and "parameter2" into $1 (you
    # can have more parameters of course). Templates can have subtemplates.
    # Here's a small example:
    # /FORMAT format hello {colorify {underline world}}
    # abstracts = { colorify = "%G$0-%n"; underline = "%U$0-%U"; }
    # When irssi expands the templates in "format", the final string would be:
    # hello %G%Uworld%U%n
    # ie. underlined bright green "world" text.
    # and why "$0-", why not "$0"? $0 would only mean the first parameter,
    # $0- means all the parameters. With {underline hello world} you'd really
    # want to underline both of the words, not just the hello (and world would
    # actually be removed entirely).
    # COLORS:
    # You can find definitions for the color format codes in docs/formats.txt.
    # There's one difference here though. %n format. Normally it means the
    # default color of the terminal (white mostly), but here it means the
    # "reset color back to the one it was in higher template". For example
    # if there was /FORMAT test %g{foo}bar, and foo = "%Y$0%n", irssi would
    # print yellow "foo" (as set with %Y) but "bar" would be green, which was
    # set at the beginning before the {foo} template. If there wasn't the %g
    # at start, the normal behaviour of %n would occur. If you _really_ want
    # to use the terminal's default color, use %N.
    # default foreground color (%N) - -1 is the "default terminal color"
    default_color = "-1";
    # print timestamp/servertag at the end of line, not at beginning
    info_eol = "false";
    # these characters are automatically replaced with specified color
    # (dark grey by default)
    replaces = { "[]=" = "%K$*%n"; };
    abstracts = {
    ## generic
    # text to insert at the beginning of each non-message line
    line_start = "%B-%n!%B-%n ";
    # timestamp styling, nothing by default
    timestamp = "%K$*%n";
    # any kind of text that needs hilighting, default is to bold
    hilight = "%_$*%_";
    # any kind of error message, default is bright red
    error = "%R$*%n";
    # channel name is printed
    channel = "%_$*%_";
    # nick is printed
    nick = "%_$*%_";
    # nick host is printed
    nickhost = "[$*]";
    # server name is printed
    server = "%_$*%_";
    # some kind of comment is printed
    comment = "[$*]";
    # reason for something is printed (part, quit, kick, ..)
    reason = "{comment $*}";
    # mode change is printed ([+o nick])
    mode = "{comment $*}";
    ## channel specific messages
    # highlighted nick/host is printed (joins)
    channick_hilight = "%C$*%n";
    chanhost_hilight = "{nickhost %c$*%n}";
    # nick/host is printed (parts, quits, etc.)
    channick = "%c$*%n";
    chanhost = "{nickhost $*}";
    # highlighted channel name is printed
    channelhilight = "%c$*%n";
    # ban/ban exception/invite list mask is printed
    ban = "%c$*%n";
    ## messages
    # the basic styling of how to print message, $0 = nick mode, $1 = nick
    msgnick = "%K<%y$0%n$1-%K>%n %|";
    # message from you is printed. "msgownnick" specifies the styling of the
    # nick ($0 part in msgnick) and "ownmsgnick" specifies the styling of the
    # whole line.
    # Example1: You want the message text to be green:
    # ownmsgnick = "{msgnick $0 $1-}%g";
    # Example2.1: You want < and > chars to be yellow:
    # ownmsgnick = "%Y{msgnick $0 $1-%Y}%n";
    # (you'll also have to remove <> from replaces list above)
    # Example2.2: But you still want to keep <> grey for other messages:
    # pubmsgnick = "%K{msgnick $0 $1-%K}%n";
    # pubmsgmenick = "%K{msgnick $0 $1-%K}%n";
    # pubmsghinick = "%K{msgnick $1 $0$2-%n%K}%n";
    # ownprivmsgnick = "%K{msgnick $*%K}%n";
    # privmsgnick = "%K{msgnick %R$*%K}%n";
    # $0 = nick mode, $1 = nick
    ownmsgnick = "{msgnick $0 $1-}";
    ownnick = "%_$*%n";
    # public message in channel, $0 = nick mode, $1 = nick
    pubmsgnick = "{msgnick $0 $1-}";
    pubnick = "%N$*%n";
    # public message in channel meant for me, $0 = nick mode, $1 = nick
    pubmsgmenick = "{msgnick $0 $1-}";
    menick = "%Y$*%n";
    # public highlighted message in channel
    # $0 = highlight color, $1 = nick mode, $2 = nick
    pubmsghinick = "{msgnick $1 $0$2-%n}";
    # channel name is printed with message
    msgchannel = "%K:%c$*%n";
    # private message, $0 = nick, $1 = host
    privmsg = "[%R$0%K(%r$1-%K)%n] ";
    # private message from you, $0 = "msg", $1 = target nick
    ownprivmsg = "[%r$0%K(%R$1-%K)%n] ";
    # own private message in query
    ownprivmsgnick = "{msgnick $*}";
    ownprivnick = "%_$*%n";
    # private message in query
    privmsgnick = "{msgnick %R$*%n}";
    ## Actions (/ME stuff)
    # used internally by this theme
    action_core = "%_ * $*%n";
    # generic one that's used by most actions
    action = "{action_core $*} ";
    # own action, both private/public
    ownaction = "{action $*}";
    # own action with target, both private/public
    ownaction_target = "{action_core $0}%K:%c$1%n ";
    # private action sent by others
    pvtaction = "%_ (*) $*%n ";
    pvtaction_query = "{action $*}";
    # public action sent by others
    pubaction = "{action $*}";
    ## other IRC events
    # whois
    whois = "%# $[8]0 : $1-";
    # notices
    ownnotice = "[%r$0%K(%R$1-%K)]%n ";
    notice = "%K-%M$*%K-%n ";
    pubnotice_channel = "%K:%m$*";
    pvtnotice_host = "%K(%m$*%K)";
    servernotice = "%g!$*%n ";
    # CTCPs
    ownctcp = "[%r$0%K(%R$1-%K)] ";
    ctcp = "%g$*%n";
    # wallops
    wallop = "%_$*%n: ";
    wallop_nick = "%n$*";
    wallop_action = "%_ * $*%n ";
    # netsplits
    netsplit = "%R$*%n";
    netjoin = "%C$*%n";
    # /names list
    names_prefix = "";
    names_nick = "[%_$0%_$1-] ";
    names_nick_op = "{names_nick $*}";
    names_nick_halfop = "{names_nick $*}";
    names_nick_voice = "{names_nick $*}";
    names_users = "[%g$*%n]";
    names_channel = "%G$*%n";
    # DCC
    dcc = "%g$*%n";
    dccfile = "%_$*%_";
    # DCC chat, own msg/action
    dccownmsg = "[%r$0%K($1-%K)%n] ";
    dccownnick = "%R$*%n";
    dccownquerynick = "%_$*%n";
    dccownaction = "{action $*}";
    dccownaction_target = "{action_core $0}%K:%c$1%n ";
    # DCC chat, others
    dccmsg = "[%G$1-%K(%g$0%K)%n] ";
    dccquerynick = "%G$*%n";
    dccaction = "%_ (*dcc*) $*%n %|";
    ## statusbar
    # default background for all statusbars. You can also give
    # the default foreground color for statusbar items.
    sb_background = "%4%w";
    # default backround for "default" statusbar group
    #sb_default_bg = "%4";
    # background for prompt / input line
    sb_prompt_bg = "%n";
    # background for info statusbar
    sb_info_bg = "%8";
    # background for topicbar (same default)
    #sb_topic_bg = "%4";
    # text at the beginning of statusbars. sb-item already puts
    # space there,so we don't use anything by default.
    sbstart = "";
    # text at the end of statusbars. Use space so that it's never
    # used for anything.
    sbend = " ";
    topicsbstart = "{sbstart $*}";
    topicsbend = "{sbend $*}";
    prompt = "[$*] ";
    sb = " %c[%n$*%c]%n";
    sbmode = "(%c+%n$*)";
    sbaway = " (%GzZzZ%n)";
    sbservertag = ":$0 (change with ^X)";
    sbnickmode = "$0";
    # activity in statusbar
    # ',' separator
    sb_act_sep = "%c$*";
    # normal text
    sb_act_text = "%c$*";
    # public message
    sb_act_msg = "%W$*";
    # hilight
    sb_act_hilight = "%M$*";
    # hilight with specified color, $0 = color, $1 = text
    sb_act_hilight_color = "$0$1-%n";
    It's almost the way I want it, but a couple of things:
    - I want everyone nickname but mine in gray
    - I want the join/quit text (... has joined/quit) in gray
    - I want the mode (@, +, etc) in yellow
    I tried to format the text according irssi site, but without luck.
    For example tried this to change others nickname color:
    pubmsgnick = "{msgnick %y$0%n %K$1%n-}";
    pubnick = "%K$*%n";
    and this for the quit msg
    # mode change is printed ([+o nick])
    mode = "{comment %K$*%n}";
    # nick/host is printed (parts, quits, etc.)
    channick = "%c$*%n";
    chanhost = "{nickhost %c$*%n}";
    all without any luck. Also tried to put the format strings outside the curly braces, with the same result. I've been editing the config file for a while now, not sure what other information could you possibly need.
    I know it's not a big deal, I stil can use the program with no hassle, but it would really be nice to set the colors like that, to help me distinguish between lines.
    Thank you for reading, and sorry for my lousy english

    Nobody can tell you anything without proper system info or other technical details.
    Mylenium

Maybe you are looking for

  • Once and For All, Can I Yank Out that SSD?

    I am looking at getting a new MacBook Pro Retina, and I can't tell if once I order that thing: Can I open it up, take out that SSD and put back in one of those Seagate Hybrid drives?  I am sure the SSD's are nice and all, but they are crazy expensive

  • Hide playbar

    Sorry, I'm sure this has been asked and possibly answered before, but... Is there a way to hide the playbar navigation controls on selected slides?

  • Dreamweaver CS4 Design View Issues

    Hi, I'm experiencing issues with the design view in DW CS4. It seems a little buggy to me. Sometimes I cannot seem to select any items at all, either using a single or double click. It's starting to drive me nuts. Is there an easy way to enter into t

  • Plugin for eclipse

    hi i have a swing application.I want to make it as a plugin to eclipse.suggest some way for it and examples if any. Requirement is i will get that jar of swing aaplication and want to make a plugin out of it. Thanks

  • I've lost Windows 7 license key

    As stated in the topic, unfortunately I've lost the license key to my Windows 7: Home Premium due to the damage to the sticker (after 3-4 years it completely faded) and by chance it just occurred that I needed to re-install the system (recovery didn'