Start 6i application with runtime fully maximized

Hi all,
I want to start my application (Client/Server) fully maximized.
How can I do this?
Thanks
Silke

Hi all
I've found the solution! :-)

Similar Messages

  • How to start a application with a login window?

    hi there
    does anyone have any idea on how to start an application with a login window? a login window is the first frame or window to be displayed when an application starts running. and only correct login id and password have been entered the real application will start. any sample out there? thank you.

    You can start a new thread by making a thread object and passing it an implementation of a runnable object. Runnable has just one method, public void run(), this is was gets executed in a second thread. perhaps the code you would use would look something like this.
    <code>
    // set up thread for login window
    new Thread(new Runnable() {
    public void run() {
    // construct your login window here
    // when you are done processing the
    // password....
    if(goodPassword) {
    authorized = true; // a global variable
    notifyAll(); // don't forget this
    else {
    System.exit(42);
    }).start();
    // control does not stop this code gets executed while
    // the above thread is running.
    // Set up main program here. This is done in the
    // backround.
    while(!authorized) {
    synchronized(this)
    { wait(50); }
    // now when the user logs in this frame pops
    // up real quick.
    myFrame.setVisible(true);
    </code>
    Hope you can figure it out.. good luck :)

  • Error publishing "Application with runtime embedded" file

    I am trying to publish an "Application with runtime embedded" file out of Flash Pro CC. I am getting an error that I think indicates that certain necessary files that get packaged with the SWF to create the App are not able to be copied. The error message occurs at the end of the process after the SWF file has been published and after it has tried to gather the AIR files.
    iMac 27" 3.4 GHz Intel Core i7, 8 processor cores,  32gb ram,  OS X 10.8.4
    Flash Pro CC Ver. 13.0.0.759 (up to date)
    Error Message
    Unknown error.
    unexpected failure: Copy failed
    java.io.IOException: Copy failed
    at
    com.adobe.air.nai.MacPackager.copyWithPermissions
    (MacPackager.java:54)
    at
    com.adobe.air.nai.AppBundlePackager.assembleInternalFiles(AppBundlePackager.java:52)
    at
    com.adobe.air.nai.Native Packager.createPackage(NativePackager.java:132}
    at
    com.adobe.air.ADT.parseArgsAndGo(ADT.java:572)
    at com.adobe.air.ADT.run(ADT.java:419)
    at com.adobe.air.ADT.main(ADT.java:469)
    I can publish the exact same file as an AIR package and have it work.
    I have repaired my permissions in the off chance that Flash could not access the files due to bad permissions. 
    I don't what my next steps should be. My chat with support netted nothing but the suggestion I post to this forum. Anyone have any ideas?
    Thanks in advance

    Hi,
    Please let us know, which Player Target you are trying to publish to : AIR for Desktop/AIR for Android.
    Are you trying to use AIR3.6 or any other SDK using Manage AIR SDK?
    If possible, provide the scenario file so that we can repro the issue.
    Regards,
    Meenakshi

  • Flash CS6 does not not create an .app file when I Output as application with runtime embedded

    I am attempting to create an application with runtime embedded, but the process keeps failing without throwing an error. Specifically: in Air Settings, I select Output as: Application with runtime embedded. When I build it this way, Flash tells me that it's created Telepath Tactics - Steam.app...
    ...but no .app file ever actually appears in the folder:
    This happens regardless of what I include in the Library Path, and regardless of the Default Linkage settings. (When I tell it to Output as: Windows installer, by contrast, the appropriate exe file appears without a problem.)
    I'm using Flash Professional CS6 v. 12.0.0.481 on Windows 7, 64-bit.

    I should note that this only occurs on certain windows machines. I am still waiting to hear which ones.
    I personally do not experience this so I have to rely on Client feedback.
    On my machine it works fine without Flash installed.

  • How can I start any application with buttons

    Hello, I want to start any kind of applications with Buttons. I want to make me a GUI with buttons and with one button I want to start Outlook, but I dont know how this will work!
    THX for your help

    Runtime class exec methods
    If your Outlook executable is in different path ... import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Test2 extends JFrame implements ActionListener
       public Test2()
          super("Test");
          setDefaultCloseOperation(EXIT_ON_CLOSE);
          setSize(300, 200);
          JButton b = new JButton("Outlook Express");
          b.addActionListener(this);
          getContentPane().setLayout(new FlowLayout());
          getContentPane().add(b);
       public void actionPerformed(ActionEvent e)
          try{
             Runtime runTime = Runtime.getRuntime();
             Process proc = runTime.exec
                         ("C:\\Program Files\\Outlook Express\\msimn.exe");
             proc.waitFor();
          }catch(IOException ioe){System.out.println("Wham");}
          catch(InterruptedException ie){System.out.println("Bop");}
       public static void main(String[] args)
          new Test2().setVisible(true);
    }

  • How do i start a program with the window maximized

    Hi, i have a couple of programs that i have created launchers for. The slight bother is i have to click on the maximize buttons for the programs to fully resize and fit the screen. Was wondring if there is a flag i can add to the command to ensure it starts with the window fully maximized. Thnx.

    you need to put something like this in your ~/.devilspie.xml
    - <flurb>
    - <matchers>
    - <matcher name="DevilsPieMatcherWindowName">
    <property name="application_name" value="audacity" />
    </matcher>
    </matchers>
    - <actions>
    - <action name="DevilsPieActionSetGeometry">
    <property name="xoffset" value="0" />
    <property name="yoffset" value="0" />
    <property name="width" value="100" />
    <property name="height" value="100" />
    </action>
    </actions>
    </flurb>
    </devilspie>

  • Is it possible to start an application with parameters

    Hello together,
    I have written an application which is stored on a network. People from different computer start it to work with it. Now I have the problem, that I need some different configurations on each computer.
    Is it possible to start a labview application with parameters, like: application.exe -User_1
    The application should check the parametes and should switch to the needed configuration.
    Thanks a lot and best regards,
    Michael
    Solved!
    Go to Solution.

    Hi Michael,
    yes it is possible. First you have to activate the data transfer of your parameters. You can do it in the application builder. It is something like "send command line parameters to exe" which you have to activate. You will get the parameter in your program with the property "App.Args". It is an array with the exe name as the first element and one entry for each additional linked parameter.
    Hope it helps.
    Mike

  • Start external application with oracle job

    I'm trying to start external program with oracle job.
    Here is an example (I used SYS as SYSDBA):
    BEGIN
    DBMS_SCHEDULER.CREATE_JOB (
    job_name => 'my_job',
    job_type => 'executable',
    job_action => 'C:/WINDOWS/system32/cmd.exe',
    enabled => true,
    auto_drop => false );
    END;
    But job STATE comes FAILED.
    How should I do this?
    Result was not better when I used
    BEGIN
    DBMS_SCHEDULER.CREATE_PROGRAM (
    program_name => 'my_prg',
    program_type => 'EXECUTABLE',
    program_action => 'C:/WINDOWS/system32/cmd.exe',
    enabled=>TRUE);
    DBMS_SCHEDULER.CREATE_JOB (
    job_name => 'my_job',
    program_name => 'my_prg',
    enabled => TRUE,
    auto_drop => false );
    END;
    Edited by: user458393 on Feb 16, 2010 1:55 AM

    Take a look at this thread: Running a Windows BAT file using DBMS_SCHEDULER
    C.

  • [KDM] Cannot start gui application with sudo

    Hi,
    After i had upgraded to kde 4.5, there was a new problem. When i want to start any gui program with sudo (e.g. sudo kwrite) i see that error:
    [simas@myhost ~]$ sudo kwrite
    No protocol specified
    kwrite: cannot connect to X server :0.0
    [simas@myhost ~]$
    Starting apps like nano works fine. I also discovered that when i use gdm instead of kdm, and boot to same kde desktop, i can start gui apps with sudo fine. when i use kdm no matter if im in gnome or kde starting gui apps from terminal with sudo just doesnt work.
    Anyone has any ideas? im starting desktop managers with inittab method.
    Last edited by syms (2010-10-11 11:49:24)

    graysky wrote:hmm... with gnome I use gksu so I believe you need the kde version of that... ksudo or kdsu I can't remember.
    well, using kdesu works fine, but i still prefer sudo. in fact everything worked fine in kde 4.4 and gdm.

  • Applescript: How to start an application with parameters

    AppleScripters,
    I am sorry if I have posted this in the inappropriate forum, I saw none with a specific regard to AppleScript.
    Let us presume that we have a regular shell script which when initiated from the Terminal has code such as what follows hereupon:
    /Applications/SeaMonkey.app/Contents/MacOS/seamonkey -editor /Users/joebuffoon/myhomepage.htm
    In order to convert this to AppleScript I was told to use:
    activate application "Seamonkey"
    This works, but seems not to support the ability to either provision the "-editor" argument (such argument would impel Seamonkey to start in "composer mode"), nor does it seem to provision the allowance of supplying a file to open in "composer mode" as the aforementioned command line in my shell script would.
    Can I ask if anyone has any idea how I can do this in AppleScript?
    I am also interested to find a good book on Apple Scripting (preferably one available in PDF format as well, if possible).
    Thanks in advance,
    Stuart

    I saw none with a specific regard to AppleScript
    http://discussions.apple.com/forum.jspa?forumID=724

  • How to start an application with parameters

    AppleScripters,
    Let us presume that we have a regular shell script which when initiated from the Terminal has code such as what follows hereupon:
    /Applications/SeaMonkey.app/Contents/MacOS/seamonkey -editor /Users/joebuffoon/myhomepage.htm
    In order to convert this to AppleScript I was told by an associate to use:
    activate application "Seamonkey"
    This works, but seems not to support the ability to either provision the "-editor" argument (such argument would impel Seamonkey to start in "composer mode"), nor does it seem to provision the allowance of supplying a file to open in "composer mode" as the aforementioned command line in my shell script would.
    Thus, my query is if anyone has any idea how I can do this in AppleScript?
    I am also interested to find a good book on Apple Scripting (preferably one available in PDF format as well, if possible).
    Thanks in advance,
    Stuart

    I've had success with the script below, tested using SeaMonkey version 2.0b1 and Mac OS 10.4.11. It may or may not work with earlier versions of SeaMonkey, however, as the new beta version features UI changes.
    No browser window will open as long as SeaMonkey > Preferences > Appearance is set to open Composer exclusively at startup.
    Be advised that the script is meant to run slowly and might appear to be hanging when such is not the case. Adjusting delay times would be key if the script does fail at any point, however. Good luck.
    +Copy the block of code below and paste it into your AppleScript Script Editor:+
    *tell application "SeaMonkey" to activate*
    *delay 4 -- four-second delay; increase if necessary*
    *tell application "System Events"*
    *tell process "SeaMonkey"*
    *if not (exists window "untitled - Composer") then*
    *key code 21 using command down -- makes new window if necessary ("Command + 4")*
    *end if*
    *delay 2 -- increase if necessary*
    *keystroke "o" using command down -- "Open File…"*
    *delay 2 -- increase if necessary*
    *keystroke tab using shift down*
    *keystroke tab using shift down -- brings focus to text field for file search*
    *keystroke "File Name" -- enters file name (you must replace text within quotes with actual file name)*
    *key code 47 -- enters "dot"*
    *keystroke "html" -- enters extension*
    *delay 10 -- ten-second delay could be MININUM; increase if necessary*
    *keystroke tab*
    *keystroke tab -- brings focus to scroll area*
    *key code 125 -- presses down arrow to highlight specified file*
    *keystroke return -- presses "Open"*
    *end tell*
    *end tell*

  • Starting AIR application with parameters

    Hi all
    Is it possible to pass the parameters to the AIR application?
    Something like:
    myapp.air param1 param2
    If yes, how can I get those parameters inside the
    application?

    I actually want to post this link:
    http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&productId=4&postI d=8003
    -ted

  • Start and ADF Application with a non-View Task

    I would like my application to start with a non-View task from within Unbounded Task Flow.
    For example, I would like a single "Task Flow Call" in the Unbounded Task Flow which will call the first Bounded Task Flow. The first BTF will expose the main application page. The main application page will contain a dynamic region to handle all other bounded task flows.
    Is there a better task type to use than the Task Flow Call?
    Does the first task in an unbounded task flow need to be a view task?
    If so, is possible to simply use this page to redirect to a non-view task (such as a Task Flow Call)?
    Any ideas on the best approach for this? The point is that I do not want to start the application with a view task.
    Thanks,
    Vince

    Hi,
    you can't start with a non-view acticvity in an unbounded task flow. In your case I suggest to use a bounded task flow that you enable for browser access (property setting) and have it using JSPX pages. You don't need to start with a view in the unbounded task flow to achieve what you want
    Frank

  • Start an application from console with arguments

    Why do I get an ArrayIndexOutOfBoundsException when I try to start the application with
    > java Application 12345
    public static void main(String[] args)
              String host = args[0];
              String port = args[1];
              if(port.length() == 0)          
                   port = "500";
              System.out.println(host+"\n"+port);
         }

    I have modified the main method and here it is. My problem is described below the code.
    public static void main(String[] args) throws IOException
         String host;
         int port;
              if(args.length == 0)
                   host = "address.to.server";
                   port = 1000;
              else if(args.length == 1)
                   host = args[0];
                   port = 1000;
              else
                   host = args[0];
                   try
                        port = Integer.parseInt(args[1]);
                   catch (NumberFormatException ioe){ port = 1000; }
              try
                   new Client(host, port);
              catch (ConnectException ce){ System.out.println(ce.getMessage()+" "+host+" "+port); }
              catch (NullPointerException npe){ System.out.println(npe.getMessage()+" "+host+" "+port); }
    }If I try to start the program through
    > java Clientthe connection is set up to host = "address.to.server";      port = 1000; and the program works.
    If I try to start the program through
    > java Client localhostI get Connection refused: connect localhost 1000
    If I try to start the proram through
    > java Client localhost 1000I get Connection refused: connect localhost 1000
    If I connect to a host that doesn´t exist, like
    > java Client localho 1000I get null localho 1000
    I have no Idea what´s wrong.
    Please, help!

  • EA1 EA2 EA3 don't start on linux with jdk1.7 but work with jdk1.6!!!

    I install SQLDeveloper EA1 then EA2 and now EA3 on my Linux (Fedora 19), but the result is the same.
    If i start SQLDeveloper with root it work, but if i start with my user the application crash. I tested to change owner of all component, but the result is the same.
    Then because I started the application with jdk1.6 (I used the EA1 who did not warning about the java version) and it work fine!!!
    I opened two "Report a HotSpot Crash", but I never received a response.
    No one any idea? Nobody has ever happened? 
    Thanks,
    Enrico

    This sounds like
    Re: 4EA1: Not starting on Ubuntu. Unkown protocol sqldev.temp

