Tool bar modification for accessibility

Hi,
I have a problem to customize the toolbar of the pdf reader from Adobe. I need to change the bar to get the icons and buttons larger and more accessible. I need to use the reader on a touch screen device with a full HD resolution. in this resolutionthe keys are too small and it is difficult to click them. Some of you know how I cansolve this problem?
I tried to use the APIs provided by Adobe, but I could not change the layout of the buttons at the top 

Hi Kranthi,
1. Can you please check the additional settings in FPM list - 'Enable Event on All Selections'?
2. Check the corresponding FPM view. In 'Action' tab, add the actions and check the checkbox 'enable' .
Thanks,
Dhivya

Similar Messages

  • Enabling Tool Bar Buttons for LIST UI for FBI ?

    Hi,
    I have created Actions to a Node 'MNR_SEARCH_RESULT',
    when I Configure LIST GUIBB with this node I made 3 tool bar Buttons for these actions, but when Test the Application tool Bar Buttons are disabled .
    (No data present in the list).
    below are the screen shots :
    How to make these Tool Bar Buttons Enable ?
    How to Create One Click Action in the List ?
    Thanks In Adv.
    Thanks,
    Kranthi.

    Hi Kranthi,
    1. Can you please check the additional settings in FPM list - 'Enable Event on All Selections'?
    2. Check the corresponding FPM view. In 'Action' tab, add the actions and check the checkbox 'enable' .
    Thanks,
    Dhivya

  • Where is the TOOL BAR? For example, where can Igo to click on "Tools" for go to "Options"??

    Please tell me how I can access what used to the tool bar? I am trying to find TOOLS where I can click on the drop down menu and select OPTIONS to get rid of cookies on a website. I was trying to find this for FRUSTRATING HOURS yesterday! Please help! ALso, in my very limited knowledge of troubleshooting, somehow I downloaded the MOST ANNOYING little GOOGLE taskbar that floats ALL OVER my screen and I cannot maximize the screen or anything over it uuuggghh! for the life of me, I cannot remember how I ever got this nebulous little demon, I was trying so hard to find the tool bar! Please advise. Many, many thanks for your help!
    pj

    ''Where is Tools > Options in Firefox 4 and Firefox 5'':
    You can make Firefox '''Firefox 5.0''' look like Firefox 3.6.19, see numbered items 1-10 in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 5.0, or 4.0.1, look like 3.6)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface
    Or for Tools > Options you would find that under the "Firefox" button then in the right column of the drop-down look for Tools. It does not fit the needs of Firefox users with extensions you still have bring up the Tools menu from the Menu by using the "Alt" key to temporarily see the the menu bar.

  • How do i get to the tool bar choices for safari

    Where do i find the choices to add to the tool bar for safari in Lion
    how do i get to it?
    also anyone know how we can customize the left side panel on mail??

  • Tool Bar script for generating Email

    Hi experts,
    I have made the following script for sending a custom email.
    And i've the required jar files in the ftp drive on the same server where E-sourcing is installed.
    If anyone can look at this code and tell me whats wrong with it, i'll be realy grateful .
    addClassPath("D:/FTPHOME/MailJar/activation.jar");
    addClassPath("D:/FTPHOME/MailJar/javac.mail.jar");
    addClassPath("D:/FTPHOME/MailJar/mail.jar");
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    // Recipient's email ID needs to be mentioned.
    String to = "Email add of recipient";
    // Sender's email ID needs to be mentioned
    String from = "Email add of sender";
    // Assuming you are sending email from localhost
    String host = "IP address of the host ";
    // Get system properties
    Properties properties = System.getProperties();
    // Setup mail server
    properties.setProperty("mail.smtp.host", host);
    // Get the default Session object.
    Session session1 = Session.getDefaultInstance(properties);
    // Create a default MimeMessage object.
    MimeMessage message = new MimeMessage(session1);
    // Set From: header field of the header.
    message.setFrom(new InternetAddress(from));
    // Set To: header field of the header.
    message.addRecipient(Message.RecipientType.TO,
    new InternetAddress(to));
    // Set Subject: header field
    message.setSubject("This is the Subject Line!");
    // Now set the actual message
    message.setText("This is actual message");
    // Send message
    try{
    Transport.send(message);
    catch(Exception e)
    print(e);
    Thanks,
    Abhijit

    I'd like to get from somewhere Oracle tool for
    generating simple SQL script for generating table,
    indexes, constraint (like Toad) and it has to be
    Oracle tool but not Designer.
    SQL Developer is similar to Toad and is an Oracle tool.
    http://www.oracle.com/technology/products/database/sql_developer/index.html

  • Display of only Tool bar in ALV without displaying the table

    Hi Experts,
    I defined a custom container and split it into 2 containers and used one for Top of page and the other for displaying the ALV.
    Now I want to export the entire report to excel sheet. So is there any method for having the Tool bar set for the custom container without displaying the ALV??
    I want to get the tool bar for custom container as we will have an option to download to excel sheet.

    Hi,
    You could try creating an instance of the class 'CL_GUI_TOOLBAR' on the custom container.
    And then call the method 'add_button' to add the export to Excel functionality.
    Here is a sample code..
    call method toolbar->add_button
              exporting fcode       = func code
                            icon        = icon name
                           is_disabled = '  ' or 'X'
                           butn_type   = '0'
                           quickinfo   = quickinfo information.
    Try it .............
    Thanks,
    Ketan

  • New version will not work with yahoo tool bar. How can I fix this problem ?

    I downloaded the new version of Firefox and it will not work with my yahoo toolbar anymore.It worked fine until I updated to the new version. I have went back to the old version 16.0 and now it keeps saying my version is out of date. How can I fix this problem and get the new version to work with my yahoo tool bar?

    For starters make sure you have the latest Yahoo toolbar.
    http://help.yahoo.com/kb/index?page=content&y=PROD_TOOL&locale=en_CA&id=SLN5044&impressions=false

  • Class for Accessing windows on Tool Bar

    Hi All,
    Is there any class in java through which we can access the processes/programs which are running on the tool bar.Like when we minimise notepad it will be running and hidden in tool bar.
    Thanks in advance.
    regards,
    Viswanadh

    If I understood your requirements correctly then I'm not aware of any Java class providing this functionality. I know there is the JDesktop Integration Components (JDIC) project, maybe you find something there:
    https://jdic.dev.java.net/
    Otherwise, if there is a native library providing this funtionality, have a look at JNA:
    https://jna.dev.java.net/
    -Puce

  • I want to unload Yahoo tool bar and go back to firefox tool bar but cannot pull up a "tool bar" it is missing as well as the back icon My book marks are apparently in the firefox format and I cannot access them

    I want to restore firefox tool bars so I can have the back icon and my bookmarks accessable. I now have Yahoo tool bar and it does not show file, tools, edit, etc.

    '''''"does not show file, tools, edit, etc."''''': That is the Menu Bar; see below
    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History, Bookmarks, Tools, Help)?
    Turning the Menu Bar on and off is a new feature in version 3.6.
    ''(~~red:Linux & OSX see~~: [[Menu bar is missing]] )''
    <u>''Windows'' Method 1.</u> '''''Hold down''''' the key and press the following letters in this exact order: V T M then release the key
    <u>''Windows'' Method 2.</u> Tap once on the F10 key, while the Menu bar is visible, choose "View > Toolbars", click "Menu Bar" so that a check mark is placed next to Menu Bar
    <u>''Windows'' Method 3.</u> Tap once and release the key. The Menu Bar will be displayed; then choose ~~red:V~~iew > ~~red:T~~oolbars and click on ~~red:M~~enu Bar so that a check mark is placed next to Menu Bar
    The Menu Bar should now be displayed permanently, unless you turn it off again using View > Toolbars. Check mark = displayed, NO check mark = not displayed.
    See:
    http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    http://kb.mozillazine.org/Toolbar_customization#Restoring_missing_menu_or_other_toolbars
    <u>'''Navigation Toolbar, Bookmarks Toolbar and other Toolbars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''
    '''[http://support.mozilla.com/en-US/kb/How+to+customize+the+toolbar How to customize the toolbar]'''
    <u>'''rich stanley'''</u>
    <u>'''''Other Issues'''''</u>: ~~red:You have installed plug-ins with known security issues. You should update them immediately.~~
    <u>'''You '''</u>~~red:<u>'''MAY'''</u>~~<u>''' need to Update Adobe Reader for Firefox (aka Adobe PDF Plug-In For Firefox)'''</u>: your ver. N/A; current ver. 9.3.3 (important security update release 06-29-2010; see: http://www.adobe.com/support/security/bulletins/apsb10-15.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    ''<u>You may be able to update from the Adobe Reader installed on your system</u>'' instead of going to the Adobe site and downloading. Open the Adobe Reader installed on your system (''in Windows, Start > Program Files, find and click Adobe Reader to open''), click Help, click Check for Updates.
    ''<u>If you go to the Adobe site to download the current Adobe Reader:</u>''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    ~~red:-See the images at the bottom left of this post to see the steps to take on the Adobe site~~
    -exit Firefox (File > Exit)
    -In Windows: check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -double-click on the Adobe Reader installer you just downloaded to install/update Adobe Reader
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version. To install/update the IE ActiveX version, same instructions as above, except use IE to download the ActiveX installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Adobe_Reader ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]

  • Tool Bar too jacked-up for consumer level PDF

    Sooner or later 3D interactive will saturate our culture. And Acrobat 3D is a great step, but it is targeted toward engineers and not consumer level marketing. 
    I want to produce these great PDFs for consumer level product marketing, but the Tool Bar is too feature rich for consumers. The tools are okay, let’s keep them, but the default tool, ROTATE, is just infuriating (not a good thing).
    I have been on the creative end of advertising for over 30 years, working with 3D for last ten years, and I do some coding from time to time, so I am not afraid of a challenge. I know this: a picture is worth a thousand words, a moving picture is worth ten thousand words, a 3D interactive needs NO words.
    Adobe has taken a giant 3D step with Acrobat, but the company now seems to be pulling away. Broad consumer level acceptance will generate the demand for Acrobat 3D, the engineering market is not big enough by itself. Here is my problem, the TOOL BAR requires an engineering degree, it is far beyond the consumer’s attention span and comprehension. Consumers are not engineers, but they do know how to use a mouse.
    So here is my consumer level wish list for Adobe Acrobat 3D:
    Remove the TOOL BAR and the RIGHT CLICK SUBMENU entirely from the annotation. When I say "Remove" I want it disabled, and make it not visible on a tool-by-tool basis. Keep the TOOL BAR as part of Acrobat 3D, but I need to manage it for the sake of consumers and my product. I don't want customers seeing it and wondering why they can get a tool to work, or wondering what they are missing because of a grayed-out feature. I want their attention on the product offered in the PDF. (I can NOT do this yet)
    Make SPIN the default movement tool and the only tool. (I CAN do this, thanks to this forum and javascript discussions)
    I need to restrict the rotation of the SPIN tool from going below the ground plane, and adjust the friction of the SPIN tool, some models move too fast in the environment. (I can NOT do this yet)
    The default arrowhead cursor does nothing to promote (set apart, distinguish, or announce) the 3D environment. When a consumer has a cursor over an activated 3D annotation the cursor should communicate that fact. The right cursor for this job is the "move" cursor (looks like the PAN TOOL icon). I need to set the MOVE icon as the default 3D icon (I can NOT do this yet)
    Create a 2D layer in front of the 3D scene to place stationary JPGs and TEXT in front of the 3D annotation. This can be useful for placing custom view buttons, ON/OFF buttons, transparency sliders in the scene, or toggling between one or two model render modes or different lighting schemes. (I can NOT do this yet)
    As I said before, “remove the RIGHT CLICK SUBMENU entirely” because it is the can of worms as the TOOL BAR. But I do want to be able to customize the RC SUBMENU when a consumer clicks on a part of the 3D model. When they right click, they should get a submenu of features, options, properties that relate to my product offer. (I can NOT do this yet)
    And finally, URL connectivity. That RIGHT CLICK SUBMENU has a feature like: make reservation, order this part, add to cart. (I can NOT do this yet)
    Now that will accelerate Acrobat 3D. Anybody know how to accomplish these features?
    Greg

    OK, in order:
    1 - you can disable the toolbar using the 3D annotation's properties, but you cannot disable the context (right-click) menu or edit the entries. You can add buttons to the toolbar to a very limited extent using JS, and can en/disable tools by name, but can't replace the entire thing and can't affect the other dropdowns (like the lighting or rendering menus)
    2 - easy with JS, as you already know: runtime.setCurrentTool('Spin');
    3 - also possible with JS, but complex to implement as you have to re-write the camera handling functions and do some polar geometry math. There are some examples from Directlight which use a ground-collision script for architectural renders inside a "sky bubble", but the script they use is copyrighted.
    4 - we don't give any access to the cursor icons, period.
    5 - You can do this in several ways; either with a watermark layer on the PDF, or using a SWF embedded in the 3D scene and some JS to load the SWF as a "scene foreground object". I've covered a lot of this on the Acrobatusers.com tutorials, but will be talking more about it in upcoming shows.
    6 - see q1
    7 - very commonly-done using JS, and probably the main thing scripts in 3D PDFs are used for. There are "3D order form" examples all over the Web, which use a script to override the default selection handler in the 3D scene, check the name of the mesh node being clicked, and then fire something out to the PDF (such as filling in a form field, opening a document, etc.) - suggest you grab one and poke about inside, as the handlers are all pretty much the same.
    It's important to note that the display of a 3D annot is handled by a plugin shipped with Acrobat and Adobe Reader, and this plugin decides what toolbars, menus, etc. appear. Because plugins don't generally expose themselves to each other, you couldn't override the default 3D toolbar even if you wrote a "plugin plugin", and there are no plans to change the customization options (or lack thereof). I agree with you that some of the tools and context items are a little obscure for Joe Public, but they were indeed designed for use by engineers! 3D PDF came about so CAD/CAM data could be exchanged and reviewed, so it was realistic to expect people opening the files were savvy in how to work with 3D models. They've grown to be more public-facing, but even today the vast majority of 3D PDFs are passed from one engineer to another, who both probably use a Space Pilot instead of the toolbar commands.

  • How do I put shortcuts to web sites in a (?) tool bar/browser bar...don't know what it is called. With IE, I can just drag the tab for the site to the area I want.

    How do I put shortcuts to web sites in a (?) tool bar/browser bar...don't know what it is called. With IE, I can just drag the tab for the site to the area I want

    Near the right-end of the address bar is a white star which can be difficult to see, but look closely. When you wish to bookmark a shortcut to the toolbar, double click the star. A window will open with the name of the webpage. Under that is the folder box which will probably read 'Unsorted Bookmarks'. Click the drop down arrow and change it to 'Bookmarks Toolbar' then click done.
    I have several folders on my toolbar such as Music, Mail, etc. in which I add multiple websites. If you wish to add a folder, click the second drop down arrow next to 'Bookmark Toolbar' and click 'New Folder' and give it a name.
    To add a bookmark to a folder, again double click the star, make sure you are in Bookmark Toolbar and click one of the two drop down arrows to find the name of the folder.
    For other bookmarks use Bookmark Menu. Whatever is added here can be accessed by Bookmarks on the Menu Bar. If your Menu Bar with Bookmark, File, View, etc. is not visible, click the Alt key and they will become visible. To keep the Menu Bar, click View, Toolbars and check Menu Bar.

  • When I click the bookmark icon on the Google tool bar I am asked to login which I do but still can't access my bookmarks.

    My OS is Vista Business and I'm using Firefox version 8. I'm using the Google Tool Bar and have an icon for Bookmarks but when I click it a message pops up "Sign in to access your Google bookmarks. I sign in but still can't access my bookmarks.

    The Google Toolbar isn't compatible with versions of Firefox beyond Firefox 4. If you are overriding extension compatibility to get to be enabled in Firefox 8, that isn't going to work since Google changed the logon URLs a couple of months ago; that broke the Google Toolbar even further.

  • How do I change the size of the words on the banner and tool bars?  The words are so large that I cannot access all the options.

    How do I change the size of the words on the banner and tool bars?  The words are so large that I cannot access all the options.

    Hi ewhuntley,
    It sounds like you may be running Acrobat 11.0.07, is that correct? If so, please choose Edit > Preferences > General. In the entry Scale for Screen Resolution, choose 100%. Save your changes, and restart Acrobat. Did that do the trick?
    Best,
    Sara

  • Tool bar customization in PCUI for CRM5.0

    Hi,
    After successfully configuring the Opportunity PCUI field group and Tab page group( events) IN CRM5.0 , I started to customize the appearance of the opportunity Toolbar group.
    The process is really simple according to some RKT material form SAP. go transaction CRM_BSP_CT --> toolbar grou-> double click to see exiting events and then add the events that you need in your Custom View, which I did successfully,
    Not sure whether to generate the same in the same line of layout generation after the Field group customization with a custom view. However after the changes the changes that I did to toll bar is not being visisble when I execute the PCUI,
    Can anybosy help me.?
    I have changes the toolbar group OPP_OIC_50, and created entries for my custom view. This should work withe floorplan 1 OR VERSION 1.
    Thanks

    Thanks Rad. I did that, but we have an issue with it.
    The problem is when we have the same user in 2 user groups. One user group, where we restricted WEBI not to display "Design menu" in the tool bar and the other User group where we allow to display the "Design" menu in tool bar. The outcome of this scenario is that because the user is in both the groups, no matter which report the user accesses, he is restricted not to use the Design menu of WEBI report. It is applying the least to the user instead of checking the user group and identifying what needs to be displayed in the tool bar of WEBI report.
    So, now how do you ensure that even though User is in 2 user groups and these 2 user groups may have different settings for WEBI design menu, that they are exclusive.
    There is no ability to control the inheritance from user groups to users while going from Usergroups->Customization-WEBI.
    Thank you
    Suman

  • My Macbook starts up, shows the screen saver, then immediately goes to sleep. I tap the spacebar, it comes back for a second, shows the tool bar and the hard drive icon then immediately "goes to sleep".  This can go on forever, on, sleep, on, sleep.

    My Macbook starts up, shows the screen saver, then immediately goes to sleep. I tap the spacebar, it comes back for a second, shows the tool bar and the hard drive icon then immediately "goes to sleep".  This can go on forever, on, sleep, on, sleep. I can only see the screen for maybe 3-5 seconds; not enough time to do anything. Someone did step on it, so I don't know if the problem is with screen or ??
    Thanks!

    Hello, Juniorjr2. 
    Thank you for visiting Apple Support Communities.
    This sounds like screen curtain may be enabled.  Screen curtain is a feature that allows display privacy.  To disable screen curtain while VoiceOver is enabled, you can three finger triple tap the screen to disable this feature.  You may need to press the home button once in order to process these steps.  If you wish to disable VoiceOver, see the link in the article below.
    iOS: Configuring accessibility features
    http://support.apple.com/kb/HT5018
    If the issue persists, try reaching out to us here. 
    Cheers,
    Jason H. 

Maybe you are looking for

  • Why can't I buy HD movies on iTunes for Windows?

    Hi, Was hoping someone could help me with an issue I'm having trying to purchase HD movies on iTunes using a Windows 7 system. When trying to purchase the movie in HD, I get the following message: The thing is, I was able to buy 3 HD movies previousl

  • How to keep quality of stills in FCP?

    Hi guys I´m a cameraman not an editor and have a few questions for you. I have a project coming up where we will do the whole film as a series of stills. The stills will be shot using a Canon digital SLR camera, then imported to FC Now, is it a way t

  • Out of memory, clear screen, cannot boot, no icons

    I have lost all icons. Cannot boot without a hard boot. Clear screen. All day long it said out of memory. I have 10gb. I cannot even access utilities or any programs. Really lost.

  • JDBC 4.0 Bug

    In JDBC 4.0 specification, the @Select annotation is used to obtain a result set with a SQL query. According to JDBC 4.0 specification, the result set is read-only by defaullt. If the result set is required to be modified, annotation element readOnly

  • Dimension Data summarizing

    We are using Discoverer Plus version 10.1.2.45.46c. I have some reports out of our data warehouse which is a regular star schema format. Some pretty standard tables, Fact table called Sales Facts and dimension tables called : Vendor, Item, Date,Custo