Developing global shortcut for my application

Hi, All!
I need to solve following problem: call my applicaion with global shortcut. How can I do that?
I used Carbon.
Lora
Mac mini   Mac OS X (10.4.8)  

If it's not executable jar.. then what is it? Just bunch of classes?
You can make it an executable jar, by using jar command.. eg. 'jar -cfm appname.jar manifest.mf appname' where the last argument (appname) is the package directory. Then you can wrap your jar into an exe, by using tools like launch4j or you can create one yourself using C for example. To deploy your application I would suggest Inno Setup.. it can create the shortcut for you as well.

Similar Messages

  • Need input on developing cluster agent for java application

    I am new to Sun Cluster and i wanted to develop agent for failover for one of my Java application which sits on one of the node of sun cluster 3.1. Can you guys help me in this.
    My Java application is based on n-tier client server model. and this needs to failover.
    I have two sun machine having solaris 9, which is clustered with 3.1 sun cluster software.
    As i know there are two mwthods for developing the agent for your application.
    1) Generic Data services
    2) Sun Plex agent builder
    i wanted to use Sunplex agent builder with Ksh. Can you please tell me what all things required for starting it and how do i proceed.
    thanks in advance.

    Using GDS will be the simplest solution.
    You can write atleast one script - to start application:
    say '/MYAPP/start'
    This script can setup JAVA_HOME and other environment variables and start the application in background.
    # scrgadm -a -t SUNW.gds
    # scrgadm -a -g rg1
    # scrgadm -a -L -g rg1 -l hhead
    # scrgadm -a -t SUNW.gds -g rg1 -j app-rs \
    -x Start_command="/MYAPP/start"
    # scswitch -Z -g rg1
    # scstat -g
    Refer to GDS man page http://docs.sun.com/app/docs/doc/819-0582/6n30g7il4?q=GDS+&a=view
    and Data services developer's guide http://docs.sun.com/app/docs/doc/819-0581/6n30f91v4?a=view
    If you want custome probe or you want to stop application gracefully, then you can write stop and probe scripts and provide them in 'scrgadm' command as described in SUNW.gds man page.
    If you want to productize the agent, then you can consider using agent builder.

  • Does Developer 9i only for web application

    Dear Friends,
    Does Developer 9i only for web application?
    Thanks

    Although in theory you can install the client and the application server on one machine so you can be "2 tier" but yes, client/server was desupported back in 6i.

  • Global items for cross application references in Apex

    Hi,
    With reference to discussion (Re: Setting Application Items across APEX Applications) , I would like to know if we can pass values from one application's global item to another application?
    The above mentioned discussion didn't seem to reach to any conclusion.
    Scenario is -
    1. Application 1 has a global item G_USER_ATTR1 which gets fetched with certain attributes when user logs into the application, at page 101.
    2. There is a link between App 1 and App 2, where it is expected to receive values for G_USER_ATTR1 from App 1 to App 2, when you navigate from App 1 to App 2, where authentication is handled by cookie.
    3. On App 2, the value for G_USER_ATTR1 does not get fetched.
    Am I missing something here?
    Also, when what is the preocess flow on page 101 when a user gets authenticated by cookie while navigating from App 1 to App 2?
    I used a page process to fetch the values again in the item on App 2's page 101's post processing pl sql block. But it didn't solve my problem. Please help.
    Other than this, the badge report template on Apex 5 Universal Theme doesn't work. I named the columns in query to match with the substitution strings in report template, but it didn't work. The card template for report however works fine . What can be the issue?

    Farhan,
        look at Grassroots Oracle: Shared authentication across multiple APEX applications blog for shared authentication,
    if you miss something to set share authentication.
    Farhan Siddiqui wrote:
    1. Application 1 has a global item G_USER_ATTR1 which gets fetched with certain attributes when user logs into the application, at page 101.
    2. There is a link between App 1 and App 2, where it is expected to receive values for G_USER_ATTR1 from App 1 to App 2, when you navigate from App 1 to App 2, where authentication is handled by cookie.
    3. On App 2, the value for G_USER_ATTR1 does not get fetched.
      First check whether Application Item name in both application is same and
    set scope of application item in both application set to global.
    Farhan Siddiqui wrote:
    Am I missing something here?
    Also, when what is the preocess flow on page 101 when a user gets authenticated by cookie while navigating from App 1 to App 2?
    I used a page process to fetch the values again in the item on App 2's page 101's post processing pl sql block. But it didn't solve my problem. Please help.
    No need to write plsql block for set value of Application item in application 2.
    simply refer or use :G_USER_ATTR1 as value in Application 2.

  • Global item for all applications in a workspace

    Hi All,
    Is there a way to set a global item available for all applications in a workspace?

    Sabiha,
    I know this is a bit late, but here's what I did. This answer spans your question a bit but may be helpful to others.
    I have a dev, test, and prod environment so we have difference values depending on the instance. When moving an app from dev to test I don't want to have to modify any substitution strings since that can become a pain and possibilities of someone forgetting something is high.
    1- Great a table called global_values, which has a value_name, and value
    Let's say you wanted to store an email address: admin_email...
    2- Make sure to insert into global_values ('ADMIN_EMAIL, '[email protected]');
    3- For each application you have, create an application item called G_ADMIN_EMAIL
    4- For each application create a process (on login) called: Set Global Values. In this use the util:
    HTMLDB_UTIL.SET_SESSION_STATE (
    p_name => 'G_ADMIN_EMAIL',
    p_value => <function to get the global value> );
    4(extra): For one application item this is ok, but to make it even better, just create a function that will set all the application items so you don't have to change this in all your applications.
    The advantage with all this is that the data is stored in the DB and will help you move from instances without any errors. The disadvantage is that it'll be a slight performance hit since you're calling a function for each user login. You'll also have to add an application_item for each of your applications....
    Martin

  • Keyboard shortcuts for APEX applications

    Hi,
    I want to add shortcut keys to my APEX application. I have already allowed users to show report, save and delete data using F-keys – I made it with javascript and doSubmit(request) function, invoking pl/sql procedure on F-key press.
    Unforutnatelly I don’t know how to invoke something else than pl/sql procedure or request. In my application I have several buttons, most of them are connected to procedures but one, that should have shortcut, invokes JS function. The problem is that I want to have one shortcut function for whole application and put it into library. So that procedures on each page has the same request, and it works very well, but I can’t simulate this way clicking on button with JS. JS invoking by this button is different for each page so I can’t just replace doSubmit() with it.
    Do you know any way to simulate clicking on the button or create shortcut for it? Button is displayed as <A> HREF with <IMG>.
    Regards,
    Przemek

    Time and motion studies in terms of Gilbreth‘s therbligs do not favor your approach. The keyboard lies in the heart of the area of minimall motion requirements. The mouse requires more movement to accomplish the same task. It’s all in what’s comfortable with the user, regardless of efficiency, or what the user’s bent may be for finding other ways. Antagonistic responses are oxymoronic in terms of the definition of “help”: verb sap.
    Message was edited by: alibi . . . I needed to get around the program’s ill informed decency standards. “Bent” is a poor substitute for l*u*s*t.

  • Can I set up a shortcut for an application ?

    in a way that it will be activated whenever a shift+something is pressed (from any state of the phone) ?
    or maybe there exists a key that it funcionallity can be defined, that even better...
    nir

    there are shortcuts available on the Home screen provided you desactivate the "dial from home screen" option.
    for instance on a Curve :
    L for calendar
    B fro Browser
    A for Address Book
    M for messages
    but I think that's all the shortcuts you can get. And they are hardcoded.
    You can assign two applications on your soft keys on the sides of your Blackberry if you have a Curve.
    Other than that, you can use the Launchpad application :
    http://software.crackberry.com/product.asp?id=19028&n=LaunchPad
    Or you can tidy your applications using a special theme like the BB Dimension Zen (I have a shortcut on my Homescreen for the "Media" application and for the "Manage connections" application).
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • How to easily develop user interface for MI applications?

    hai,,
    i am using SAP MI 2.5 sp 9 in client machine and my NWDS is of version 2.0.9..
    (smart sync project)
    now i am using html code for UI developments in the generated jsp pages(im using JSP framework.)..
    can i use htmlb in place of html?
    if yes , what should i do?.
    please help me with sufficient help.
    if any examples or whatever please provide me..
    regards
    kishor

    Hi Kishor,
      SAP doesnt support the use of HtmlB for MI 2.5 but techincally you can use them. JSP development is not too bad, soon Web Dynpro development will be available for Mobile Infrastructure and disconnected applications so SAP is improving the UI development. I got a chance to take a peak at one of their applications that uses Web dynpro for MI, Its pretty good. I think this December or this summer we should expect an update on the UI development.
    The following link should also help in <b>answering your question.</b>
    Help for MI API
    Good Luck,
    Wael
    -wael

  • Global shortcuts when an application is open

    Hi,
    I want to use shortcut commands like Chift+Command+C to go to the computer folder even when an application is open (Example Firefox).  The problem is that whenever an application is open and I press these commands nothing happens or something else happens.  How do I achieve this functionality?
    Thanks
    Arjuna.

    For a Finder keyboard shortcut to be available in any application, you have to set the Finder command up as a Service and to bind this service to a keyboard short cut. Then the applications will understnd the keyboard shortcut.
    To set up a service for "Chift+Command+C to go to the computer folder ":
    Launch Automator, create a new service, set it to receive no input in any application, and add the following actions from "Files and Folders":
    Get specified Finder items (and press "Add" and select your "Computer")
    Reveal Finder items.
    Save the service as "ShowComputerFolder.workflow"
    Use "System Preferences" > "Keyboards > keyboard Shortcuts" to bind the service to your keyboard shortcut:
    In the "Keyboard Shortcuts" tab select "Services" in the left column. And in the right column enable your new service. To the right of the service name click the shortcut field - it should still be showing "none" and ente the shortcut you want.  Now the shortcut should work in any application.
    Regards
    Léonie

  • Shortcut for JWS application

    Hi,
    I'm writing an application by using JWS and JNLP.
    When javaws generates a shortcut on desktop or in startmenu its parameter points to a jnlp-File in the webstart-cache.
    Is there any chance to let javaws generate these shortcuts using parameter like "http://..."?
    Thanks in advance!

    Hi,
    The short-cut created normally refers to the webstart-cache. But if there is any update then it will download the updates from the server. Thus it would look like it is running from the server.
    In ur JNLP:
    <shortcut online="true">
    <desktop/>
    <menu submenu="Application"/>
    </shortcut>
    Is this what ur looking for? Can u specify why u want to do this?
    //Anjali.

  • Developing Online Help for Mobile Applications

    My company is just starting to develop applications for mobile devices (cell phone, iPad
    , etc.). Can anyone tell me whether RoboHelp is the best Adobe application for devel
    oping online help for mobile devices or if some other application should be used? Thanks.

    Thanks for the insight. I haven't read about RH8 so wasn't aware of that difference. No, I haven't tried the demo yet. I guess that would be the logical next step. I've been trying to get to the STC web site to download the PDF file of the presentation, but can't get the web site to open. Oh well. Thanks again.
    Regards, Fred W. Brown
    Technical Writer 3
    InnovaSystems International, LLC
    (757) 282-7921
    • Writing is simple. First you have to make sure you have plenty of paper... sharp pencils... typewriter ribbon. Then put your belly up to the desk... roll a sheet of paper into the typewriter... and stare at it until beads of blood appear on your forehead.
    • Prof. Cosmo Fishhawk, in Shoe

  • Development menu disappear for one application only

    Hello,
    For one of my application, when I run it from application builder, the apex development standard menu at bottom of each screen (where we have Modify app, Modify current page, Create, Session, Debug, etc.) does not appear. It was there few weeks ago...
    For all others applications I have it.
    I don't remember what I did to get this situation. Any idea if exist a parameter to hide it?
    thank you
    Jean

    Check your application's "Availability" attribute under application definition
    See http://i13.tinypic.com/4cc1c8i.jpg
    The "Available with Edit links" is what makes the Developer toolbar appear at the bottom of the page when you run it via the Builder.

  • Shortcuts for opening Applications

    I have tried to set, for instance, F1 to open Word, but it doesn't work. The way I have tried is to open system Preferences, then Keyboard & mouse, then Keyboard Shortcuts, then +, then select an application. I've tried entering "Open" and "Open Microsoft Word" under "Menu Title," then setting the shortcut, to no avail. I'd like to set shortcuts to open several different apps. Can this be done?

    Will Spotlight do? Command-space, type word, press Enter. Spotlight is how I launch any app that is not already in my Dock. It's much faster than navigating through Finder windows with a mouse.
    Otherwise, you can use a program like Spark to set F keys to open applications.

  • URL shortcuts for webdynpro applications

    I would like to have a iview as shortcut to windows desktop which receives parameters in URL.
    How can we achieve this.
    Thanks

    Hi Ayyapparaj,
    Thanks for the reply...i have used the code given by you...and i got an error
    "com.sap.tc.webdynpro.services.exceptions.WDIllegalArgumentException: Invalid deployable object part type: Component"
    i have included this code in component controller in Modify View method
    try{
                WDDeployableObjectPart deployableObjectPart =  wdThis.wdGetAPI().getComponent().getDeployableObjectPart();
                String appURl = WDURLGenerator.getApplicationURL(deployableObjectPart);
                wdComponentAPI.getMessageManager().reportSuccess(appURl);
           catch(Exception ex)
              throw new WDRuntimeException(ex);      
    Please let me know how  to proceed further
    Thaks & regards
    Swetha
    Edited by: Swetha Nellore on Feb 24, 2009 10:04 AM

  • Keyboard Shortcuts for opening applications

    I was just curious if it was possible to be able to set up a keyboard shortkey that would enable you to launch your applications. Like Command+1 to open up safari. etc. Wanted to know if that was possible?

    Time and motion studies in terms of Gilbreth‘s therbligs do not favor your approach. The keyboard lies in the heart of the area of minimall motion requirements. The mouse requires more movement to accomplish the same task. It’s all in what’s comfortable with the user, regardless of efficiency, or what the user’s bent may be for finding other ways. Antagonistic responses are oxymoronic in terms of the definition of “help”: verb sap.
    Message was edited by: alibi . . . I needed to get around the program’s ill informed decency standards. “Bent” is a poor substitute for l*u*s*t.

Maybe you are looking for