Multiple Guide colors

I am on a PC - Windows 7 - CS5.5 Extended.
Is there a way to have several guide colors all at once?
I am working on a template and have several borders I am working with bad want to differentiate the "layout" using various guides but making the "groups" different colors.
Eg: I have one "square" 1 inch in from all sides. Guide color is default. I have another "square 1.5 inches in from all sides and want those four guides to all be one color, different from the default color.
Thanks in advance for any help.

No you can't have different coloured guides ( It would be really nice though)
You could use:-
Guide Sets
http://www.ps-scripts.com/bb/viewtopic.php?f=10&t=4618
Per Layer Guides
http://www.ps-scripts.com/bb/viewtopic.php?f=10&t=4617

Similar Messages

  • Multiple text colors in my spry menu

    Can I make multiple text colors in my spry menu? I want to match the text color on one of my spry menu items to the hover color so that you know which link you are currently visiting. I haven't posted the site yet until I work out all the kinks. So, to summarize, I have my spry menu link text color (ul.MenuBarVertical a) set to #E00 and my hover color for those items (ul.MenuBarVertical a.MenuBarItemHover) set to #888. All of the links also contain the same spry menu. I would like the link you're currently in to be #888 and the other links to be #E00 with all of them hovering with color #888. How can I give unique color to an individual menu item? Any help you can give is much appreciated!

    Sorry to bug you again. I implemented your suggestion as you can see in this partial pageview:
    <script src="SpryAssets/SpryDOMUtils.js"></script>
    <script src="js/navbar-select.js"></script>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    ul.MenuBarHorizontal a#button1:hover, ul.MenuBarHorizontal a#button1:focus
    { color:#625647; }
    </style>
    </head>
    <body>
    <div id="team-vision" class="container">
    <div class="header"> <a href="#"><img  id="logo" src="images/logo_i.png" width="215" height="36" alt="Greiner Engineering"></a>
    <ul id="MenuBar1" class="MenuBarHorizontal">
    <li><a href="index.html">INTRO</a>|</li>
    <li><a href="ger-vision.shtml">VISION</a>|</li>
    <li><a href="ger-2firmen.shtml">2FIRMEN</a>|</li>
    <li><a href="#">PROJEKTE</a>|</li>
    <li><a href="ger-network.shtml">NETZWERK</a>|</li>
    <li><a href="ger-contact.shtml"  id="button1" class="MenuBarItemSubmenu">KONTAKT</a>|
    <ul>
    <li><a href="ger-contact.shtml">ADRESSEN</a></li>
    <li><a href="ger-team.shtml">TEAM</a></li>
    <li><a href="ger-location.shtml">LAGEPLAN</a></li>
    </ul>
    </li>
    <li><a href="ger-links.shtml">LINKS</a>|</li>
    <li><a href="ger-publications.shtml">VERÖFFENTLCHUNGEN</a>|</li>
    <li><a href="ger-jobs.shtml" class="MenuBarItemSubmenu">JOBS</a>|
    <ul>
    <li><a href="ger-jobs.shtml">OFFENE STELLEN</a></li>
    <li><a href="ger-practice.shtml">PRAKTIKUM</a></li>
    <li><a href="ger-thesis.shtml">DIPLOMARBEIT</a></li>
    </ul>
    </li>
    <li><a href="ger-impressum.shtml">IMPRESSUM</a>|</li>
    </ul>
    </div>
    I did this in ger-kontakt.shtml, ger-team.shtml, ger-location.shtml
    but it does not leave KONTAKT highlighted.
    If you want to check it out my url is http:/www.lsdcoach.com/greiner-engineering. Select GERMAN and the click on KONTAKT. The other menu items without a submenu work great.

  • Changing ruler guide color not working

    Having an issue when I go to Layout > Ruler guides and change the ruler guide color, it doesn't update on the canvas and the color is still this mint green which is hard to see against a white background. Any idea on how to fix this?

    yeah i went into preferences and changed all the colors in there too, but the one for ruler guides isn't in preferences its under layout > ruler guides. not sure why its not updating

  • Multiple Thumb Slider with Multiple Track Colors

    Hi All,
    Does any one implemented a Multiple Thumb Slider component with Multiple Track Colors. Please find the screen shot of the component below which I am talking about.
    Any ideas or any link or sample source of code given would be highly appreciated.
    If I drag any thumb the colored section between any two thumbs should increase or decrease.
    Thanks,
    Bhasker

    Hi,
    There is a sort of workaround I made myself. Basically you set up your slider into a canvas container and add new boxes exactly at the position between your thumb buttons, in order to imitate your 'tracks'. Look the image below and notice that the black tracks are in fact VBoxes. For different colors, make each VBox different backgroundColor style.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
       <mx:Script>
              <![CDATA[
          import mx.containers.VBox;
          var tracks : Array = [];
          public function changeSliderHandler(event : Event) : void {
             for (var i : int = 0,j : int = 0; i < tracks.length; i++) {
                var track : VBox = tracks[i] as VBox;
                track.setStyle('left', slider.getThumbAt(j++).xPosition + 3);
                track.setStyle('right', slider.width - slider.getThumbAt(j++).xPosition + 3);
          public function addTrackHandler(event : Event) : void {
             var track : VBox = new VBox();
             track.setStyle('backgroundColor', '#000000');
             track.width = 0;
             track.height = 2;
             track.setStyle('bottom', '7');
             tracks.push(track);
             canvas.addChild(track);
             slider.values = slider.values.concat(0, 0);
             slider.thumbCount += 2;
              ]]>
        </mx:Script>
       <mx:Panel title="My Slider" height="95%" width="95%"
                 paddingTop="5" paddingLeft="5" paddingRight="5" paddingBottom="5">
          <mx:Canvas id="canvas" borderStyle="solid" height="40" width="100%">
             <mx:HSlider id="slider" minimum="0" maximum="100" thumbCount="2"
                         change="changeSliderHandler(event)" values="{[0,0]}" showTrackHighlight="false"
                         percentWidth="100" snapInterval="1" tickInterval="1"
                         allowThumbOverlap="true" showDataTip="true" labels="{[0, 50, 100]}"/>
             <mx:VBox id="track1" backgroundColor="#000000" width="0" height="2" bottom="7" initialize="{tracks.push(track1)}"/>
          </mx:Canvas>
          <mx:Button label="Add track" click="addTrackHandler(event)"/>
       </mx:Panel>
    </mx:Application>

  • Multiple guide sets

    In another thread a poster asked about multiple guide sets:
    http://forums.adobe.com/message/4062904#4062904
    It would seem that this should be fairly simple to achieve with writing guides’ properties into the metadata (possibly a dedidcated layer’s xmpMetaData) in sets and subsequently loading them from there.
    One could even do just one dialog with an entry field for entering a name when saving a guide set and a dropDownList to load or remove such sets.
    So I wonder if anybody either has already done something like this or has a (better) idea on the issue?
    Thanks for any feedback.

    Just a couple of amendments to it...
    #target photoshop
    app.bringToFront();
    // Photoshop CS5 or better
    function main(){
    if(!documents.length) return;
    var startRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    // Set up metadata namespace
    if (ExternalObject.AdobeXMPScript == undefined)  ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript");
    var psNamespace = "http://ns.ps-scripts.com/1.0/";
    var psPrefix = "psscripts:";
    XMPMeta.registerNamespace(psNamespace, psPrefix);
    existingGuidePresets = [];
    existingGuidePresets = getGuideArray();
    var guides = app.activeDocument.guides;
    var gH = '';
    var gV = '';
    for( var g = 0; g < guides.length; g++ ){
        if(guides[g].direction.toString() == 'Direction.HORIZONTAL'){
            gH+=(parseInt(guides[g].coordinate.value));
            gH+=',';
            }else{
                gV+=(parseInt(guides[g].coordinate.value));
                gV+=','
    gH=gH.replace(/,$/,'');
    gV=gV.replace(/,$/,'');
    app.preferences.rulerUnits = startRulerUnits;
    var win = new Window( 'dialog', 'Custom Guides' );
    g = win.graphics;
    var myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [0.99, 0.99, 0.99, 1]);
    g.backgroundColor = myBrush;
    win.p1= win.add("panel", undefined, undefined, {borderStyle:"black"});
    win.g1 = win.p1.add('group');
    win.g1.orientation = "row";
    win.title = win.g1.add('statictext',undefined,'Custom Guides');
    win.title.alignment="fill";
    var g = win.title.graphics;
    g.font = ScriptUI.newFont("Georgia","BOLDITALIC",22);
    win.g5 =win.p1.add('group');
    win.g5.orientation = "row";
    win.g5.alignment='fill';
    win.g5.spacing=10;
    win.g5.st1 = win.g5.add('statictext',undefined,'Existing Presets');
    win.g5.dd1 = win.g5.add('dropdownlist');
    win.g5.dd1.preferredSize=[300,20];
    for(var w in existingGuidePresets){
        win.g5.dd1.add('item',existingGuidePresets[w].toString().match(/[^#]*/));
    win.g5.dd1.selection=0;
    win.g10 =win.p1.add('group');
    win.g10.orientation = "row";
    win.g10.alignment='fill';
    win.g10.spacing=10;
    win.g10.bu1 = win.g10.add('button',undefined,'Remove Preset');
    win.g10.bu2 = win.g10.add('button',undefined,'Use and Append Guides');
    win.g10.bu3 = win.g10.add('button',undefined,'Use and Remove Guides');
    win.g15 =win.p1.add('group');
    win.g15.orientation = "row";
    win.g15.alignment='fill';
    win.g15.st1 = win.g15.add('statictext',undefined,'New Preset Name');
    win.g20 =win.p1.add('group');
    win.g20.orientation = "row";
    win.g20.alignment='fill';
    win.g20.spacing=10;
    win.g20.et1 = win.g20.add('edittext');
    win.g20.et1.preferredSize=[300,20];
    win.g20.bu1 = win.g20.add('button',undefined,'Add New Preset');
    win.g200 =win.p1.add('group');
    win.g200.orientation = "row";
    win.g200.bu1 = win.g200.add('button',undefined,'Cancel');
    win.g200.bu1.preferredSize=[350,30];
    win.g10.bu1.onClick=function(){//Remove preset
    if(existingGuidePresets.length == 0) return;
    existingGuidePresets.splice(win.g5.dd1.selection.index,1);
    win.g5.dd1.removeAll();
    for(var w in existingGuidePresets){
        win.g5.dd1.add('item',existingGuidePresets[w].toString().match(/[^#]*/));
    win.g5.dd1.selection=0;
    putGuideArray(existingGuidePresets);
    win.g10.bu2.onClick=function(){//Use and append guides
    if(existingGuidePresets.length == 0) return;
    win.close(0);
    var ar1 = existingGuidePresets[win.g5.dd1.selection.index].toString().split('#');
    var Hor = ar1[1].toString().split(',');
    var Ver = ar1[2].toString().split(',');
    for(var H in Hor){
        activeDocument.guides.add(Direction.HORIZONTAL,new UnitValue(Number(Hor[H]),'px'));
    for(var V in Ver){
        activeDocument.guides.add(Direction.VERTICAL,new UnitValue(Number(Ver[V]),'px'));
    win.g10.bu3.onClick=function(){//Use and remove existing guides
    if(existingGuidePresets.length == 0) return;
    win.close(0);
    clearGuides();
    var ar1 = existingGuidePresets[win.g5.dd1.selection.index].toString().split('#');
    var Hor = ar1[1].toString().split(',');
    var Ver = ar1[2].toString().split(',');
    for(var H in Hor){
        activeDocument.guides.add(Direction.HORIZONTAL,new UnitValue(Number(Hor[H]),'px'));
    for(var V in Ver){
        activeDocument.guides.add(Direction.VERTICAL,new UnitValue(Number(Ver[V]),'px'));
    win.g20.bu1.onClick=function(){//New preset
    if(app.activeDocument.guides.length == 0){
        alert("No guides exist");
        return;
    if(win.g20.et1.text == ''){
        alert("You need to enter a name for the new preset");
        return;
    win.close(0);
    currentGuides = win.g20.et1.text + "#" + gH + "#" + gV;
    existingGuidePresets.push(currentGuides);
    putGuideArray(existingGuidePresets);
    win.center();
    win.show();
    function getGuideArray(){
    var xmp;
    var newGuideArray=[];
    xmp = new XMPMeta( app.activeDocument.xmpMetadata.rawData );
    var Count = xmp.countArrayItems(psNamespace, "GuideArray");
    for(var i = 1;i <= Count;i++){
    newGuideArray.push(xmp.getArrayItem(psNamespace, "GuideArray", i).toString());
    return newGuideArray;
    function putGuideArray(gArray){
    var xmp;
    xmp = new XMPMeta( app.activeDocument.xmpMetadata.rawData );
    xmp.deleteProperty(psNamespace, "GuideArray"); 
    for(var g in gArray){
    xmp.appendArrayItem(psNamespace, "GuideArray", gArray[g].toString(), 0, XMPConst.ARRAY_IS_UNORDERED);
    app.activeDocument.xmpMetadata.rawData = xmp.serialize();
    function clearGuides() {
       var id556 = charIDToTypeID( "Dlt " );
           var desc102 = new ActionDescriptor();
           var id557 = charIDToTypeID( "null" );
               var ref70 = new ActionReference();
               var id558 = charIDToTypeID( "Gd  " );
               var id559 = charIDToTypeID( "Ordn" );
               var id560 = charIDToTypeID( "Al  " );
               ref70.putEnumerated( id558, id559, id560 );
           desc102.putReference( id557, ref70 );
       executeAction( id556, desc102, DialogModes.NO );
    main();

  • Multiple Guide Sets in Photoshop

    I've been able to find very little documentation (mostly just user requests) about having multiple guide sets in Photoshop. I really think this would be a useful tool. Has anyone heard anything about this feature (maybe in upcoming versions - can it be done another way)?

    J Baloney, did I push a button? First of all, I find it a little silly (and sad) you retracted/edited your original reply to me of "Good luck, level 12 guru. Be sure to look out for my noise in your next post. I'll make sure it's level one for you next time, punk." I don't know... maybe you realized I wasn't talking directly to you or about your replies, or maybe you realized calling me a punk was you just being hypocritical. You see, that's what the phrase "in general" means (that something isn't directly in response to the current conversation or topic). I even said so in what you quoted me as saying in your reply above.
    When you opened your reply (actually, it was your edited reply from what I pasted above) with "That's because the majority of your posts are feature requests.", you should have just left it at that.Now that I think about it - how the hell do you know what the majority of my posts are about - are you keeping track? If that's what you think (the majority of my posts...), doesn't it stand to reason I don't need a bunch of replies about possible solutions that (I think) any knowledgeable Photoshop user would have thought about in the first place? If you think about it, by the time you chimed in, I had already said (at least twice) how a series of actions would not benefit my issue. Then you throw in a lesson about how I should "Try reading the responses with the mindset... when they might be wrong" - thanks for the lesson, coach. I don't believe I said any response was "wrong" - I'm pretty sure I only went so far as to say how that particular response was either not really related to the core of the issue or that the response was more of a "band-aid" than a permanent solution (even temporary). I bet you watch CNN because that whole network likes to reword what's said to fit whatever point they are trying to make.
    Good luck. Be sure to look out for my noise in your next post. I'll make sure it's level one for you next time, grand master. I've got say I do take delight in knowing that PS employees who cruise
    this forum skip over queries with multiple posts, as they take that to
    mean it's been answered.
    Thank you for proving my point to... the... "T". Not only is it childish of you to claim you are going to follow me around this forum (maybe you already do since you know what the majority of my topics are about) just to add a bunch of "noise" to my posts, you bring up the exact reason I don't want a bunch of people replying with suggestions that (if they would have thought) aren't a future-forward solution. The more time I have to waste in replying (kind of like the time I've wasted with this reply) with how a user's suggestion wouldn't work for me (and I also take the time to explain why), the less likely I'm going to get an answer or suggestion by someone who might actually have either experienced what I am talking about or can read between the lines enough to know what I'm looking for in an answer. I don't come in here looking for a fight or for pointless arguments (even though arguments can sometimes yield in a solution no one would have thought about by being totally nice), but sometimes the arrogance from people (when they are told their answer isn't what I was looking for) takes over the whole post and nothing gets solved. Simply put, your idea/reply just wasn't what I was looking for - not to mention you basically regurgitated what JJMack already said.
    Jesus, I think I will just go back to the days I actually talked directly to the software engineers and had a lot of success as part of a group of beta testers - there are several programs out there in which my ideas are a part of (although I haven't done so with Adobe - become a beta tester). People on these forums take things too personal and get their feelings hurt and I end up appearing to be the bad person to others who simply skim the surface in reading some of these posts.
    Oh, and what you're really looking for is a grid.
    Uh, that would be a "no" - I'm looking for a way to have "multiple guide line sets" (as the topic states) - nothing to do with grids - but good effort [is this what you wanted to hear even though you are way off-topic]?
    In case you're not familiar with google. Oops, level one hint dropped. Awww, snap.
    Google? What on earth is that? Where would I be able to buy one of those things? Do they have multiple guide line sets I could use?
    To close - my analogy [you may have to look up that word] of level 1 and level 12 was not meant to imply I'm any "grand master" or "punk guru". It was to emphasize how some responses I read (from other forums/posts) can sometimes be so out of touch with the actual topic, and as you mentioned, the more responses a topic gets, the less likely the ones who "really" know the answer would be inclined to read the topic. So, if it is your desire to discombobulate [another word for you to look up] me and sabotage my posts by adding your "noise", at least I have it in your writing so I can forward to Adobe forum moderators.
    Now, to JJMack
    If you want help with available Photoshop versions use the Photoshop Windows, Photoshop Macintosh and Photoshop Scripting Forums.The way I see it your posting to the wrong forum. 
    I'm not posting in the wrong forum - I think I can discern where my particular issue should go. At the time of my original post, I wasn't requesting for a feature - I was asking if anyone had heard about multiple guide sets and/or if anyone had heard about this being talked about for future releases. Now, if/when I would have been told this was not a current feature and/or they had never heard anyone else talking about it, THEN I would have thought to search for the website to request the function.
    Anyway, I'm done with this topic. I will just use 2 separate documents (if needed) in order to have different sets of guide lines. The funny thing is all this time has been wasted on an instance that's only come up one time with me. I just thought there might be an easier way to accomplish my issue for any future needs. I think I will just tell the client "one version only, next"! That's what you call a joke/humor just in case you read that wrong too.

  • Guide Colors

    Any feedback on the new STB img guide colors, for those who may have seen the latest?

    candcgregory wrote:
    I just started a thread on this very thing.
    The color scheme for the channel guide in 1.9.1 is atrocious. Too dark. I have a 32 inch Sony Bravia wall mounted in my bedroom, and 20/20 vision. My TV is 10-12 feet away, and when I pull up the channel guide, I'm having an awful time reading parts of it. The channel logos on the left side bleed into the gray background.
    It looks awful. 
    The word "atrocious" is exactly what came to my mind when I first saw the new color scheme  It demonstrates a total lack of creativity.. 

  • Multiple Link Colors

    Hi, I am quite new to Dreamweaver, and this is the 1st time I've joined a forum. I would like to have multiple link colors on the same page, within the same section (the main body) of a document. I went to some tutorials to learn how to make different sections have different link colors (i.e. navigation bar vs main body), but I cant find any instruction on how to make some of the links in the same section of the doc use different link colors.  I have set up default link colors for the main body of the docs, and separate link colors for the nav bar. Then I tried to set up a 3rd link color to use when I dont want the default link color in the main body, but that doesnt seem to work.
    Also, once I've figured this out, can the stylesheet with these link rule colors be attached to a template, and it will update any existing pages already made off that template?
    Thank you so much for any help anyone can provide.

    This is very straightforward with CSS if you understand the basic concepts.
    I'm not sure how familiar you are with CSS but, as a first step, are you able to follow this tutorial?:
    http://www.projectseven.com/tutorials/css/pseudoclasses/page3.htm
    If you find yourself struggling, please post a link to your site as it stands.

  • Multiple Secondary Color Correction Possible?

    I'm having a strange problem trying to use the secondary color correction inside the 3 way color corrector. It seems to work ok for the 1st filter, but if I try to use it for a a second or more instance of the filter, it seems to behave strangely or not at all.
    I can select a color using the eyedropper, and sometimes it will show up in the color swatch, sometimes not.
    If I chose to show the 'mask' of the results, it will usually show the clip as white in the program monitor, so I can't see where I'm masking.
    I have a feeling that this might have to do with multiple masks interacting with the secondary color correction, and they somehow counteract each other. It doesn't seem very intuitive about how to fix it though.
    I'm also noticing pretty intense banding with the 3 way, I know I can smooth it with the other controls in the color corrector, but I'm also wondering if this might have to do with some secret sequence or screen preview setting that I may have read about before.
    Thanks for any advice.

    The mask should change from white to composite image when you select the left-hand eyedropper.  Is this not happening?

  • Multiple text colors in a JTextArea

    i created a JTextArea in a frame --- // JTextArea ta = new JTextArea();
    and wrote some words onto it with codes like: ta.append("abcd");
    ta.append("efg");
    how to make the color of the words "abcd" different from "efg"?

    JTextArea doesn't support multiple fonts and colours. Have a look at JTextPane or JEditorPane which allow more flexibility in formatting your text. JEditorPane also supports HTML.

  • Constraining the algorithm for assignment of multiple plot colors

    I would like to know if there is some way to modify the algorithm that
    LabVIEW uses to automatically assign different colors when a graph
    displays multiple plots. In particular, given the default background
    color (black), it appears that black is never used for a plot color.
    However, if I programmatically change the background color to white,
    for example, I would like the plot color assignment to not use white. I
    would also like to know if it is possible to constrain the plot color
    assignment to a single color a priori, without having to go back and
    explicitly assign the colors of each plot via the property node in a
    loop.
    Thanks.
    Lyle

    I think you will have to create your own plot color assignment function to do this.
    You can set the color of each plot by using the active plot property (index of the plot you want to change) and then set the plot color property (just expand one and the same property ndoe to set both at the same time).
    You can then make that function check the background color and choose a color table that fits. If this is in a built application you would run this function when a color change is detected, if it's in the development environment you need this feature make the function ask for a VI and plot name (so that it can get a reference to the plot) and put it in your projects folder. That way whenever you need to set the plot colors differently you just select this function from the Tools menu of LabVIEW. An easier alternative though would be to just create the different graphs you need (with the colors for all plots already defined correctly for that background etc.) and save them as custom indicators...
    MTO

  • Multiple font colors

    what's up
    does anybody know how to display font in multiple colors in a Jtextarea or another text component every time i change the font color in my jtextarea it changes for all the words i want it to change for only the next words that i type.
    thanks

    the following sample might be useful to u. i am not sure whether this works for textarea.
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class test extends JApplet
         private JTextPane pane;
         private JButton colors;
         private JToolBar tb;
         public void init()
              pane = new JTextPane();
              tb = new JToolBar(JToolBar.HORIZONTAL);
              colors=new JButton("Colors");
              colors.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        Color newColor = javax.swing.JColorChooser.showDialog(null,"Choose Text Color",Color.cyan);     
                                  if(newColor!=null){
                                            MutableAttributeSet attr = new SimpleAttributeSet();
                                            StyleConstants.setForeground(attr,newColor);
                                            pane.setCharacterAttributes(attr,false);
              tb.add(colors);
              getContentPane().setLayout(new BorderLayout());
              getContentPane().add(tb,"North");
              getContentPane().add(pane,"Center");
    //<applet code=test.class width=300 height=300></applet>
    for more information follow this link.
    http://manning.spindoczine.com/sbe/files/uts2/Chapter20html/Chapter20.htm
    cheers
    sri

  • Jtable cell having multiple font colors

    Is it possible to have text in a cell with multiple colors (e.g. using html)?
    -Jim

    Should be possible:
    http://java.sun.com/docs/books/tutorial/uiswing/components/html.html
    I was able to do different colors by adding HTML to one of my table cell data items:
    <html><center><b>Enable</b> <font color=#ff00dd>middle button</font>

  • Multiple Text Colors

    I am wondering if I can have different colors in one text
    field. Whenever I change the color in the properties panel it
    changes all of the words in the text. I want to have most of the
    text black, but have some of the words in the text different
    colors. Can this be done, and if so how can I do it?

    As long as the textfield isn't dynamically loaded with text,
    you can change individual letters by selecting them while in the
    typing mode. If the text is dynamically loaded, then you would need
    to use html to apply different colors.

  • Using multiple guides to help with layout

    Hi,
    I have seen in lots of Muse and InDesign training videos that the designers are using multi guides which run vertically. The guides are set with a wider gap, then a narrow gap, then a wider gap etc. I know this to aid layout and create a more uniform spacing.
    Can anyone tell me the method used to create the guides and how the gaps (wide and narrow) are calculated.
    Thanks,
    Matt

    In the new site dialog box on the upper right side. The wide ones are the columns and the narrow are the gutters. Hope this helps

Maybe you are looking for

  • 20G iPod not recognized by iTunes or My Computer on PC running on XP

    I've just gotten a refurbished 20G colour iPod, bought online directly through Apple. When I received it I fully charged it and connected it to my computer, which refused to recognize it. After going through troubleshooting on my own and talking with

  • Force Win 8 to use wired connection

    Hi Folks, I'm running Win8 on an Acer Desktop.  I have cable internet from Comcast, with the modem running thru a router, then to the pc.  I want to be able to use the wired connection for the desktop access to the internet, and use the wireless ONLY

  • How to change the name of a group mms in iOS 8.1.2?

    I have a group of friends and we made a group mms to keep track of things. There are more than 8 people in this group so I get nonstop messages from everybody and I would like to be more organized and make a name for it. I looked up how to and I did

  • Adobe Photoshop CC 2014 has stopped working - crash

    Adobe Photoshop CC 2014 keeps crashing randomly it's annoying I can't use for 10 minutes straight.. Event log Faulting application name: Photoshop.exe, version: 15.0.0.58, time stamp: 0x536b416e Faulting module name: Photoshop.exe, version: 15.0.0.58

  • Unable to export certain files from a collection

    Hi, I made a collection from certain picks from 3 other collections. As the 3 other collections were a mixed bag of images I wanted to put together for one show. - the collection that I made, consisting of images from the other collections, will not