Add new clip art to content pane in PSE 7

I want to add some additional clip art to the "create - artwork - content - by object - any category" window pane on the right of the editor screen. I am working on a photo album and need more specialized clip art than the generic stuff that shipped with the software. I looked in the Adobe folder, but nothing jumped out at me. How about a hand?
Barry in St. Louis

In version 3.5, we used to have a section in the workbook to display all the free characteristics, users are using that to do filter and drill down.  If any new char added into query, it will be shown automatically on the workbook once it's refreshed, which usually shown on the row right above the query results.  After converted to BEx 7, this section is equivalent to navigation pane of chars. Of course I can right click to find the new char from the Add drilldown menu and I also can find it in the Query Properties->General page, but then this is a totally different user interaction, we need to re-educate users on this different and notify them whenever a new char is added.  Therefore I am looking for a way to show the new char at nav pane to all workbooks like before.

Similar Messages

  • Adding clip art to the "Extras" in PSE 11

    Is it possible to add more clip art to the "Extras" (to be included "on" slides) in Adobe Photoshop Elements 11? I note that there is a clip art folder in Premiere Elements 11 but can find no such thing for Photoshop Elements 11.
    Can this be done.
    Thanks in advance,
    Dale

    In Acrobat XI we have provided user customization of the tools and you can now add the 'Strikethrough' (is this what you mean by "StrikeOut"?), 'Underline', and more quite simply to the Toolbar.
    Simply right-click on the menu bar which in turn brings up the Tools context menu, and select "Edit Current Tool Set..." - this is the Customization menu.  Here you can add any single tools and any others to the Tool Bar, and/or also create custom Tool Sets for the Right-Hand panel, which consist of only the tools you are interested in having in your Tool Set.
    I am fairly certain that we don't support adding or changing Registry Entries for customizing Acrobat, nor ever have.  If you decide to persist in this manner, you are on your own.
    Thanks
    Mark Tezak

  • PerformancePoint Designer is not loading when clicking on "Add new item" from PerformancePoint Content List

    Hello,
    I am using Internet Explorer 9 to create a new item by launching Performance Point Dashboard Designer from browser. 
    When i click on "Add new item", an Iframe will open showing dashboard design redirect which keep loading for couple of minutes and the designer never opens. 
    Yes, there are working workarounds like opening these links in other tab or opening dashboard designer directly or by clicking on "Run Dashboard Designer"  from BI Center homepage. 
    However, Can someone please help me how to get designer opened when "Add new item" has been clicked from  PerformancePoint Content List from browser? 
    Thanks in advance.
    NKV Prasad Panthangi

    An Update :
    I found this is due to the browser limitation. 
    I have downgraded my Internet Explorer Browser to IE 8 and did the following changes in my browser settings. 
    Tools --> Internet Options --> Navigate to Security Tab --> Click on Custom Level Button --> Under Download --> Select "Enable" radio box for Automatic Prompting for File Downloads. 
    Sadly, I cannot ask users to downgrade their browser to IE 8 because MS already stopped support for this browser and there are no other solution for this except going by workarounds. 
    This clearly says why people are moving away from PerformancePoint Services in SharePoint. 
    Thanks
    NKV Prasad Panthangi

  • How to add a text area in a Content pane..?

    Hi,
    I created a content pane with 5 buttons. One of them is a quit button, and I was able to create an "system.exit(0)" event handling for him. My problem is.. I have 4 other buttons, and I want them to show some text when I click them. How do I add a text area bellow my content pane..?
    Copy/paste my code to see what im talking about :) :
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Interface extends JFrame {
    public Interface() {
    Container contentPane = getContentPane();
    contentPane.setLayout(new FlowLayout());
    JButton button1 = new JButton("Test1");
    JButton button2 = new JButton("Test2");
    JButton button3 = new JButton("Test3");
    JButton button4 = new JButton("Test4");
    JButton button5 = new JButton("Quit");
    ButtonHandler handler = new ButtonHandler();
    button5.addActionListener( handler );
    contentPane.add(button1);
    contentPane.add(button2);
    contentPane.add(button3);
    contentPane.add(button4);
    contentPane.add(button5);
    contentPane.setBackground(Color.orange);
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    public static void main(String args[]) {
    Interface window = new Interface();
    window.setLocation(250,350);
    window.setTitle("FlowLayout");
    window.pack();
    window.setTitle("Test");
    window.setVisible(true);
    public class ButtonHandler implements ActionListener {
    public void actionPerformed( ActionEvent e )
    System.exit(0);
    Thanks alot! :)

    By default the content pane of the JFrame uses a Border Layout. So you should:
    1) Create a JPanel
    2) Set the layout of the JPanel to FlowLayout
    3) add the buttons to the panel
    4) add the panel to the content pane
    5) add your text area to the content pane
    Read this section from the Swing tutorial on "Using Layout Managers":
    http://java.sun.com/docs/books/tutorial/uiswing/layout/using.html

  • Content pane acting wacky

    OK, i am trying to use JPanel to put all of my buttons on the bottom of the screen. I got that part to work, but when ever I add a textField to the content pane, the label disappears and the textField is never visible. Here is my code.
              Container container = getContentPane();
              buttons = new JButton[ 3 ];
              buttonPanel = new JPanel();
              buttonPanel.setLayout( new GridLayout( 1, buttons.length ) );
              for ( int count = 0; count < buttons.length; count++) {
                   buttons[ 0 ] = new JButton( "Deal" );
                   buttons[ 1 ] = new JButton( "Shuffle" );
                   buttons[ 2 ] = new JButton( "Exit" );
                   buttons[ count ].addActionListener( this);
                   buttonPanel.add( buttons[ count ] );
              }// end for loop
              container.add( buttonPanel, BorderLayout.SOUTH );
              player1Label = new JLabel( "Player 1: ");
              container.add( player1Label );
              player1Field = new JTextField( 5 ) ;
              player1Field.setEditable( false );
              container.add( player1Field );
              setSize( 425, 150 );
              setVisible( true );

    OK, got the pane working right! thanks
    here's what I did.
              // get content pane and create layout
              Container container = getContentPane();
              // create label grid
              labels = new JLabel[3];
                   labels[ 0 ] = new JLabel( "Player 1: ");
                   labels[ 1 ] = new JLabel( "Player 2: ");
                   labels[ 2 ] = new JLabel( "Shuffle cards to begin" );
              labelPanel = new JPanel();
              labelPanel.setLayout( new GridLayout( 3, labels.length ) );
              for ( int count = 0; count < labels.length; count++) {
                   labelPanel.add( labels[ count ] );
              }// end for loop
              container.add( labelPanel, BorderLayout.WEST );
              // create text field grid
              textFields = new JTextField[ 3 ];
                   textFields[ 0 ] = new JTextField( 20 );
                   textFields[ 1 ] = new JTextField( 20 );
                   textFields[ 2 ] = new JTextField( 20 );
              textFieldPanel = new JPanel();
              textFieldPanel.setLayout( new GridLayout( 3, textFields.length ) );
              for ( int count = 0; count < textFields.length; count++) {
                   textFields[ count ].setEditable( false );
                   textFieldPanel.add( textFields[ count ] );
              }// end for loop
              container.add( textFieldPanel, BorderLayout.EAST );     
              // create button grid          
              buttons = new JButton[ 3 ];
                   buttons[ 0 ] = new JButton( "Deal" );
                   buttons[ 1 ] = new JButton( "Shuffle" );
                   buttons[ 2 ] = new JButton( "Exit" );
              buttonPanel = new JPanel();
              buttonPanel.setLayout( new GridLayout( 1, buttons.length ) );
              for ( int count = 0; count < buttons.length; count++) {
                   buttons[ count ].addActionListener( this );
                   buttons[ 0 ].setEnabled( false );
                   buttonPanel.add( buttons[ count ] );
              }// end for loop
              container.add( buttonPanel, BorderLayout.SOUTH );
              setSize( 425, 150 );
              setVisible( true );
         }

  • Content pane doubt

    What exactly is the content pane and what is its purpose? I read this but am still quite confused. By the mini flow chart thing, do they mean that first i create a JFrame and then i get the contentPane for it and then i can add components like JPanel and JButton to the contentPane?
    Or can i skip the getContentPane part and directly start adding stuff like JPanel and JButtons to the JFrame? if this is true, is it preferable to do this? are there any advantages or disadvantages to doing this instead of adding components to the contentpane?
    Please help me understand this concept. Thank You.

    it's pane that contains the contents of the frame (or the rootpane, more specifically).
    You create the JFrame first.
    Then you add stuff to it's content pane. Since Java 5, you can add directly to the JFrame, and it puts things you add into the content pane for you. But it's the same thing.
    Or you can add things to your own panel, then set the panel as the content pane of the frame.
    You can't really add things to the JFrame directly without messing things up (and actually the API won't let you), cuz the rootpane is used for other things like menubars and the glasspane.

  • Should a Status Bar be in the Root Pane or Content Pane?

    Hello, I wonder if you can help...
    Should a status bar be built into a JFrame (much like a JMenuBar, by extending JFrame and JRootPane along with its layout manager)?
    I have created a status bar using the method above, but it seems to be more complex than it need be; so I am wondering whether to simply add it to a JFrames content pane.
    Advantages of extending JRootPane and building the status bar as part of a frame:
    1. It allows the frames content panes south region to remain unoccupied, and thus will not conflict with a JToolPanes positioning.
    Advantages of adding the status bar to the content pane south region:
    1. Keeps the design nice and simple, so no knowledge of the root pane need be known;
    2. We can use composition (rather that inheritance) to define the frame and its parts.
    All comments are welcome.

    Hi,
    ( I search for iChat questions when I have finished in the iChat Forum)
    So the menu bar reads iChat, File,  Edit,  View, Buddies, Video, Window and Help
    There is no Buddy List open.
    There is no other window for iChat open.
    In the iChat Menu you only have access to Status.
    Is an item ticked in the list ?
    Is this a green (Available item) or  Red ( an Away one) ?
    Can you access the Accounts option ?  (Sitll in the iChat Menu)
    Is anything in here ticked ?
    In the Window menu any Logged in account should appear in the list  (Between the Next Chat and File Transfer items)
    It would be useful to know which version of iChat this is.
    If no account is ticked (iChat Menu > Accounts) or not showing in the Window Menu, plus you cannot determine the Status and you cannot access the Preferences then you need to access your Home Folder/Library/Preferences
    As the Library in the Home Holder is Invisible in Lion you will need the Finder's Go Menu > Go to Folder option  (you can use it in earlier OS versions if you want)
    Type in:-
    ~/Library/Preferences
    Find the file called com.apple.ichat.plist
    Drag it to the Trash and Restart iChat.
    This will lose all the settings in iChat that you have changed from Defaults but there is no way around this.
    9:23 PM      Saturday; August 27, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • N8 - more clip art please?

    Anyone aware of any apps that add more clip art to the existing photo editing software?
    Thanks!
    V
    Nokia 3395
    Nokia 6600
    Nokia N95 8GB
    Nokia N8 (Anna)
    Nokia Lumia 930

    Hi Hunt,
    I guess I was wondering if the PrE9/10 clip art is actually installed on the hard drive or embedded into a DLL library and one can only see it within the program, then export it.
    SORRY.... I JUST FOUND IT ON MY HD..... it's PNG FORMAT....   no problem.
    thanks...
    cheerio,
    Petey

  • Add new Assets to FCP?

    I am aware of several ways I can do this but cannot find the "FCSvr way" in the documentation. How does FCSvr expect you to add new clips to a .fcp?
    Is it ok to browse and drag to the open project or is another method the prefered use? I am trying to establish how to move from ingest to the project when the Edit has already started and new footage has been digitized that needs to go into that FCP project.
    Thanks.

    Thanks R Longwell I know I can but it that the 'right way' to do it? Dragging the project is a no no so I am just checking dragging clips is ok.
    Both methods will update after a save and refresh in fcsvr but if dragging clips from fcsvr to fcp is ok then that is fine.

  • I would like to freely add clip art in Full Edit Mode in PSE 5.0

    Hello,
    I am new to Photoshop Elements. I have PSE 5.0 on a windows XP platform with service pack 3 installed. I want to be able to create flyers with PSE and would like to freely be able to add various types of clip art into my canvas. I know you can do this when you're creating slides, but I want to be able to do this in PSE full edit mode, not by creating a slide show via the organizer.
    There are tons of clip art online and they have various file types too. I am also wondering if I can use any of the file types as well. The ones that PSE has for the slide shows are .png. But online I have seen .wmf, .mpf, .jpg as well. How can I incorporate all this clip art for use in creating flyers and/or logos by just starting with a blank 8.5 x 11 canvas in full edit mode?
    Any expert help here would be greatly appreciated. I was able to do this using Word, but Word of course lacks the graphic quality and optionality of PSE greatly.
    Sincerely,
    Lee

    Thanks for your reply here Bob. I have read what you mentioned above and am not quite sure how to do it that way. What I have been doing so far is to find a clip art item somewhere, copy it to the clipboard, then bring it into PSE with the File-New-from clipboard command.
    This will bring it into it's own space and Layer as a separate file on it's own. Then I select it, copy the selection to the clipboard once again, move over to my blank canvas which only has one background layer now, and paste it onto this canvas.
    This seems to be working, but I loose the Vector graphic aspect of the clip art image because it converts it to a raster type of image now. So I have to be very careful in resizing it to not loose resolution and such.
    I noticed when I go to create a slide show in PSE, I have access to the graphics palette where you can double click a piece of clip art and it goes right onto your slide and stays as a vector image. I can get to these images while in full-edit mode, but I have to use the file-open command and navigate to the right folder and then open one up into full-edit mode as it's own layer. But then once again, I loose the vector aspect and I have to go through the process of selecting it, copying it to the clipboard and then pasting onto my blank canvas.
    I know that MS Word is no match for this product, but at least there I could easily add clip art to any flyer I am making without loosing the vector aspect. But I know that the quality is so much better here in PSE and that I just need to learn how to utilize more of its functionality and power. Hence why I am writing this post I suppose.
    Isn't there an easier way to get clip art into your blank canvas in full edit mode without having to go through all this and/or without having to create a slide show to get access to this clip art pallete? And having to loose the vector aspect of the clip art is not so wonderful either. Did I buy the wrong Adobe application - Ha!
    Should I be using Illustrator since I want to create flyers using clip art, type and effects?
    My apologies for this long post, but I would really like to be able to utilize, if at all possible, PSE 5.0's full power to create great quality flyers using all these things.
    Thanks again,
    Lee

  • Adding new content pane on another

    Hi,
    I am trying to add a new contnet pane JPanel on the existing one and it shows the new one with some buttons but the previous JPanel dissappears.
    frame.setContentPane(checkBox1);
    frame.setContentPane(buttons2);
    So it shows the buttons2 pane but not the checkBox1.
    Any idea what am i missing?
    Thank you

    The setContentPane just replaces the pane, not add them.
    Add the two panes you want to see to a third pane and make the new pane the content pane
      JPanel contentPanel = new JPanel();
      contentPanel.add(checkBox1);
      contentPanel.add(buttons2);
      frame.setContentPane(contentPanel);

  • Not able to add new fields in Content cube

    Hi all
    I think I had this post earlier too, but I haven't been able to add new fields in a Business content cube. I added them in the cube but I am not sure how to update the datasource, infosource, update rule etc. in proper manner.
    Please write me the details or send me in my email at
    [email protected] , I would be so happy for your help.
    Thank you in Advance.
    Sajita

    Roberto;
    I am doing the third options. feeding data from source system and I tried to add them into the infosource it didn't work. In this case, do you think I need to update the data sourece too, if so how do I do that it's function module. data source I am using is '0ME_ISM_AM_REV_1'. So please give me some more details. Thank you.
    Sajita

  • How can I add new content in iDVD to a DVD-RW disc which has ample remaining free space? After preparing the new video for burning and clicking on Burn to iDVD, I get a window saying the disc's already recorded and that I can either Erase or Eject.

    How can I add new content in iDVD to a DVD-RW disc with a video previously successfully recorded on it? (The disc has ample remaining free space.)
    After preparing the new video for burning and clicking in the File menu on Burn to iDVD, I get a window saying the disc's already recorded and that I can either Erase or Eject. My assumption has been that iDVD would automatically find the free space and continue with the new recording from there. I'd be grateful if anyone can shine light on this.

    There are, but not with a DVD written as a movie disk. It must be closed when completed, or it doesn't work.
    Apple's built in Burn utility also automatically closes any data CD, DVD or Blu-ray disk you burn. Doesn't matter how much space is unused, you can't use it. You'd have to use a more advanced disk creation app, such as Toast Titanium. I then have the option of choosing to write the data as a session:
    I can keep doing this until the disk is full. If I've written five sessions to the disk, when I put it in the drive, five CD/DVD icons will appear on the desktop since the OS will treat each session as if they are separate physical disks. At any point you choose Write Disk when writing a group of data, that means you're closing the disk, and again can't add anything after that. So if I had written two sessions, and the third was Write Disk, it's over. I can't put anything else on that disk.

  • Add new Content to a html/plain file

    Hi Everybody,
    how can is it possible to add new content (a new line) to a existing html/plain file? I have two methods, with the first one i can create a file but with the second one it is not possible to add new content to the just created file. What is my mistake?
    Create a file (works!)
    IResourceContext ctx1 = buildResourceContext();     
    RID rid1 = RID.getRID("/SP");     
    final IResourceFactory aResourceFactory = ResourceFactory.getInstance();
    aCollection =(ICollection) aResourceFactory.getResource(rid1, ctx1);
    String out = new String("<h3> Welcome </h3>");     
    filedataStream = new ByteArrayInputStream( out.getBytes() );
    fileContent =
         new Content(
           filedataStream,
           "text/html",
           filedataStream.available());
    if (aCollection != null) {          
         fileResource = aCollection.createResource(
                       "NewFile.html",
                       null,
                       fileContent );
    Add new Conent (doesn't work)
    private void addNewContentToFile(){
    IResourceFactory factory = ResourceFactory.getInstance();               
    IResourceContext ctx = buildResourceContext();                         
    RID rid = RID.getRID("/SP/NewFile.html" );
    IResource resource = factory.getResource(rid,ctx);
    String out = new String("<h3> my New Line </h3>");
    ByteArrayInputStream data = new ByteArrayInputStream(out.getBytes());
    IContent newContent = new Content(data, "html/plain", data.available());
    resource.updateContent( newContent );
    regards,
    Seed
    Edited by: seed_mopo on Oct 28, 2008 10:49 AM

    Sorry, there was an exception (NoCheckOut...) --> Versioning = false.

  • __ Is there a way to add new art boards to an existing document?

    Is there a way to add new art boards to an existing document (same dimensions and same space betwen artboards)?
    What I do now is I have to create a new file (with new number of artboards) and cut & paste - is there another way to do this?
    Thanks.

    What Illy version?
    File > Document Setup > "Edit Artboards" button (top, right)
    Before entering Edit Artboard mode though, draw boxes at the right size and at the right locations as your desired new artboards so you can snap to them. While in Edit Artboard, anything other drawing boxes will cause you to exit it.
    Tip: Alt+Left Click to convert a slected shape to an Artboard, while in Edit Artboard mode.
    EVEN EASIER:
    Draw out your new Artboards in normal mode, select them > Object > Artboards > Convert to Artboards.
    *EDIT   Larry's a ninja.

Maybe you are looking for

  • Arabic not supported in windows 2000

    I am running my project in windows 2000 and its working properly (in english), but in case when i want to change the button captions to arabic text its not accepting and displaying some ascii charachters in the property window its self , the rest cas

  • DropDown component warning message - please help?

    Hi, I am using a DropDown component on my page. The issue is that the contents of the component are set based on another selection on the page. So when the user makes a selection that changes the contents of the DropDown widget ( by calling defaultOp

  • [JMS-JCA] Design/Implementation problem

    Hello, I would like some advices on a little issue I have. I explain. My company needed a messaging tool for some very specific use. So some people created a C library for Linux and Win32. With this library you can create some message queues, send an

  • How do I activate Photoshop CS2

    I had a problem with my Mac Pro. As a result, I moved all four of my hard drives to another Mac Pro. Now my Adobe Photoshop needs to be activated again. When I try to do it online I get a message saying the server is not available. When I phoned in,

  • Documentation in SAP Solution Manager.

    Hi Experts, we are looking for documentation (configuration Doc.) for ISU billing in sap solution manager. could any one please tell me the required steps to get the same. Thanks & regards Arpan Saini.