Dynamic shape colors: color palette?

I am having a hard time finding guidance for this and am hoping someone can point me to the right guidance.
I have a number of visio files, all of them visual representations of workflows.  I have color-coded each, but if I want to change colors systematically (ie: hey, I want all of those things that are coded blue to be coded red instead) I currently would
have to go to each file and re-color all of the shapes.  Obviously a poor solution.
Is there a way to define a color palette, tell visio to use that palette for various shapes, then allow for dynamic changes to that palette that would be reflected in the visio shapes?
I have explored Data Graphics and assigning color by shape value, but those colors are hard-wired.
Thanks for any ideas!

Hi Mitofi,
Your required may need some macro via VBA code. I'll move your question to the MSDN forum for General Develop forum
http://social.msdn.microsoft.com/Forums/en-US/home?forum=officegeneral&filter=alltypes&sort=lastpostdesc
The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
George Zhao
TechNet Community Support
It's recommended to download and install
Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
programs.

Similar Messages

  • Coloring a Dynamic Shape

    Hello, im stumped. I cant seem to figure out how i can color a randomly generated path.
    The area in between the two lines is what i am trying to color. The path is randomly generated via two lines. I have access to every point in each line via x1Pos and x2Pos in gui.java.
    How would you go about doing this? ( If [IMG] tags arent allowed then the following code has been tested and compiles with the standard library.)
    Myframe.Java
    import java.util.Random;
    import javax.swing.JFrame;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Random;
    class MyFrame extends JFrame {
          static Gui gui;
          static Dimension frameSize;
          static boolean initialSet = false;
         public MyFrame()
              frameSize = new Dimension();
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              frameSize.height = 500;
              frameSize.width = 500;
              setSize(frameSize);
              //center the frame
              setLocation((screenSize.width - frameSize.width)/2, (screenSize.height - frameSize.height)/2);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              setTitle("Hello");
              setResizable(false);
              System.out.println("hello");
              Container contentPane = getContentPane();
              contentPane.setBackground(Color.white);
              gui = new Gui(frameSize.height/2);
              gui.setSize(frameSize);
              contentPane.add(gui);          
         public static class GuiLogic implements Runnable
              Thread t;
              Random rand;
              public  GuiLogic()
                   t = new Thread(this, "Demo Thread");               
                   rand = new Random();
                   t.start();
              public int getX(int d, int x1)
                   int x = x1 + d;               
                   return x;
              public void run()
                   int firstLine[] = new int[frameSize.height/2];
                   int secondLine[] = new int[frameSize.height/2];
                   int yPoint[] = new int[frameSize.height/2];
                   int x1 = 0;
                   int x2 = 0;
                   int curveLength = 0;
                   int pointsAdded = 0;
                   int curveDirection = 0;          // 1 - left, 2 - right, 3 - straight
                   boolean curveAdded = false;
                   boolean curveStarted = false;               
                   while(true)
                        //where the road should start (Higher value = lower positon)
                        int lastY = frameSize.height;
                        int width = 150;
                        int start = 150;
                        //set up initial coordinates
                        if(!initialSet)
                             //makes the first screen a straight path
                             for(int i = 0; i < frameSize.height/2; i++)
                                  int y = lastY - 2;
                                  lastY = y;
                                  yPoint[i] = y;
                                  firstLine[i] = start;
                                  secondLine[i] = start + width;
                                  gui.setCord(i, firstLine, yPoint[i], secondLine[i]);
                             initialSet = true;
                        //Generate all other coordinates
                        if(!curveStarted)
                             curveLength = rand.nextInt(100) + 30;
                             curveDirection = rand.nextInt(2) + 1;
                             curveAdded = false;
                        //if the current curveLength will make the path go within 30 pixels of the right edge
                        // and curve direction is right
                        //generate new direction and curve length
                        if(((firstLine[frameSize.height/2 - 1] + curveLength + width) >= (frameSize.width - 40)) && curveDirection == 2)
                             System.out.println("Right bound");
                             boolean direction;
                             curveLength = rand.nextInt(100) + 30;
                             direction = rand.nextBoolean();
                             if(direction)
                                  curveDirection = 1;
                             } else
                                  curveDirection = 3;
                        } else
                        //if the current curveLength will make the path go within 30 pixels of the left edge
                        //and curve direction is left
                        //generate new direction and curve length
                        if((firstLine[frameSize.height/2 - 1] - curveLength) <= 30 && curveDirection == 1)
                             System.out.println("left bound");
                             boolean direction;
                             curveLength = rand.nextInt(100) + 30;
                             direction = rand.nextBoolean();
                             if(direction)
                                  curveDirection = 2;
                             } else
                                  curveDirection = 3;
                        if(!curveAdded)
                             curveStarted = true;
                             //Right curve
                             if(curveDirection == 2)
                                  x1 = firstLine[frameSize.height/2 - 1] + 1;
                                  x2 = getX(width, x1);
                                  pointsAdded++;
                             //left curve     
                             } else if(curveDirection == 1)
                                  x1 = firstLine[frameSize.height/2 - 1] - 1;
                                  x2 = getX(width, x1);
                                  pointsAdded++;
                             //Straight
                             else if(curveDirection == 3)
                                  x1 = firstLine[frameSize.height/2 - 1];
                                  x2 = getX(width, x1);
                                  pointsAdded++;
                             //check if done with last curve
                             if(pointsAdded >= curveLength)
                                  pointsAdded = 0;
                                  curveAdded = true;
                                  curveStarted = false;                              
                        //Update Gui
                        //Buffer last points          
                        int buffer[] = new int[2];
                        buffer[0] = firstLine[frameSize.height/2 - 1];
                        buffer[1] = secondLine[frameSize.height/2 - 1];
                        //move all coordinates down
                        for(int i = 0; i < frameSize.height/2 - 2; i++)
                             firstLine[i] = firstLine[i + 1];
                             secondLine[i] = secondLine[i + 1];                         
                        //add the buffered coordinate and the new coordinate
                             firstLine[frameSize.height/2 - 2] = buffer[0];
                             firstLine[frameSize.height/2 - 1] = x1;
                             secondLine[frameSize.height/2 - 2] = buffer[1];
                             secondLine[frameSize.height/2 - 1] = x2;
                        //resend all coordinates to gui
                        for(int i = 0; i < frameSize.height/2; i++)
                             gui.setCord(i, firstLine[i], yPoint[i], secondLine[i]);
                        //Thread Control
                        try
                             //how fast the road moves
                             Thread.sleep(5);
                        } catch (InterruptedException e)
                             System.out.println(Thread.currentThread() + " Interrupted");
         public static void main (String[] args)
              MyFrame frame = new MyFrame();               
              frame.setVisible(true);
              //start Logic Thread
              new GuiLogic();
              //set main Thread to infintley repaint GUI
              while(true)
                   gui.repaint();
    Gui.java
    import javax.swing.JPanel;
    import java.awt.*;
    class Gui extends JPanel {
         int x1Pos[];
         int x2Pos[];
         int yPos[];
         int num;
         Polygon poly;
         Color color;
         public class Colorer implements  Runnable
              Thread t;
              public Colorer()
                   t = new Thread(this, "Colorer");
                   t.start();
              public void run()
                   poly.addPoint(x1Pos[num-1], 0);
                   poly.addPoint(x2Pos[num-1], 0);
                   poly.addPoint(x1Pos[0], yPos[0]);
                   poly.addPoint(x2Pos[0], yPos[0]);
                   System.out.println("asdf");
         public Gui(int amount)
              num = amount;
              x1Pos = new int[amount];
              x2Pos = new int[amount];
              yPos = new int[amount];
              poly = new Polygon();
              new Colorer();
              color = Color.red;          
         public void setCord(int loc, int x1, int y, int x2)
              x1Pos[loc] = x1;
              yPos[loc] = y;
              x2Pos[loc] = x2;
         public void setColor(Color c)
              color = c;
         public void paintComponent(Graphics g)
              super.paintComponent(g);
              if(x1Pos != null && x2Pos != null && yPos != null )
                   g.drawPolyline(x1Pos, yPos, num);
                   g.drawPolyline(x2Pos, yPos, num);

    Use an actual java.awt.geom.Path2D and Graphics2D.fill(Shape)? Probably the same advice as earlier (since Polygon is-a Shape as well) so if it doesn't work show that in a SSCCE.
    Edit: because painting is more fun that making reports here is a SSCCE. BTW, the proper forum would be the AWT one.
    import java.awt.*;
    import java.awt.geom.Path2D;
    import java.awt.geom.Path2D.Double;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    public class TestFillShape extends JPanel {
        public TestFillShape() {
            setBackground(Color.BLUE);
            setPreferredSize(new Dimension(400, 400));
        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            int thirdX = getWidth() / 3;
            int thirdY = getHeight() / 3;
            Double path = new Path2D.Double();
            path.moveTo(thirdX, 1);
            path.lineTo(1, thirdY);
            path.lineTo(thirdX, getHeight() - thirdY);
            path.lineTo(thirdX, getHeight() - 1);
            path.lineTo(getWidth() - thirdX, getHeight() - 1);
            path.lineTo(getWidth() - 1, getHeight() - thirdY);
            path.lineTo(getWidth() - thirdX, thirdY);
            path.lineTo(getWidth() - 1, 1);
            path.closePath();
            ((Graphics2D) g).setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                    RenderingHints.VALUE_ANTIALIAS_ON);
            g.setColor(Color.RED);
            ((Graphics2D) g).fill(path);
            g.setColor(Color.YELLOW);
            ((Graphics2D) g).setStroke(new BasicStroke(2f, BasicStroke.CAP_ROUND,
                    BasicStroke.JOIN_ROUND));
            ((Graphics2D) g).draw(path);
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable() {
                public void run() {
                    JFrame frame = new JFrame("Test");
                    frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                    frame.getContentPane().add(new TestFillShape());
                    frame.pack();
                    frame.setLocationRelativeTo(null);
                    frame.setVisible(true);
    }

  • Color Swatch Palette is Stuck

    I am a designer working for a printer. We have a customer who is trying to add a new color to her CS4 document. She is selecting New Color Swatch - Spot - Pantone Solid Coated but is getting Process Coated DS colors -- the palette is stuck. Any suggestions? When she sent the document to me I didn't have any problems with the swatch palette.
    Thanks for any help.

    from the help files:
    Restore all preferences and default settings
    When InDesign is behaving erratically, deleting preferences (also referred to as “trashing preferences” or “removing preferences”) often solves the problem.
    Do one of the following:
    (Windows) Start InDesign, and then press Shift+Ctrl+Alt. Click Yes when asked if you want to delete preference files.
    (Mac OS) While pressing Shift+Option+Command+Control, start InDesign. Click Yes when asked if you want to delete preference files.

  • Dynamically setting the color of the title in a Panel

    Hello, I know I can set the color & font of the title in a Panel using the titleStyleName in a stylesheet.  How can I dynamically change the color though?  I have a component:
             <mx:Panel id="myPanel"borderColor="{this.color1}" />
    where this.color1 is a value that changes dynamically, and thus changes the border color.  How do I do this for the color of the text in the title?

    Hi,
    Try this
    var css:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".myPanelTitle");
    css.setStyle("color",0x00FF00);

  • On my G5 mac at work, I am getting - don't know what to call it - looks like extraneous matrix type code around prompt windows and in applications. Sometimes I will get large shapes of colors, yellows, magentas, cyans. Anyone else experience this?

    On my G5 mac at work, I am getting - don't know what to call it - looks like extraneous matrix type code around prompt windows and in applications. Sometimes I will get large shapes of colors, yellows, magentas, cyans. Anyone else experience this?
    I will attach a recent screen shot of a print window I opened and the extra code is above and below the window. There are matrix type blocks of code and then lines under the window. I get this all the time and it is getting worse.
    Any help to get rid of it would be appreciated.
    Thanks
    TatteredSkull

    It's likely the Video card, or possibly heat.
    At the Apple Icon at top left>About this Mac.
    Then click on More Info>Hardware and report this upto *but not including the Serial#*...
    Hardware Overview:
    Machine Name: Power Mac G5 Quad
    Machine Model: PowerMac11,2
    CPU Type: PowerPC G5 (1.1)
    Number Of CPUs: 4
    CPU Speed: 2.5 GHz
    L2 Cache (per CPU): 1 MB
    Memory: 10 GB
    Bus Speed: 1.25 GHz
    Boot ROM Version: 5.2.7f1
    Get Temperature Monitor to see if it's heat related...
    http://www.macupdate.com/info.php/id/12381/temperature-monitor
    iStat Menus...
    http://bjango.com/mac/istatmenus/
    And/or iStat Pro...
    http://www.islayer.com/apps/istatpro/
    If you have any temps in the 70°C/160°F range, that's likely it.

  • How To Make Shapes Change Colors When Clicking on them. Example Sheet Sales Data.xlsx template with Excel 2013

    My question is related to the Sales Data.xlsx template that comes with Excel 2013
    IN this workbook is a sheet named Sales Data. It has, 3 shapes. One each for each of the tab sheets in the workbook. When I click on the 'Sales Report' shape it selects the sales report tab. When you do this the shape changes color and the 'Sales Data' shape
    also changes color.
    However I'm unable to figure out how the colors are changing. 
    I don't see any macros in the workbook/worksheet. Nor do I see any code for worksheet events. I don't see any modules in VBA either. I think what is happening is that there are 2 shapes. When you click on one, the one shape goes to the background and the
    other one comes to the foreground.
    I'm no sure how it's doing that. 
    Can someone look at this template, Sales Data.xlsx that comes with Excel and explain how this functionality works?
    Thank You
    Keith Aul
    Keith Aul

    The shapes are exactly as I suspected, each of 3 sheets has 3 'navigation' shapes. The shape with the same name as the sheet has no hyperlink and is coloured differently to indicate it refers to the active sheet. The other two have hyperlinks linked to respective
    sheets. 3x3 shapes, 9 in total, none of them ever change colour!
    It's logical though not necessary to name each shape same as the sheet it links to, but they'd work just as well with their original default names.
    For aesthetics, the shapes that refer to own sheet have a horizontal line on top, actually two shapes as a group.
    If still confused copy each set of 3 shapes to a 4th sheet, or open two new windows so you can see all three sheets at the same time.

  • Dynamically changing the color of nodes in a JTree

    I have created a JTree and want to dynamically change the color of some of the TreeNodes as my program runs. The JTree is displayed in a JPanel. There is an algorithm built into which identifies the nodes whose color I need to change. No user actions is performed (everythign is internal to the program).
    It seems that in the TreeCellRender only kicks in when the tree is first displayed. How do I get it to re-render the tree when the TreeModel changes? It seems that the Listeners are only looking for external user interactions.
    Any help would be greatly appreciated.
    Thanks!

    I think I was a bit too vague in my question. Let me try again...
    I have changed an attribute in a node in a JTree. This attribute is changed after the tree was initially rendered, but while the program is still running. I want to tell the TreeCellRenderer to look again at this node since that attribute that was changed will effect how the node should be renderered. I tried using the nodeChanged() method, but it did not work (the colot of the node did not change). Any advise how I can do this?
    Thanks!

  • Still can't change shape's color in runtime

    Hi , I've read many of the earlier posts in the subject , and everyone saying , that if I want to change a shape's color in runtime I should just after creating the shape , add the line:
    shape.setCapability(shapw.ENABLE_APPEARANCE_MODIFY);
    I've tried it with boxes , and cylinders , and it just doesn't work!!! it keeps throwing exceptions when I try to set a new appearance after the scene was loaded
    PLEASE HELP!!!

    I SOLVED THE PROBLEM!
    I've done some deeper digging in the post archives , and I found a reply of NathalieP that works -
    I need to do .setCapability , not only to the box itself , but to all the box's parts - TOP,BUTTOM.....
    THANKS NathalieP

  • Cannot fill a rectangular shape with Color

    HI,
    I cannot fill a rectangular shape with color. I know it was working at some point. I checked the ID help, and did a search here with no results.
    I have the tool bar set correctly I think (see below). The object isn't behind other objects either, - that I can see. I do see it when I use the scroll bar so it's there somewhere. (see Pink box below).
    Any ideas profound or otherwise?
    Thenk Yew.

    You haven't got 100% transparency applied to it?  Then it might appear while scrolling because of a slightly delayed display.  That's all I can think of at the moment...
    The other thing to try if you suspect an individual document is playing up is to export it to inx or idml and open that.  Then another thing is to try replacing your preferences.

  • Setting Dynamic Shape Colours in RTF

    Hi All,
    I've been looking around but I'm only able to find info on changing shape dimensions, replicating and what not but I need help on changing a shape color conditionally.
    XML example as follows:
    -<G_1>
    <OBJECTID>4515</OBJECTID>
    <OWNER_ID>6910</OWNER_ID>
      -<G_2>
       <STATUS>Green</STATUS>
       </G_2>
    </G_1>
    -<G_1>
    <OBJECTID>4516</OBJECTID>
    <OWNER_ID>6911</OWNER_ID>
      -<G_2>
       <STATUS>Red</STATUS>
       </G_2>
    </G_1>
    So I have a template and I'd like to add a shape and have the shape change color based on the status. Appreciate if someone could guide me. Thanks.

    Appreciate if someone could help me here

  • Hey, How do I populate my replace colors color library in illustrator? I tried to replace color on a traced/ vectorized image and when I selected and went to the color library CC said I need to use a valid username. I was already logged into my adobe acco

    Hey, How do I populate my replace colors color library in illustrator? I tried to replace color on a traced/ vectorized image and when I selected and went to the color library CC said I need to use a valid username. I was already logged into my adobe account.

    Can you please show a screenshot of what exactly you want to replace where?

  • I am having a problem changing a color in a selected area. Using the Quick Selection tool I am able to select the area I wish to change. Using the Brush tool, color, color mode and click drag in my selected area, nothing happens, no color changes.   I hav

    I am having a problem changing a color in a selected area. Using the Quick Selection tool I am able to select the area I wish to change. Using the Brush tool, color, color mode and click drag in my selected area, nothing happens, no color changes. I have viewed some videos and read numerous articles but haven't found the one to help me. Please point me in the best direction. Thank you Vincent TC

    For the sake of clarity and to save people time, Todd is asking about the behaviour of the Patch tool when using it to repair the area next to the young lad's head.  Todd gets a blurred dark tone pretty much regardless of the options he uses.
    IMO that's what I would expect to happen because of the close proximity of the other image elements i.e. the lad's neck and the strong lines of his shirt.  I would not choose to use the Patch tool in this situation.  Content Aware Fill makes a better stab at it. 

  • Custom shapes disappear from palette

    I saw an old post on this topic, but no replies...I am having the same problem so thought I would try again.
    I import custom button shapes through the shapes palette. I do not click the button for this project only. I apply the shapes too buttons in the project, then close the project. When I attempt to open the project again, DVDSP states that it cannot find the shape in the palette. References to the shape have been removed.
    Then, when I try and re-import the shape , it says The shape (shape name) already exists. Replace existing shape?
    Any ideas?

    Logan, We've not seen this happen before.  Can you double check that shapes are not being saved to another library?  (In the shape gallery, tap on the menu option at the top of the screen.  This will show you the CC libraries menu--you can select libraries or create new ones from here.  Unless you've created multiple libraries, you should only see one library there.  If you have mutiple libraries, tap on each to see if your shapes were saved there.)

  • Please bring color back to vector shapes in Layer Palette with no-thumbnails.

    Please bring the color box back to vector shapes!
    I am one not to use images in my layer palette, and in CS5 this was a breeze, but now the icons are different, there is no white box on the icons anymore (which really helps when scanning, and differentiating from folders), and I can't preview the color of the vector shape that I created in Photoshop. Vector shapes are a big part of my work. Before it would show a box with the color, now it shows nothing. The linking vector box is not neccesarily important as long as when I click it, the points become live.
    Also the dividing lines for layers is not strong enough, doesn't have to be white, but at least gray. Black is definately not helping to divide the layers. And for nested layers, having the dividing line go half way to the edge really helps alot.
    I noticed that a lot is different about the "no-thumbnails" version of the layer palette, and some I can live with, some changes I cannot. But being able to preview the color of a vector shapes is important for me, and seeing the white box behind the icon really helps when scaning a lot of layers. I've attached a comparison, also I have attached an image of how my layer palette looks on a daily basis from CS5 and CS6, I also opened the folder, and matched the palettes so you can see what I mean. Those little things really make a difference when scanning up and down 50-100 layers.
    Even though setting the layer palette to no images may be a rarity among photoshop users, it's something that I value in photoshop, especially since my documents have hundreds of layers.

    I think it was a fair assessment given the circumastances of the answer you provided, Jeanne. Also, another thing is that posting under an "employee" account, you are speaking for the company. You are representing the company whether it is your intention or not. Even if you explictly state that what you say is your personal opinion, people might have mixed feelings about what you say and mistake it for a belief that the whole company shares. So be careful with that, just as a note for the future.
    But anyway, as for the issue at hand... That still doesn't give us anything other than "we won't do it." And again, I advise you to look through the post I referenced to. There are some very easy solutions there that help make the layers palette much easier to scan and work with. It's not too difficult to fix this and as already said above, you're already working on a fix for the thumbnails themselves anyway.
    The solution to this problem could be as easy as this (I can provide another graphic for the darker UI settings, if you want):
    What you do is:
    Display a bigger thumbnail of the layer icon (yes, that will use up more space in the no-thumbnail view, but that's not a huge problem compared to what you have now)
    Clearly display the content of the layer (in this case, both layers are gradients, but it could also just have a solid color fill)
    Lighten the color of unselected layer's names (to make the properties of the layer itself stand out better),
    Make the layer thumbnail itself (if it's a vector layer) toggle the path outline on and off and
    Bring back the separation line from CS5, which indicated the layer's position in the grouping hierarchy.
    If you do that, you've already solved quite a lot of the scannability and readability problems. In the future, you could improve the iconography to be better optimized for quick scanning, to make them stand out better (give them more depth) and so on, but for now, this should be enough to make things better for most people. And also, this will not take up too much development time. You've already got the logic of the separation lines from CS5, for example. Shouldn't be too much of a problem to implement in CS6. I'm not going to speak for the other things, because I don't know too much of the internal workings of the program, but it shouldn't be too much of an issue.
    Trust me, this change will make a world of difference. People will love this even if they don't understand that it's there or why they love it.
    Would you like me to provide detailed wireframes and documentation, so your designers don't have to worry their heads about this one? Just asking, because this is a change that should really be pushed through, no matter what.
    Cheers,
    Riho Kroll

  • How to Create a Custom Color Chooser/Palette with 16 or 24bit Color Support

    Hi All,
    I need some help on how to create a color palette/chooser with 16 bit or 24 bit color options available
    First setting up the context:
    I am developing an application which allows designing some GUI screens by adding various controls.
    Now these GUI Screens developed are compiled and downloaded into a series of display devices with each device having a different color support (For e.g. 256 colors, 16 bit, 24 bit and 32 bit).
    Now according to the selected device i would need to provide the "Color Chooser" with only those colors that are supported by the device. SO I need to design a Color Palette(s)/Chooser(s) with 16 bit, 24 bit or 32 bit color options
    Could anyone help me out on how to create such palette? A piece of sample code would be a great help
    Best Regards

    It is not that simple... reason I almost never use those old captions anymore but replaced them by shapes (much easier to format).
    Have a look at the available captions: for each caption you'll need a bmp and a fcm file, and follow naming conventions. See:
    http://helpx.adobe.com/captivate/using/text-captions.html#creating_custom_text_caption_sty les

Maybe you are looking for

  • Missing firewire devices

    For some reason my G5 dual 1.8 has stopped recognizing my sony firewire devices in FCP 5.0.4 (PD150 camera, DSR20 Deck, Z1U, etc.). A friend has suggested that I need to reinstall my system (10.4.6). Any other (less time consuming) thoughts? TIA, Jay

  • InDesign brochure into Captivate 8 - workflow?

    We have a multi-page brochure (InDesign) we want to turn into a tutorial in Captivate 8. I can find no documentation for getting these products to work together. Ideally we want as little work as possible - i.e.to drop in the document and have each p

  • Input help in Adobe Flex

    Last days I have been following some video tutorials on flex and web dynpro, but I can 't seem to find anything on input help. Is there a way to implement input help in Flex? I want the user to still be able to search the values like in a default sea

  • OS X 10.6.8 to Mavericks.

    I'm trying to upgrade a Mac Mini to Mavericks.  The current software is 10.6.8 (Snow Leopard?).  After downloading the Maverick installer I attempted to upgrade the software, twice.  Both times the install fails due to "no-recovery" error.  The insta

  • Make Selection Pen Tool Issue

    Thanks for reading first of all. I know and love the pen tool and have used it for a long time now but suddenly today something is awry. When I outline the part of the image I want and choose make selection it selects everything BUT what I have a pat