Maybe you are looking for

  • Sorting in ALV Report.

    Dear Experts, I mfacing a strange problem. I hv an internal table containing the required data in required sorted order. But when i call CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' function module, the sort order gets changed. I m not sorting internal tab

  • How do I get music onto a phone that hasn't been backed up to new computer without losing anything??

    I just found out my incredibly stubborn teenager's iphone hasn't been backed up at all since last spring. Her old 3gs was previously synced with my computer, but I thought she was syncing her 4 with her own macbook - evidently not. It hasn't even bee

  • In 10.7 my Airport Disks only connect once...

    Here is my setup: I have a MBP that used to run 10.6.x. I had an AExtBS and two satellite AExpBSes, one of which was hooked up to a very nice stereo. My iTunes library is very very large - several Ts of lossless audio. That library lives on a drive t

  • How to make an action that does not record the path in which you save your file

    Hi all, once I set an action like this: and with the batch i can always choose the destination folder, time by time. But I tried to do a similar action that saves a png file, but I can't leave the "in: " empty, it always fill with a path. How can I d

  • Epub formatting questions.

    Hi, I've read that the epub format does not support tabs. What should I do as a substitute? Does it support actual regular spacebar spaces instead? How about for paragraph returns...do I use the 'return' key to add large gaps of space between content