Java Script Question (No Toolbars, ... for whole application)

Hi Everybody!
I have the following problem. We have created a web-application, which consists of about 100jsp pages and several class-files.
Now we want to hide the toolbar, the menubar and the addressbar for every jsp page in the application. I know, that normally this is done by using window.open(...) but then I had to alter every link in the nearly finished system.
Is there another possible solution to achive this goal with minimum effort?
Thanks in Advance!
Stef

no, but why do you have about 100 window.open() calls? Most web applications don't jump between windows. And it's not like you can hide that stuff in the current window anyway.

Similar Messages

  • There is any Scripting languages is used for mobile application development

    Is there is any Scripting languages is used for mobile application development?
    For example java script,vb script is used for web development.Like that is there is any scripting language is used for mobile application development along with J2me.
    Thanks & Regards, Sivakumar.J

    806437 wrote:
    .. is there is any scripting language is used for mobile application development along with J2me.If you are talking about javax.script,
    google ( [url http://www.google.com/search?q=java+me+javax.script]java me javax.script ) gave me http://sourceforge.net/projects/rhinoj2mecldc/

  • Can I post here(Acrobat Windows) Java Script questions here?

    Hello
    Can I post here(Acrobat Windows) Java Script questions here? If not, wht is the correct forum?
    THank you

    Back up and down to Acrobat Scripting. Bot Windows and MacIntosh Acrobat versions use the same JavaScript.
    If you are using LIVECYCLE DESIGNER use their forums. The JavaScript syntax and objects are different in LIVECYCLE DESIGNER!

  • Which java Enabled phone u use for testing application in real condition?

    Hi Every one.
    As it is a list which some people do Mobile developing i have come to
    ask a question about Java Enabled Mobile phones.
    My question is : Which Java phone u use to test your application ? (out
    of simulators in real world)
    do you use Simulators until project end , or you deploy on mobile phones
    some times ?
    Thank you

    OK, I've used a workaround...

  • Setting Color for whole application

    Hello everybody.
    I've to set the Button.background - Color for a whole application.
    For these purpose I use the JColorChooser and the
    UIManager.put("Button.background",>anyColor<); - method.
    When I use this the first time after start it works fine. When I try to change the color again it doesn't.
    Any ideas?
    Thanks for your help.

    OK, no more help needed at this time.
    My mistake was that I tried to call
    UIManager.put("Button.background",Color.red);
    it has to be:
    UIManager.put("Button.background",new ColorUIResource(Color.red));

  • Set WAIT_CURSOR for whole application, not for single frame

    Hello,
    I am trying to set the cursor to an hour glass while a process runs. The application uses serveral frames that are open at the same time. The problem I have is that the cursor is attached to the frame (frame.setCursor) so once I move off the frame to another one the curosr is no longer an hour glass and when I move backover the first frame the cursor does not change back to the hour glass.
    Is there any way to set the hour glass for the whole application?
    Cheers
    Andreas

    hi,
    write a new class for this: class CursorHandler
      private static Vector frames = new Vector ();
      public static void addFrame (JFrame f)
        frames.add (f);
      public static void setCursor (Cursor s)
        for (int i = 0; i < frames.size (); i++)
          JFrame f = (JFrame) frames.get (i);
          f.SetCursor (s);
    }then just do:CursorHandler.addFrame (this); //for all frames
    CursorHandler.setCursor (new Cursor (Cursor.WAIT_CURSOR)); //in any framegreetings,
    Stijn

  • [METASOLV XML AP]devolop JAVA client using XML API for metasolv application

    Hi All,
    I am new in this group, and I need to help me to develop a java client to communicate with metasolv application using XML API.
    I read "XML API Developer’s Reference" document, but I still not understand how can I setup the cllient.
    I still need:
    1- What API needed(jar files) I must use to build the client
    2- A sample of source code using java.
    3- detailed guide to communicate with metasolv application using XML API.
    Thanks&Best Regards
    RADOUANE Mohamed

    any help please!!!!

  • Questions on Commands for planning application

    Hi,
    1. Where can i get the information on commands for planning functions?
    2. What is the difference between
    ---Execute planning function simple and -
    Execute planning function
    3. I create planning layout with few buttons
    a. Copy: I clicked on the copy button and can see the data in the layout
    b. Save: Clicked on the save icon, Data saved into the planning cube
    c. Change. : clicked on the change and changed few values and then clicked on SAVE button. Data got saved into my planning cube.
    Now I my requirement is when user open the planning layout, It should only be in display mode. But currently automatically all the keyfigures are in change mode (Is it because in query designer, I checked "Start query in the change mode?)
    When user opens the planning layout, he should run the copy function, then should save the data into the planning cube and then should be allowed to chagne. Change button should be in active until data is saved into the plannigng cube. IS this possible?
    Thanks
    Annie

    Hi Deepthi,
    Thanks for your reply.
    I did as you mentioned and its working as expected.
    User wants something like this
    1. Execute the planning layout.
    2. Click on the copy function
    3. Save the data
    4. Click on the change button so that data can be changed now.
    As per your solution, without have change button its working perfectly. But now i want to have change button on the layout. Initially change button should be disabled. When i save the data then it should get active.
    I did the following things but didnt work
    1. Save button i have two commands
    a. Save data
    b. Set_item_parameters
    2. Change button> disable>set_data_entry_mode.
    After executing the layout. I could copy the data and save it. BUT after saving it change button is not getting active.
    I think i did do something in save button (B). I just mentioned button group but didnt mention the change button. Can you please help me?
    Thanks
    Annie

  • What can I use to view java script in my browser for iPhone

    I can't view JavaScript , what do I use instead. Java's web site says that apple has there own version but I can't find it.

    JavaScript works just fine in iOS.
    Java does not.
    They are not the same thing.

  • Java script question: about GMT time

    Hi,
    i'd like to get a GMT time. using javascript below:
    function setTime(){
    var a = new Date();
    a = a.toGMTString();
    but after output the a's value, i found it's:
    Tue, 28 Aug 2001 04:11:01 UTC
    the format is GMT's format, but the string shown in the end isn't GMT, but UTC. why? and how to change it to
    Tue, 28 Aug 2001 04:11:01 GMT ?

    I would guess that, at least with 1.3.1, you will have to do it yourself.
      java.util.TimeZone t = java.util.TimeZone.getTimeZone("UMT");
      System.out.println("tz=" + t.getDisplayName());
    .The above displays the time zone as GMT, even though UMT was selected.
    Presuming that UMT=GMT (web search revealed some conflicts and my definitive work is not available) then the following should do it.
      java.text.SimpleDateFormat f
          = new java.text.SimpleDateFormat("EEE d, MMM yyyy HH:mm:ss");
      java.util.TimeZone t = java.util.TimeZone.getTimeZone("UMT");
      if (t == null)
        throw new Exception("No UMT zone");
      System.out.println("tz=" + t.getDisplayName());
      f.setTimeZone(t);
      java.util.Date d = new java.util.Date();
      System.out.println("d=" + f.format(d) + " UMT");

  • Hide the mouse cursor for whole application

    I can hide a mouse cursor for my frame with following code:
    int[] pixels = new int[16 * 16];
    Image image = Toolkit.getDefaultToolkit().createImage(new MemoryImageSource(16, 16, pixels, 0, 16));
    Cursor transparentCursor =Toolkit.getDefaultToolkit().createCustomCursor(image, new Point(0, 0), "invisibleCursor");
    myFrame.setCursor(transparentCursor);What is the simple way to set the cursor invisible for all current and future childs of my frame?

    hi,
    write a new class for this: class CursorHandler
      private static Vector frames = new Vector ();
      public static void addFrame (JFrame f)
        frames.add (f);
      public static void setCursor (Cursor s)
        for (int i = 0; i < frames.size (); i++)
          JFrame f = (JFrame) frames.get (i);
          f.SetCursor (s);
    }then just do:CursorHandler.addFrame (this); //for all frames
    CursorHandler.setCursor (new Cursor (Cursor.WAIT_CURSOR)); //in any framegreetings,
    Stijn

  • Java script question

    how to pass an array as parameter from child window to a function in parent window.

    Not sure... but you can try asking here...
    http://www.jguru.com/forums/JavaScript

  • Java or C++ for desktop applications

    Help needed!
    We are a team of 5 programmers in a state agency who deal with federal contracts. About 70% of the applications we build are desktop applications. One of the team members strongly believes that learning C++ instead of Java would strengthen our positions. He strongly believes that Java is not cut out for desktop applications and Java is ideal only for web applications. None of us are very familiar with C++ and so we are intending to take classes in C++. (We are all Visual Foxpro, VB group currently). I have one year of programming with Java (web applications) I still don't want to give up on Java that easily. Well my question is - Is that member in the team right in saying that Java is for web and not for desk top. Can any expert give me a good comparison and so we can move on the right track.
    Thanks for the help in advance!
    suman

    Java can work fine for a desktop application, don't listen to him. Here's what you've got to consider:
    1. Tool set: One strength of java is its strong set of standardized tools. You can probably find great sets of C++ tools too, though, but this is a major factor.
    2. Speed of development: This depends somewhat on the strength and maturity of the toolset you are using, but in general, I think that java is faster to develop for 3 reasons: (1) because it smoothes over some of the inconsistancies between systems - you don't have to get as involved in the gritty details. (2) Java can often tell you exactly what line number your program is bombing, and in every case, it will give you a specific message about what kind of error you had (nullpointer, array out of bounds, etc vs 'Syntax Error') (3) Garbage collection
    3. Familiarity with language: Obviously if you've got to learn something new, that takes time.
    4. App performance: Java is probably going to be bigger, in terms of what has to be installed on the machine in order to run your app, and marginally slower than C++. It will almost certainly require a lot more memory to run well. Before you freak out about it being slower than C++ though, you should consider what kind of performance your app needs. If it's doing 3D rendering, C++ is probably going to be better. If most of it is UI components, and the back end processing is not that intensive, Java could be what you want

  • Help: Java script error popups

    Am working on a new website in my MX. When slecting currently
    in use pages in the toolbar at the bottom of the main window I get
    one of 2 popup messages. Only happens on new site others are OK.
    Messages are either
    "While executing Browse-Back enabled in toolbars, a Java
    script occured"
    or
    "While executing getCurrentValue in Addresses URL, a Java
    script occured"
    Can't for the life of me find what I have done wrong. HELP
    please
    Regards
    Bill

    Troubleshooting JavaScript errors in Dreamweaver
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19105#dat
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "bill nichol" <[email protected]> wrote in
    message
    news:fa1bh6$at4$[email protected]..
    > Am working on a new website in my MX. When slecting
    currently in use pages
    > in
    > the toolbar at the bottom of the main window I get one
    of 2 popup
    > messages.
    > Only happens on new site others are OK.
    > Messages are either
    > "While executing Browse-Back enabled in toolbars, a Java
    script occured"
    > or
    > "While executing getCurrentValue in Addresses URL, a
    Java script occured"
    > Can't for the life of me find what I have done wrong.
    HELP please
    > Regards
    > Bill
    >

  • Regarding usage of java script in adobe forms

    Hello experts,
                    Please any body help me out with what events i should use in java script / formcalc .
    send links for java scripting and formcalc.
    Thanxs,
    adi.

    The reference for Formcalc is available inside you designer installation directory.
    Like this one C:\Program Files\Adobe\Designer 7.1\Documentation\EN\FormCalc.pdf
    There you can also find general LifeCycle Designer Documentation (Designer.chm)
    In this file goto Creating Calculations and Scripts -> Events -> List of events
    As for JavaScript - reference is not in the package, so you have to search a bit. Something is available:
    Like this one: http://partners.adobe.com/public/developer/en/tips/CalcScripts.pdf
    Hope this helps!
    Regards,
    Petr Perstnev

Maybe you are looking for

  • How to install windows 7 in my Mac Mini

    Hello Folks, I am having a Mac Mini (Mid 2010) model. I have Mac OS 10.9 installed. I am trying to install Windows 7 using boot camp. I am getting only 2 options in BootCamp. 1. Download the latest Window Support software from apple. 2. Install Windo

  • Keep javadoc comments in class files

    Hi there, is there a way to keep javadoc comments in classfiles? Reason: Not any company can spread the source for their algorithms, but as customer requests grow to use it with eclipse, code completion and javadoc, there is a need for such "feature"

  • Need to create legal doc - how do I?

    I am migrating from MS Office/Word. How do I create a legal document with a vertical bar/line coming down the middle of the case style to separate the State vs. Defendant section from the case #?

  • Upload photo to webpage

    With iPhoto I can easily upload my photo's to Facebook, Flickr, Picasa (plugin) and MobileMe. But How can I upload photo's to other websites? Every time I try and 'browse' my Mac, I can only find my iPhoto library, but not the actual pictures. Is the

  • Oracle BPA Suite

    I downloaded Oracle BPA suite from Oracle site, installed BPA suite on Win 2003 Server. But when I click create new model and group it goes on starting standard database and error saying "unable to run local business server" What am I doing wrong or