ICON SIZE ON BUTTON

hi all,
i want to increase the icon size and using it on button. the problem is icon size cannot be increase i used different type of icons with different sizes i.e.
16x16
32x32
65x65
but it shows same size in all icons. can any know about it.
Shakeel

yes, I see the property, I put 'Yes' and the name of the icon, but know I'm not sure where I have to put the icon, I mean, how the application knows where to find them, in which directory they are.
I have to modify any file like formsweb.cfg?
Thank you very much.

Similar Messages

  • Is there a way to increase the icon size (and the text below) without using zoom?  I am trying to help out someone who has moderate visual impairment that does not want to use zoom just to see the icons and their labels.

    Is there a way to increase the icon size (and the text below) without using zoom in iOS 7?  I am trying to help out someone who has moderate visual impairment that does not want to use zoom just to see the icons and their labels.

    Hello Apple.
    It seems you have gone to great lengths to improve accessibility in many areas of the iPad. Why was this obvious problem with icon text size missed?  (It's not with the Mac.). And for so long too.
    Do you employ people with actual accessibility problems to help you do UI design?
    I think too, that some buttons are too close for people who might have motor control problems.
    I love my iPad but I fear as I age, the iPad might not keep up with me.

  • Xfce application menu plugin icon size

    I'm trying to figure out how to make the application menu icon size larger than the window button icon sizes with the Greybird theme, just like it is for Greybird Classic in the picture.
    I have tried the "panel-applications-menu" string in both my .gtkrc-2.0 file and in xsettings but it is either not being respected or I'm not using it correctly. What specifically controls the icon size for the applications menu icon size?
    Last edited by Klexur (2013-03-06 03:55:30)

    See if this helps.
    http://forum.xfce.org/viewtopic.php?id=5726
    http://www.linuxquestions.org/questions … ce-893597/
    Last edited by testdude281 (2012-06-15 19:23:02)

  • Adjusting and "Synchronizing" Icon Size

    The standard icon size for files on the desktop and in windows is 48x48. However, some of the folders that I copied over from my old computer has a smaller size of icons (I think 36x36). Is it possible to set the size of every icon in every window on my computer at the same time (like synchronizing the icon size across the whole computer)? Or do I have to adjust the icon sizes in each window individually?

    If you select a Finder window and then show the view options (cmd-j) there's a radio button at the top of that dialog that lets you apply changes to all windows.

  • I touch an app icon - it enlarges to full screen size as if loading but 1 second later shrinks back to normal icon size. This happens with every app - nothing loads - please help if you can, I'd be very grateful !  Paul

    I touch an app icon - it enlarges to full screen size as if loading but 1 second later it shrinks back to icon size. All the app icons do this - I can't load anything !  If anyone can help I'd be grateful - thanks - Paul

    Hi Paul, first you must check you multitaskbar from the phone. Press the Homebutton twice and you see a litte new bar. There you see all open apps. Hold your finger on one app until they shake and a red dot appear in the left corner of every app. Close all apps and restart your phone. If that won´t help make a reset from the iphone.
    Press sleep/wake and home button for 10 sek at the same time until a white apple comes up.
    If the issue still persist try to do a restore from your iphone
    http://support.apple.com/kb/HT4137?viewlocale=en_US

  • Set Icon for toggle button

    I created Icon with Borderpane, image and text which I want to set as button icon.
    @Override
        public void start(Stage primaryStage)
            final VBox vbox = new VBox();
            // create 3 toggle buttons and a toogle group for them
            ToggleButton tb1 = new ToggleButton();
            tb1.setGraphic(newConnectionIcon());
            ToggleButton tb2 = new ToggleButton();
            ToggleButton tb3 = new ToggleButton();
            final ToggleGroup group = new ToggleGroup();
            tb1.setToggleGroup(group);
            tb2.setToggleGroup(group);
            tb3.setToggleGroup(group);
            // select the first button to start with
            group.selectToggle(tb1);
            final Rectangle rect1 = new Rectangle(300, 300);
            rect1.setFill(Color.DARKOLIVEGREEN);
            final Rectangle rect2 = new Rectangle(300, 300);
            rect2.setFill(Color.LAVENDER);
            final Rectangle rect3 = new Rectangle(300, 300);
            rect3.setFill(Color.LIGHTSLATEGREY);
            tb1.setUserData(rect1);
            tb2.setUserData(rect2);
            tb3.setUserData(rect3);
            group.selectedToggleProperty().addListener(new ChangeListener<Toggle>()
                @Override
                public void changed(ObservableValue<? extends Toggle> ov, Toggle toggle, Toggle new_toggle)
                    if (new_toggle == null)
                    else
                        vbox.getChildren().set(1, (Node) group.getSelectedToggle().getUserData());
            HBox hBox = new HBox();
            hBox.getChildren().addAll(tb1, tb2, tb3);
            hBox.setPadding(new Insets(10, 10, 10, 10));
            vbox.getChildren().addAll(hBox, (Node) group.getSelectedToggle().getUserData());
            StackPane root = new StackPane();
            root.getChildren().add(vbox);
            Scene scene = new Scene(root, 800, 850);
            primaryStage.setScene(scene);
            primaryStage.show();
        private static BorderPane newConnectionIcon() {
            // Add background effect
            DropShadow ds = new DropShadow();
            ds.setOffsetY(2.0);
            ds.setOffsetX(2.0);
            ds.setColor(Color.GRAY);
            // New BorderPane which will hold the components
            bpi = new BorderPane();
            bpi.setEffect(ds);  // Add the effect
            bpi.setCache(true);
            // Set the size of the BorderPane
            bpi.setPrefSize(30, 30);
            bpi.setMaxSize(30, 30);
            // Add style       
            bpi.setStyle("-fx-background-color: linear-gradient(#f2f2f2, #d4d4d4);"
                    + "  -fx-background-insets: 0 0 -1 0, 0, 1, 2;"
                    + "  -fx-background-radius: 3px, 3px, 2px, 1px;");
            // Add Label to the Icon
            Text inftx = new Text("New Connection");
            inftx.setFont(Font.font ("Verdana", 5));   // Set font and font size
            inftx.setFill(Color.WHITE); // Set font color
            ncpic.setFitHeight(25);    // Set size of the Icon picture
            ncpic.setFitWidth(25);
            // Internal StackPane which will hold the picture and the Icon Label
            StackPane stack = new StackPane();
            stack.getChildren().addAll(ncpic, inftx);   // Add the picture and the Label
            // Add the StackPane to the main BorderPane       
            bpi.setCenter(stack);
            // Change the border of the Icon when the mouse is over the Icon
            bpi = mouseOver(bpi);
            // Navigate to new Panel when the user clicks on the Icon
            bpi.setOnMouseClicked(new EventHandler<MouseEvent>() {
                @Override
                public void handle(MouseEvent t) {
            return bpi;
    How I can remove the default togglebutton and use the my custom icon as a button?

    Yes, they are icons and they are called "handles". The easiest way to change then is to use UIManager.
    If you haven't done so before, look through the hash table UIManager.getLookAndFeelDefaults().
    import java.awt.*;
    import java.net.*;
    import javax.swing.*;
    public class TreeIcons {
         public static void main(String[] args) throws MalformedURLException {
              String prefix = "http://forum.java.sun.com/images/";
              UIManager.put("Tree.openIcon", new ImageIcon(new URL(prefix + "dont_save.gif")));
              UIManager.put("Tree.closedIcon", new ImageIcon(new URL(prefix + "save.gif")));
              UIManager.put("Tree.leafIcon", new ImageIcon(new URL(prefix + "forum_new.gif")));
              UIManager.put("Tree.expandedIcon", new ImageIcon(new URL(prefix + "email_faded.gif")));
              UIManager.put("Tree.collapsedIcon", new ImageIcon(new URL(prefix + "email.gif")));
              JFrame f = new JFrame("TreeIcons");
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              f.getContentPane().add(new JTree());
              f.setSize(new Dimension(300,400));
              f.setLocationRelativeTo(null);
              f.setVisible(true);
    }

  • For icons size??

    When I pu icon on my buttons I'm limited with size of icons. Which size of icons is possible in forms and how can I enlarge it. I nid litle bigger buttons with icons oh it HOW???
    Thank You very much....

    You can use some extensions to achieve this.
    * Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/
    You can use the NoSquint extension to set font sizes (text/page zoom) and text colors on web pages.
    * NoSquint - https://addons.mozilla.org/firefox/addon/nosquint/
    See also:
    * http://www.accessfirefox.org/ - Access Firefox Because the Internet is for everyone.

  • Setting icon size and sorting in 10.9

    I asked this question in the os X forum. Maybe I can get an answer here.
    The following worked in 10.8 but not in 10.9:
    tell its icon view options
    set icon size to 128
    set shows icon preview to true
    set arrangement to arranged by name
    end tell
    icon size is not set and the icons are not rarranged.
    Apparently icon size is now read only. There must be a way to resize the icons.
    Any ideas?

    For example:
    tell application "Finder"
        activate
        try
            set theName to name of Finder window 1
        on error
            return beep 1 -- no open Finder window
        end try
    end tell
    tell application "System Events" to tell process "Finder"
        tell menu 1 of menu bar item "View" of menu bar 1
            if exists menu item "Show View Options" then keystroke "j" using {command down}
        end tell
        repeat until exists (window 1 whose (title is theName) and (subrole is "AXSystemFloatingWindow"))
        end repeat
        tell window 1
            set value of slider 1 of group 1 to 56.0 -- 128 x 128
            tell checkbox "Show icon preview" of group 1
                if value is 0 then click
            end tell
            click pop up button 1
            keystroke "Name" & return -- arrange by name
            click button 1 -- close
        end tell
    end tell
    You should also have a look at Accessibility Preferences and GUI Scripting.
    Message was edited by: Pierre L.

  • Ios 7 icon size

    How to change the icon size in ios7.0.2? Because in Iphone4 the base icon size is not suiting with display.

    You cannot change the icon size.
    Do a
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • How do I turn off and on the icon size slider bar at the lower right status bar of a folder window.

    I have been trying for days to help a friend with a new iMac to turn on the icon size slider bar that on my iMac appears at the bottom of ever folder when it is open when in the "view" > "icon" mode.  I cannot find anything that discusses this slider bar.  I can turn this status bar off and on on both my machine and my friends machine, but I cannot turn off or on the slider on either machine. 

    This did not help.  I am a Mac User since 1984 and generally I am never stymied buy the Mac OS, but this one has me.   I can open and close the lower status bar, as you described, and that works fine for me because I have the icon slider bar already there and it works fine; however when I open the lower status bar on my friends machine there is no icon size slider bar, and I can't seem to find out how to get it there, as it is on my machine or at all. The icon size can be controlled from the View menu, but as a photographer, it is really handy to have it at the bottom of the folder window.  Thanks for trying. 

  • Photoshop CC 2014 UI Menu Text And Icon Size?

    so i really like that adobe has added the "experimental" option to increase the ui menu text and icon size in photoshop cc 2014, it was almost unreadable on my 2560 x 1440 27" monitor with photoshop cs4 and illustrator cs4, but the lone 200% setting is too big... seems that 125%, 150%, or maybe even 175% would be much better solutions. in fact, for reasons i can't quite understand, the ui text and icon size in illustrator cc 2014 is spot on, absolutely perfect on my monitor, even tho there is no option for increased ui size as far as i can tell, it was spot on the moment i installed and launched it.
    in short, the photoshop cs4 and illustrator cs4 user interfaces were identical in size as far as i could tell, and far too small on my 2560 x 1440 27" monitor. in terms of cc 2014, the illustrator ui is perfect out of the box on my monitor, considerably larger than illustrator cs4, while the photoshop cc 2014 ui is identical to cs4, tiny, but can be enlarged 200% which makes the ui too big. why couldn't/didn't adobe just make the photoshop cc 2014 base ui the exact same size as the illustrator cc 2014 ui? it would have been perfect (for my monitor size).

    thanks... just wish illustrator cc 2014 wasn't so perfect in terms of ui size, i mean it's just great and, consequently, makes it seem as if the ball was dropped with photoshop cc 2014... i mean how can one be spot on while the other be so far off?

  • Calendar in Yosemite does not comply to Sidebar icon size setting?

    The icon size and the font size in the sidebar of System apps can be set in
    System Prefs => General => Sidebar icon size
    The Finder of OS X 10.10 does react to this setting, Mail.app does and in Mavericks also Calendar.app did.
    On my MBP running Yosemite, Calendar v8.0 always shows quite large icons and a large font in the sidebar.
    Is this a problem of my installation, or is it "normal"?
    There are other problems of the Calendar sidebar, for example I am unable to enlarge the sidebar to show longer names of individual calendars.

    If you want the calendar entries that you create on the phone to sync with the gmail, you need to create the entry in the gmail calendar on the phone.  If you create it in the phone calendar, it is only on the phone.
    Usually at the very top of the new event entry you have a choice of which calendar to create this event in.  Either Phone, gmail or any other option you have synced to your phone.  To get it to sync to the gmail calendar you need to select the gmail calender.

  • Trouble displaying icon on push button in 6i Forms

    Hi,
    I'm having trouble displaying an icon on a button at both design and run times. I'm using Forms 6i with client/server enviornment. I have tried to follow several forums regarding icon setup and the Whitepaper articles. I have tried different suggestions but am still unable to get the icon. Here's my latest attempt:
    1. Copied .jar file to C:\Oracle_Developer_9i\forms90\java folder
    2. Modified formsweb.cfg (in the serverApp=default section) and included the following:
    archive_jini=f90all_jinit.jar,myAppIcons.jar
    imagebase=codebase
    3. In button's properties I set:
    iconic = 'Yes'
    icon filename = C:\Oracle_Developer_9i\forms90\java\myAppIcons.jar
    My guess is that I didn't copy the icon files (from the .jar file) correctly. As suggested in the Whitepaper, I don't have the c:\ myApp\ icons directory. I did a search for an icon directory and found multiple icons folders (due to other oracle projects installed on my pc) but don't know which one to use. Being that I'm using 6i and the instructions were for 9i I didn't know if the directory/folder name is different. Is there another directory/folder (using 6i) where I should copy all the .gif files from in addition to storing the .jar file in the C:\Oracle_Developer_9i\forms90\java directory?
    Also, I feel that I'm not calling it correctly from the location in step 3. Being that the icon exists in the jar file, how would I reference it within the file? Does anybody have any suggestions? Any help would be greatly appreciated.
    Thank you,
    Eric

    Robin,
    I tried your suggestions but am still unable to view the icon. Here's what I now have tried.
    1. I've created UI_ICONS in the windows registry under the form's oracle home and am calling c:\icons from that variable.
    2. In c:\icons, I copied the .jar file's contents (search.gif) into this folder. This is where I may have a problem in addition to my next step in calling the filename. You mentioned in your first post to put my .ICO files there. Should I rename my .gif to .ico? Not sure if I followed you there.
    3. In the button property, I set icon = yes and icon filename = c:\icons\search.gif -- Not sure if I used the right syntax for the filename. I've tried renaming it to .ico and it still does not display.
    Sorry about all the questions but I really appreciate your help. Do you see anything else that I did that may cause it to not display?
    Thanks again,
    Eric

  • Change icon size in dock

    I upgraded to OS X 10.9 from Mountain Lion. The icons on my dock (which I have on the right hand side of my screen) all became smaller with the upgrade. When I move the slider bar in dock settings (in system preferences) from small to large the icons do not change size as they did in Mountain Lion. Is this a bug in Mavericks or do I need to do something besides moving the slider bar from small to large? Thanks.

    frazzm,
    Finder>View>Show View Options>Icon Size.

  • Change icon size in Lion Finder

    In Lion, is there any way to increase the size of photos in the icon view in Finder?  There used to be a slider allowing you to make the icons large enough to guess what they might be.  I have not yet found any way to resize these icons--the pinch gesture does not work on them.

    frazzm,
    Finder>View>Show View Options>Icon Size.

Maybe you are looking for

  • Delivery Cost for Free Goods

    Dear SAP Guru, I need some advice how to do the following scenario. In My Purchase Order there will be 2 material A dan B. And B is a free goods (no invoice receipt). And in this Purchase Order there will be added some type of Delivery Cost. How can

  • Help need to create a query

    I need to fetch records from a table. Please help me to create a query The Tablename is Employee. It has the following records Department Empname Gender Finance Tom Male Finance Rick Male Finance Stacy Female Corporate Tom Male Corporate Rob Male I w

  • 9i:Can Page number be obtained before the entire generation of report ?

    Dear all: Suppose there is a report, the report is printed on both side of paper The page no of report (current logical page no and total logical page no) reset at each customer, For each customer, i want to print a logo on the front side of the last

  • New iPh 4s continuously Freezes unable to use for over several hours!!

    ok only had the iPh 4s going on 2 months (Oct 14, 2011 received) brand new!!  we all know about the famous hot battery and draining (which will still occur if you do NOT turn off all unnecessary notifications).  However, my new issue which started at

  • Mail not appearing in inbox.

    When I click on get mail incoming mail is loaded and the number next to the inbox icon shows that I have unread messages, but they don't show up in the folder. I have to quit out of the Mail app, and reopen it to get messages to appear. A co-worker's