Using a different icon

Hi everyone,
I have just created 3 captivate movies & a menu for a
client & I have just been aske if it would be possible to use
there own icon rather than the standard captivate image that is
used when the exe file is created. I did not notice any option to
select a different image.
Can anybody point me in the right direction?
Thanks in advance
Mark

Hi Mark!
While you can not change the icon for the official .exe file,
you can create a shortcut to the .exe and change the shortcut's
icon to whatever you'd like it to be.
To do this:
Right click on your published .exe file and click create
shortcut
You'll now have a shortcut located in the same directory as
your .exe (alternatively, you can "hide" your .exe in a folder on
the cd)
Right click on your newly created shortcut and left click on
Properties.
Left click on the
Change Icon... button (just below comment, in between Find
Target... and Advanced...)
Pick your icon and click okay!
An easy way to create an .ico file is to open up any photo
editing software (including Paint), create your picture, and save
it as a .bmp at 32x32 px in the directory you'll have your .exe
While this isn't a "true" fix, it is a decent work around
until a newer version of Captivate comes out.

Similar Messages

  • How to Use different icons for JTree in the same level

    Hi guys, i come cross a problem with JTree. The module need a JTree which need to represent items in the same level using different icons. For example:
    [Icon for Root]Root
    |
    |_____________[Icon for Table] TABLES
    |
    |_____________[Icon for Index] INDEXS
    |
    |_____________[Icon for Views] VIEWS
    As i know, the default behavior for JTree is using the same icon for all leaves and
    the same icon for all node that has children. How can i achieve that?
    Thansk a lot!

    subclass DefaultTreeCellRenderer. if you overwrite the method below, then you can set the icon to whatever you want....!
        public Component getTreeCellRendererComponent(JTree tree, Object value,
                                    boolean sel,
                                    boolean expanded,
                                    boolean leaf, int row,
                                    boolean hasFocus) {
         String         stringValue = tree.convertValueToText(value, sel,
                               expanded, leaf, row, hasFocus);
            this.tree = tree;
         this.hasFocus = hasFocus;
         setText(stringValue);
         if(sel)
             setForeground(getTextSelectionColor());
         else
             setForeground(getTextNonSelectionColor());
         // There needs to be a way to specify disabled icons.
         if (!tree.isEnabled()) {
             setEnabled(false);
             if (leaf) {
              setDisabledIcon(getLeafIcon());
             } else if (expanded) {
              setDisabledIcon(getOpenIcon());
             } else {
              setDisabledIcon(getClosedIcon());
         else {
             setEnabled(true);
             if (leaf) {
              setIcon(getLeafIcon());
             } else if (expanded) {
              setIcon(getOpenIcon());
             } else {
              setIcon(getClosedIcon());
            setComponentOrientation(tree.getComponentOrientation());
         selected = sel;
         return this;
        }

  • TS1717 Itune Match not happy as I have used 2 different email address ID's how do I combine them into one?

    Itunes unhappy, Match issues!  I think it is because I have used two accounts on different emails.  Can I pull the two together to make just one account?

    Open Accounts preferences in System Preferences. Click on the lock icon and authenticate. Under the user list click on the Add [-] button button to create a new user account for yourself or your father (whoever is not the existing account owner.) Configure the account with a separate username and password.
    Now each of you should have a separate account on the computer. You can each sync your iDevices into completely separate accounts using completely different Apple IDs.

  • How to display different icon within WDA alv table base on row data ?

    Hi,
    is that possible to display different icon for every row within ALV table depending on the row data ?
    for instance if the status 'S' display ~Icon/SuccessMessage and 'E' display ~Icon/ErrorMessage ?
    because base on this code below i only can set 1 icon for the whole row data.
    LOOP AT lt_columns ASSIGNING <fs_column>.
        CASE <fs_column>-id.
          WHEN 'ICO'.
            CREATE OBJECT lr_caption.
               lr_caption->set_image_source( value = '~Icon/SuccessMessage').
               <fs_column>-r_column->set_cell_editor( lr_caption ).
        ENDCASE.
      ENDLOOP.
    Thank you in advance.
    Fernand

    Hello,
    Yes it is possible to display different images based on data.
    For that what you can do is create one attribute 'STATUS' of type string in context node which you are mapping to ALV.
    And fill that attribute with the path to image based on your requirement like for status 'S' set the attribute to ~Icon/SuccessMessage and if status is 'E', set it to ~Icon/ErrorMessage at runtime.
    Now in the settings for ALV use the following code:
    * Display icon in column seatsocc
      DATA: lr_column TYPE REF TO cl_salv_wd_column,
            lr_image TYPE REF TO cl_salv_wd_uie_image,
            lv_icon TYPE string.
      lr_column = lv_model->if_salv_wd_column_settings~get_column( 'SEATSOCC' ).
      CREATE OBJECT lr_image.
      lr_image->SET_SOURCE_FIELDNAME( 'STATUS' ).
      lr_column->set_cell_editor( lr_image ).
    in the above code, column 'SEATSOCC' will be displayed as an icon.
    Sample code to fill the attribute 'STATUS'
    LOOP AT lt_flights INTO ls_flight.
        lv_seatsfree = ls_flight-seatsmax - ls_flight-seatsocc.
        IF lv_seatsfree = 0.
          ls_flight-status = 'ICON_RED_LIGHT'.
        ELSEIF lv_seatsfree <= 50.
          ls_flight-status = 'ICON_YELLOW_LIGHT'.
        ELSE.
          ls_flight-status = 'ICON_GREEN_LIGHT'.
        ENDIF.
        MODIFY lt_flights FROM ls_flight.
      ENDLOOP.
    Hope this helps!
    Regards,
    Srilatha
    Edited by: Srilatha M on Jun 25, 2010 12:02 PM

  • How do I use a different browser then safari?  I have several sites safari won't connect to.

    How do I use a different browser then safari?  I have several sites safari won't connect to.

    I can connect to Bank of America's site just fine. Can you connect to the site or is it that you can't perform certain functions on the website? Do you know that there is a Bank of America App available?
    Bank of America for iPad for iPad on the iTunes App Store
    Bank of America Mobile Banking for iPad®
    If you download another web browser for the iPad, you use it just like you use Safari. Tap on the app icon to launch the browser and then use it like any other web browser.

  • Defining different icons for TreeNode by extending DefaultTreeCellRenderer

    Hello all,
    I'm using a JTree to display project, folder and files. I'd like to have different icons for open project, close project, open folder, close folders, and files
    but i got for the root which is a project object a folder icon and for folder when it is not expanded i got project icon and the when i expand it i got a folder icon, can someone help me please
    Here is my code :
    public class MyTreeCellRenderer extends DefaultTreeCellRenderer {
         private Icon openIcon = null;
         private Icon closeIcon = null;
         private Icon leafIcon = null;
         private Icon projectOpenIcon = new ImageIcon("icons/book_open.png");
         private Icon projectCloseIcon = new ImageIcon("icons/book_blue.png");
         private Icon folderOpenIcon = new ImageIcon("icons/folder.png");
         private Icon folderCloseIcon = new ImageIcon("icons/folder_closed.png");
         private Icon fileIcon = new ImageIcon("icons/document.png");
         @Override
         public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected,
                   boolean expanded, boolean leaf, int row, boolean hasFocus) {
              super.getTreeCellRendererComponent(tree, value, selected, expanded, leaf, row,
                        hasFocus);
              LogescoTreeNode node =
                   (LogescoTreeNode)value;
              Object obj = node.getUserObject();
              System.out.println(obj.getClass().toString());
              if(openIcon == null) {
                   openIcon = this.getOpenIcon();
                   if(openIcon != null) {
                        if(obj instanceof LProject) {
                             openIcon = projectOpenIcon;
                             this.setOpenIcon(openIcon);
                             openIcon = null;
                        } else if(obj instanceof LFolder) {
                             openIcon = folderOpenIcon;
                             this.setOpenIcon(openIcon);     
                             openIcon = null;
              if(closeIcon == null) {
                   closeIcon = this.getClosedIcon();
                   if(closeIcon != null) {
                        if(obj instanceof LProject) {
                             closeIcon = projectCloseIcon;
                             this.setClosedIcon(closeIcon);
                             closeIcon = null;
                        } else if(obj instanceof LFolder) {
                             closeIcon = folderCloseIcon;
                             this.setClosedIcon(closeIcon);
                             closeIcon = null;
              this.setLeafIcon(fileIcon);
              return this;
    }Thank you.

    Hi all,
    I changed my code a bit knowing that the renderer is global to the tree so my (openIcon == null) is called only once for the first node.
    Here is my new code :
    public class MyTreeCellRenderer extends DefaultTreeCellRenderer {
         private Icon projectOpenIcon = new ImageIcon("icons/book_open.png");
         private Icon projectCloseIcon = new ImageIcon("icons/book_blue.png");
         private Icon folderOpenIcon = new ImageIcon("icons/folder.png");
         private Icon folderCloseIcon = new ImageIcon("icons/folder_closed.png");
         private Icon fileIcon = new ImageIcon("icons/document.png");
         @Override
         public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected,
                   boolean expanded, boolean leaf, int row, boolean hasFocus) {
              super.getTreeCellRendererComponent(tree, value, selected,
                        expanded, leaf, row, hasFocus);
              LogescoTreeNode node =
                   (LogescoTreeNode)value;
              Object obj = node.getUserObject();
              System.out.println(obj.getClass().toString());
              if(obj instanceof LProject) {
                   this.setIcon(expanded ? projectOpenIcon : projectCloseIcon);
              } else if(obj instanceof LFolder) {
                   this.setIcon(expanded ? folderOpenIcon : folderCloseIcon);
              } else {
                   this.setIcon(fileIcon);
              return this;
         }

  • Displaying nodes in a JTree with different icons

    Please can you help me? I have set up a JTree that handles different icons for each item in the tree. The items are all independent and there is no way of grouping them together, so to get around the problem of displaying them in the tree I have stored them in array of images, such that each row in the tree maps to the correct element of the tree (or so I thought).
    However, my overridden version of getTreeCellRendererComponent() displays interesting behaviour. If one of the branches in tree is collapsed, then the number of rows displayed in the tree differs from when it is expanded. This renders my use of an array useless because it doesn't map to what I thought was the structure of the tree and my icons do not align to the correct textual information.
    How can I map my images to the tree so that it displays correctly when the branches are expanded or collapsed?

    You need to be able to figure out what icon to display based on the object that the tree cell is rendering. In other words, the object should have an attribute that you can query that tells your cell renderer what icon to use. If all else fails, change your object to contain a reference to the icon that should be displayed next to it.

  • WPF: How to make Tab Header to show three different icons?

    Our WPF application needs Tab header to show three different icons and Foreground.
    If tab is not selected, show one icon and black foreground. If tab is selected, show another icon and white foreground. If tab is selected and also require show Chromestyle, show third icon and red foreground.
    we have tried the following code. However, MultiDataTrigger section does not work.
    <TabItem x:Name="tabItemSetup" Header="Setup">
    <TabItem.HeaderTemplate>
    <DataTemplate>
    <StackPanel Orientation="Vertical">
    <Image x:Name="imgSetup" Height="50" Width="65" Source="Resources/Images/UNSELECTED_Setup Icon.png" DockPanel.Dock="Top" />
    <TextBlock x:Name="txtSetup" Text="{Binding}" Foreground="Black" Style="{StaticResource TabTextStyle}" DockPanel.Dock="Bottom" FontFamily="Eras ITC" FontSize="13.333"/>
    </StackPanel>
    <DataTemplate.Triggers>
    <DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType={x:Type TabItem}}}" Value="True">
    <Setter TargetName="txtSetup" Property="Foreground" Value="White"/>
    <Setter TargetName="imgSetup" Property="Source" Value="Resources/Images/SELECTED_Setup Icon.png"/>
    </DataTrigger>
    <MultiDataTrigger>
    <MultiDataTrigger.Conditions>
    <Condition Binding="{Binding IsChromeStyle}" Value="True"/>
    <Condition Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType={x:Type TabItem}}}" Value="True"/>
    </MultiDataTrigger.Conditions>
    <MultiDataTrigger.Setters>
    <Setter TargetName="txtSetup" Property="Foreground" Value="Red"/>
    <Setter TargetName="imgSetup" Property="Source" Value="Resources/Images/Chrome SELECTED_Setup Icon.png"/>
    </MultiDataTrigger.Setters>
    </MultiDataTrigger>
    </DataTemplate.Triggers>
    </DataTemplate>
    </TabItem.HeaderTemplate>
    </TabItem>
    Does anyone know how to make it work? Thx!
    JaneC

    Where is the IsChromeStyle property defined? It is the Header, i.e. the string "Setup" that is the DataContext of the HeaderTemplate and the a string has no property called IsChromeStyle so you must specify a source for the binding.
    If for example the DataContext object of the TabControl, or the parent of the TabControl (for example the window or whatever) has a property called IsChromeStyle you could bind to this one using a RelativeSource:
    <MultiDataTrigger.Conditions>
    <Condition Binding="{Binding DataContext.IsChromeStyle, RelativeSource={RelativeSource AncestorType={x:Type TabControl}}}" Value="True"/>
    <Condition Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType={x:Type TabItem}}}" Value="True"/>
    </MultiDataTrigger.Conditions>
    Then it should work. It is the binding that fails.
    Please remember to close your threads by marking helpful posts as answer.

  • Different icons for each TreeNode...?

    Is it possible to make each (or at least some) of the TreeNode's in a JTree display different icons?
    H

    Yes, you can use a TreeCellRenderer to control how nodes are displayed. Look around there are several good examples available.
    Cheers
    DB

  • Open a browser window with a different icon

    I normally have many browser windows and tabs open at the same time. My job requires quick context changes.
    I would like to open a window that has a different icon in the tool bar so I can get to that one quickly.
    Putting an icon with a preset urls works great but I would like this one session to have a unique icon that stand's by itself in the toolbar.
    I'm using Windows 7 but may need to do this with *nix systems in the future.

    HI nynjnc,
    Thank you for your question. I understand that you would like an icon in the toolbar that opens a session/window pretty quickly.
    There is an icon in the customize menu in the new Australis menu that is titled "New Window" that would open a blank window.
    However if you are looking to open a specific page try this add on: [https://addons.mozilla.org/en-US/firefox/addon/custom-buttons/?src=search Custom Buttons]
    Post back to let other users know if this worked for you!

  • Is there a way make different icons static at different workspaces in lion?

    Dear community,
    I was wondering if there is a way tocreate different icons in different spaces so that I can have multiple desktopsfor different purposes.
    For example, I want to make a desktop(or space) for my school and a different desktop for pictures but I don't wantto have all those icons on all the different desktops. I just want to have theicons that I have for my school on the desktop that I use for school and theicons of my pictures on the desktop that I use for editing my pictures.
    Is there a way to do this?
    Thank you in advance
    Greets, Alex van der Linden

    Sorry, just found out that this is not posible.
    Correct Answer by Daniel Ebeck  on Sep 21, 2011 6:26 AM
    No, you can't have a different desktop on each space. The desktop is a display of the folder ~/Desktop, so each space is starting from the same template. You can allocate different application and Finder windows to each space. You can only have a single app in a space if it is using Full Screen mode.

  • Can Tree's folder icon node changed to different icon?

    Hi,
    Currently, the tree and tree table node's icon is a "folder" icon. Can this be customized to different icons? We would like to have different icons for the nodes for different level in the tree/tree table. For example, level 1's node is icon A; level 2's node is icon B, etc...
    Any suggestions?
    Thanks.
    -Mina

    Hi,
    I think the right way of doingthis indeed is skinning. I would try to
    - set a styleClass value to the styleClass property using EL against a managed bean method.
    - The managed bean method now is called for each node. Use EL in the managed bea method to access the #{node} EL to determine the row you are on
    - set the style class to e.g. level1, level2, level3
    - Then in the skinning you use
    level1 af|tree...{}
    level2 af|tree...{}
    To define the different icons for the tree levels. Note that using DAF all icons are using folders. So there is no sense in skinning leaf icons
    Frank

  • Can I force Leopard to use a different python installation

    I should have posted here initially at the Unix board...
    Dumb question: Will Leopard use a different python install in bash than the python used by an ordinary GUI application? I want control over which python install the GUI application uses.
    Does anyone know how to force Leopard to use a macports installation of python instead of the default Apple installation? I know how to get the shell to use it, by putting an "export" line into the ~/.profile file, or adding a .bash_profile file to ~/
    and the bash shell will use my macports install of python. However when I use an application called blender
    www.blender.org
    which relies on python for some operations, it refuses to recognize some python modules installed in the macports version of python, which can be running simultaneously in bash. The python shell in Terminal says the module has been imported because there is no error message, but blender and the Console both say the module was not recognized by blender. Is it possible that the application blender has been compiled in such a way that it will only look for leopard's version of python? Is there a way to get leopard's python to take into account the mess of folders in macports python so that it can use the files therein? I've already tried putting the +/opt/local/bin, sbin, lib,+ and include folders into the path returned by env.
    Refers to the macports python 2.5.4 and the current leopard python 2.5.1

    I'm not using MacPorts, and don't know how MacPorts installs Python. Is it installed in the form of framework?
    /opt/local/Library/Frameforks/Python.framework/Python.framework/
    If this is the case, then I guess you can tell blender to use this framework (instead of the Leopard's default framework) by setting the evironment variable DYLDFRAMEWORKPATH to "/opt/local/Library/Frameworks". Of course there is a possibility that the framework installed by MacPorts is not compatible with the blender.
    But there is another problem; if you start blender by double-clicking on its icon, the environment variables set in your shell have no effect. You can set environment for GUI apps in ~/.MaOSX/environment.plist, but it will affect all the GUI apps so it is rather dangerous (if a framework in /opt/local/Library/Frameworks/ is broken, then many apps won't run correctly). So the first thing you may try is to start blender from the command line:
    $ export DYLDFRAMEWORKPATH=/opt/local/Library/Frameworks
    $ /Applications/blender.app/Contents/MacOS/blender
    Of course the "$" above is the prompt of your shell, and you need not type it. If you have installed blender.app in a different folder then modify the path accordingly.

  • ITunes on iPad 2 - I select a song but wrong song playes and different icon displays

    I'm using an iPad 2 with IOS 5.  In iTunes, when I select a song it plays the next song in succession and displays a totally different icon than the one playing.  I have shuffle turned off and have also re-synced with my iMac.

    Same here... Same issue, except ive realised that it plays a song 11 songs up... I posted the same issue this morning

  • Different Icons in Inbox

    Hi,
    I use Nokia Messaging on my X6. Been using it for over one year now, but suddenly i'm getting a different icon next to the messages in my inbox.
    Normally the icon is a green envelope, but recently i've started to receieve emails with an icon showing a green envelope with a blue mobile phone behind it.
    Does anyone know what this icon means and why after all this time i'm getting it?
    Cheers.

    they look something like this attachment
    Sorry for quality of 'Screen capture' ;-)
    Attachments:
    Screen shot 2011-06-03 at 11.04.40.png ‏57 KB

Maybe you are looking for

  • IPOD NOT RECOGNIZED BY COMPUTER! :'( HELP PLZZ!

    when i plug in my ipod the computer detects it as an "unknown device" and apparently the problem is that there is no driver installed for my ipod and its also not detected by my Itunes and updater! T_T helpp plz! its killing me and i've downloaded so

  • PDF form with buttons opens up URL with security warning window

    I have a short-lived process that renders PDF form with data merged. The data is in XML format.  The form buttons are assigned URL values when the form is opened. When I click on them,I get a Security warning prompting me to allow/block that site. Wh

  • After the latest update my phone shows I have a new TXT Message and there are NO TXT messages. How do I fix this?

    After the latest update my phone shows I have a new TXT Message and there are NO TXT messages. How do I fix this? I have tried clearing the cache, I have tried the factory reset, I have no 3rd party messaging apps and have done noting different with

  • Data missing under J2ee monitor templates in RZ20

    Hi, We are trying to setup Central monitoring from solman,registered ccm4x and ccmsr agents poining to SOLMAN, The J2EE monitor template does not show data related to "APPLICATINS" "LOG FILES",it is blank  locally ,Is anything else required for getti

  • J2SE Plugin on OEL

    Hi all I've installed R12.1.1 on OEL 5u4, and it's all working correctly. However, I can't work out what's required to launch the professional forms on Linux. I need to install the J2SE Plugin version 1.6.0_07. Can anyone help out with what's needed?