Want to hide or mod FCP 6 Splash Screen

Just want to hide the splash screen on my FCP system. I rent it to indy projects and I want to protect my serial. How can I access the Splash Screen Image? I've been able to mod the splash screen on all the other apps on the rental system but can not find or get to the Splash Screen for Color and FCP 6. I know that a real hacker can find my serial some how but I am not trying to block those geniuses. Just the lazy ones that are willing to go as far as copying or screen grabbing my Splash Screen and or About Screens to get a working serial. I know how to mod the Splash Screen to hide my serial and how to hide the app so the user can't get to the splash screen. I just don't know where the splash screen file is. I've read that it is in the .nib files? I just wanna hide my serial. Don't care if I mod it myself or install an app that does it for me. Any apple people or anyone else know what I can do to protect my product. I've also been told that the splash screen does not display the full serial but it soo totally does. Hey apple, please add the ability to hide this splash screen. Perhaps with it's own password to unlock and show again? OR, make splash screen hiding a universal ability in the OS. That would be sweet! Anyway,... ideas?

Hey all. I have been able to mod the splash screen on all the apps in FCP Studio 2 except for FCP and Color. The other studio apps Splash Screens access a .psd file. The only files I've found in Color that seem like they might be the splash screen files are ft_splash.Isi, ft_splashEDU.Isi, ft_splashNFR.Isi and ft_splashVOL.Isi
How do I open a .Isi file? If I can figure that out I can hide the serial number for Color but it still leaves FCP. Why do apps show the serial on the splash screen at all? What purpose does this serve?

Similar Messages

  • Splash screen behavior

    I'm unclear on the behavior of the "splash" screen in a custom viewer. I understand that for a single issue app, the splash screen image appears every time that you run the app, regardless of where you left off reading the app last.
    But for multi-issue apps, te splash screen seems to "come and go". I've noticed that it appears the first time that you run the app, and then once in a blue moon after that. But it doesn't appear each time you actually read an issue within the app.
    Can anyone tell me what the behavior of the splash screen is supposed to be for a multi-issue app?
    What I really want is the ability to have a splash screen image that ALWAYS appears when you enter any issue in a multi issue app. In other words, I want the reader to see our corporate branding every time they read or re-read each issue of a multi-issue app.
    Second question: is it on the future roadmap to allow animation or video in this "splash" screen image?

    The splash screen appears for 2 or 3 seconds whenever the app needs to be loaded. If the app is stored in the device's memory, the splash screen doesn't appear. On the iPad, you can get double-tap the Home button to display the app tray and then remove the app from the tray (tap and hold, delete). When you start the app again, the splash screen appears. I'm not aware of a way to get the splash screen to appear even if the app is loaded into the device's memory.

  • Main program start before splash screen, help

    hi:
    below is the splash screen code:
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.io.PrintStream;
    import java.util.Random;
    class Splash extends JWindow {
         public Splash(String filename, Frame f, int waitTime) {
              super(f);
              JLabel l = new JLabel(new ImageIcon(filename));
              getContentPane().add(l, BorderLayout.CENTER);
              pack();
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              Dimension labelSize = l.getPreferredSize();
              setLocation(screenSize.width / 2 - (labelSize.width / 2), screenSize.height / 2 - (labelSize.height / 2));
              addMouseListener(new MouseAdapter() {
                   public void mousePressed(MouseEvent e) {
                        setVisible(false);
                        dispose();
              final int pause = waitTime;
              final Runnable closerRunner = new Runnable() {
                   public void run() {
                        setVisible(false);
                        dispose();
              Runnable waitRunner = new Runnable() {
                   public void run() {
                        try {
                             Thread.sleep(pause);
                             SwingUtilities.invokeAndWait(closerRunner);
                        } catch (Exception e) {
                             e.printStackTrace();
                             // can catch InvocationTargetException
                             // can catch InterruptedException
              setVisible(true);
              Thread splashThread = new Thread(waitRunner, "SplashThread");
              splashThread.start();
    below is the constructor that started the splash and the main:
    public static void main(String args[])
    PictureViewer PV = new PictureViewer();
    standaloneApp = true;
    splash Splash sw = new Splash("prestigestetho.gif",null, 5000);
    the splash appear just fine, the problem is that it appears after
    my main program appear first.
    I try to shift the priority of splash, which is sw first and then PV,
    in that case the splash screen appear first then PV, but this time PV
    stay in front of sw makes it totally not viewable.
    is there any method to make splash screen appear first and on the screen you can see the process of main program starting up (for example
    : loading this ...., loading that.....) something like acrobat reader's
    startup screen, and then splash screen disappear and then main program
    pop up.

    okay, I got it, it's under SwingSet2.java the related code is as follow:
    // Used only if swingset is an application
    private JFrame frame = null;
    private JWindow splashScreen = null;
    // The tab pane that holds the demo
    private JTabbedPane tabbedPane = null;
    private JEditorPane demoSrcPane = null;
    private JLabel splashLabel = null;
    * SwingSet2 Constructor
    public SwingSet2(SwingSet2Applet applet, GraphicsConfiguration gc) {
    // Note that the applet may null if this is started as an application
         this.applet = applet;
    // Create Frame here for app-mode so the splash screen can get the
    // GraphicsConfiguration from it in createSplashScreen()
    if (!isApplet()) {
    frame = createFrame(gc);
    // setLayout(new BorderLayout());
         setLayout(new BorderLayout());
    // set the preferred size of the demo
         setPreferredSize(new Dimension(PREFERRED_WIDTH,PREFERRED_HEIGHT));
    // Create and throw the splash screen up. Since this will
    // physically throw bits on the screen, we need to do this
    // on the GUI thread using invokeLater.
    createSplashScreen();
    // do the following on the gui thread
         SwingUtilities.invokeLater(new Runnable() {
         public void run() {
              showSplashScreen();
    initializeDemo();
         preloadFirstDemo();
         // Show the demo and take down the splash screen. Note that
         // we again must do this on the GUI thread using invokeLater.
         SwingUtilities.invokeLater(new Runnable() {
         public void run() {
              showSwingSet2();
              hideSplash();
         // Start loading the rest of the demo in the background
         DemoLoadThread demoLoader = new DemoLoadThread(this);
         demoLoader.start();
    * Show the spash screen while the rest of the demo loads
    public void createSplashScreen() {
         splashLabel = new JLabel(createImageIcon("Splash.jpg", "Splash.accessible_description"));
         if(!isApplet()) {
         splashScreen = new JWindow(getFrame());
         splashScreen.getContentPane().add(splashLabel);
         splashScreen.pack();
         Rectangle screenRect = getFrame().getGraphicsConfiguration().getBounds();
         splashScreen.setLocation(
    screenRect.x + screenRect.width/2 - splashScreen.getSize().width/2,
              screenRect.y + screenRect.height/2 - splashScreen.getSize().height/2);
    public void showSplashScreen() {
         if(!isApplet()) {
         splashScreen.show();
         } else {
         add(splashLabel, BorderLayout.CENTER);
         validate();
         repaint();
    * pop down the spash screen
    public void hideSplash() {
         if(!isApplet()) {
         splashScreen.setVisible(false);
         splashScreen = null;
         splashLabel = null;

  • To display splash screen for certian period of time using threads

    i want to write a program to display splash screen for certian period of time using threads. could some one help me

    If you just want a splash screen: [http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/splashscreen/|http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/splashscreen/]
    If you want to learn threads: [http://java.sun.com/docs/books/tutorial/essential/concurrency/|http://java.sun.com/docs/books/tutorial/essential/concurrency/]

  • Audigy 2 splash screen er

    hello there. i am having trouble loading the audigy 2 splash screen because it crashes even before it loads. i believe the error message says "demoshield runtime error". i want to load it so that i can disable it during system start-up. i have a fresh install of winxp with sp2. i loaded the audigy drivers only (minus all the software) from the original cd then proceeded to update the drivers in the CL auto-update page. the soundcard is fine, no problems and it sounds good. its just that i want to be able to load that splash screen so i could disable it. my audigy 2 is the first version released without the daughter card. any thoughts? thanks!!!

    When my PC boots, after the windows start up tune, a Creative logo is displayed for a second or two and a short tune plays. I wish to stop this from happening.
    Phil

  • How to display several several gif as splash screen continuously?

    like title said, I want to display several gif files as splash screen so that it looks like animation, how to do that? the splash.java that I uses can only display one picture. what I would like to see is something that display several pictures in the same location on screen, one disappear after another show up without gap in between so that the user won't realize that it's several picture together.
    just ignore the PV, I use splash to start my main.
    class Splash extends JWindow {
         public Splash(String filename, Frame f, int waitTime) {
              super(f);
              JLabel l = new JLabel(new ImageIcon(filename));
              getContentPane().add(l, BorderLayout.CENTER);
              pack();
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              Dimension labelSize = l.getPreferredSize();
              setLocation(screenSize.width / 2 - (labelSize.width / 2), screenSize.height / 2 - (labelSize.height / 2));
              addMouseListener(new MouseAdapter() {
                   public void mousePressed(MouseEvent e) {
                        setVisible(false);
                        dispose();
                        PictureViewer PV = new PictureViewer();
              final int pause = waitTime;
              final Runnable closerRunner = new Runnable() {
                   public void run() {
                        setVisible(false);
                        dispose();
                        PictureViewer PV = new PictureViewer();
              Runnable waitRunner = new Runnable() {
                   public void run() {
                        try {
                             Thread.sleep(pause);
                             SwingUtilities.invokeAndWait(closerRunner);
                        } catch (Exception e) {
                             e.printStackTrace();
                             // can catch InvocationTargetException
                             // can catch InterruptedException
              setVisible(true);
              Thread splashThread = new Thread(waitRunner, "SplashThread");
              splashThread.start();

    Here is something like you want I thanks? you just have to add it to your splash screen.it is useing a jframe here
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class ball extends JFrame implements Runnable{
      Image a,b,c,d,e,f,gg,pics;
      boolean go = true;
      int i,j = 0;
      Thread runner;
      Toolkit kit;
    public ball() {
       super();
       setSize(400,400);
       setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
       runner = new Thread(this);
       kit = Toolkit.getDefaultToolkit();
        a = kit.getImage("pic1.gif");
        b = kit.getImage("pic2.gif");
        c = kit.getImage("pic3.gif");
        d = kit.getImage("pic4.gif");
        e = kit.getImage("pic5.gif");
        f = kit.getImage("pic6.gif");
        gg = kit.getImage("pic7.gif");
       runner.start();
       setVisible(true);
      public void run() {
       Thread thisthread = Thread.currentThread();
        while(runner == thisthread) {
         repaint();
         try {
         i++;
         j++;
         if(i > 7){ i = 0;}
          if(i == 0){pics = a;  }
          if(i == 1){pics = b;  }
          if(i == 2){pics = c;  }
          if(i == 3){pics = d;  }
          if(i == 4){pics = e;  }
          if(i == 5){pics = f;  }
          if(i == 6){pics = gg;  }
          if(j > 100){ runner = null;}
         Thread.sleep(50);}
         catch(InterruptedException in) {}
      public void paint(Graphics g) {
       g.drawImage(pics,50,50,100,100,this);
    public static  void main(String[] args) {
        ball be = new ball();
    }good luck

  • Want to hide button in a form if it is in insert mode

    Dear Sir,
    i am just developing some portal database provider forms and reports, i am calling a from
    from one report using , and i just want to hide some button ex: save button in
    the form and display the update button only when i call that form in the query
    mode from the form using 3_d parameter , as both save and update buttons are
    displayed when i call in any mode which i do not want
    scenario :
    1- create a portal db provider report using sql query on some table ex: employees table
    2- include a link in that report to a form created on the same table ex: employees
    with passing of parameter emp_no
    ex: ''||emp_no||''
    3- if the call in the query mode using 3d parameter (&p_arg_names=_emp_no_cond&p_arg_values=%3D) using note 248297.1,
    when clicking on the link in the report on the emp_no the form appears with the
    emp information displayed on the form and both ( save and update ) buttons
    appearing
    all that is working fine
    is it possible to display the update button only without the save button on the form when this call in the query
    mode happens???
    note : i want the save button to be displayed only without the update button if i am running the form in the insert mode ( directly not from
    report call)
    please help ASAP. as it is urgent need
    best regards
    Ahmed Hussein

    Usually, when you use a url like the example below to go to a portal form, the record will be queried up in the form, the Insert (Save) button will be hidden, and only the Update and Reset buttons will be shown. If you follow a url to the form without the "&p_arg_names=_EMPNO_COND&p_arg_values=%3D" in the url, it brings up the form in Insert mode with the Insert (Save), Query, and Reset buttons being shown and the Update button hidden.
    To troubleshoot, double-check the URL in your report to make sure it is passing all the parameters with the correct p_arg_values for moduleid and COLUMNNAME (e.g. EMPNO). Here's an example:
    http://your.portal.com/portal/pls/portal/PORTAL.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=012346789&p_arg_names=COLUMN_NAME&p_arg_values=123&p_arg_names=_COLUMN_NAME_COND&p_arg_values=%3D

  • FCP will not start not even a splash screen

    I updated my 15" MacBook Pro to OSX 10.6.6 and now none of my Final Cut Pro projects will launch there is not even a splash screen that pops up. When I right click the FCP icon in the dock the only option it gives is to force quit. Has anyone heard of this happening in relation to an OS update?

    Okay. I finally got FCS 2 apps and the App Store to coexist, but not without considerable trial and error. There is definitely some bad blood between 10.6.6 and FCS 2 apps. I haven't been able to pinpoint the exact problem since the behavior I experienced with FCP and Compressor was very inconsistent, but I do have some solutions that might work. I don't guarantee they'll all work as they did for me, but it's worth a shot.
    1) Try launching FCP and waiting as long as you can when it hangs. Several times, if I waited long enough, the splash screen would magically appear and everything would start up as normal, even after a full minute or so.
    2) Delete the Final Cut Pro System ID file and re-enter your serial number after launching FCP. Make sure you have your serial number handy before you try this. The System ID file is located in ~/Library/Application Support/ProApps/. Deleting this file allowed the serial dialogue to come up, and after entering the serial, FCP launched successfully.
    3) If you have the time and patience, I highly recommend a totally clean install of 10.6 Snow Leopard and using the 10.6.6 Combo Update to get up to date. I managed to get a working Final Cut Pro and Compressor using this method, even though it was a pain in the ***. Using the Migration Assistant to transfer your files over will not break FCS2 apps. As a precaution, I did not transfer over any of my System Settings with the Migration Assistant. You can find the 10.6.6 Combo update here: http://support.apple.com/kb/DL1349
    From my tests, I think there is some problem in 10.6.6 with how OS X displays custom dialogue boxes, such as the kind that drop down from the menu-bar or FCS's custom dialogue boxes and splash screens. I get hangs in MAS when it tries to display the Apple ID login and FCS upon launching. The behavior is inconsistent, sometimes hanging for 30 seconds, other times indefinitely, and I don't have the technical expertise to understand why. However, I've ruled out a disk error through a clean bill of health from disk utils and running the same OS config from two different hard drives.
    Here's what I did:
    1. Verified internal hard drive and made a SuperDuper backup of my internal hard drive to an external drive.
    2. Wiped internal hard drive, installed 10.6 Snow Leopard, and installed Final Cut Studio from disks.
    3. Installed the 10.6.5 combo update. Used Software Update to get all software up to date, but unchecked the 10.6.6 update.
    Tested FCP: hang on startup.
    4. Deleted the System ID file.
    Tested FCP: asked for serial number, then completed launch.
    Tested FCP again: launched with no problem.
    Tested Compressor: launched with no problem.
    5. I wanted to test the System ID fix on my old setup. I booted to SuperDuper backup (10.6.6 from Software Update) and deleted the System ID file.
    Tested FCP: hang on startup.
    6. Booted to clean-install (now at 10.6.5) and applied the 10.6.6 combo update.
    Tested FCP: hang on startup
    7. Deleted the System ID file.
    Tested FCP: asked for serial number, then completed launch.
    Tested FCP: initially hung on startup. However, after about 30 seconds, it surprisingly launched with no issues.
    Tested FCP: took about 30 seconds to launch (no hang), but eventually displayed splash and launched with no issues.
    Tested Compressor: same as above.
    8. Migrated data from SuperDuper backup to 10.6.6 clean-install on internal drive using Migration Assistant. Excluded "Settings." I also deleted the System ID before testing.
    Tested FCP: asked for serial number, then completed launch.
    Tested Compressor: launched with no problems.
    Tested FCP: launched with no problems.
    9. I then launched the freshly installed Mac App Store. I clicked "install" for Evernote, and the app hung. However, after a moment, it displayed the Apple ID login drop-down from the menu bar. I entered my credentials and Evernote installed.
    Tested FCP: initially hung on startup, then launched without a problem.
    Tested FCP: launched without a problem.
    Tested Compressor: launched without a problem
    10. I decided to try one last little test. I deleted Evernote and launched both the Mac App Store and FCP at the same time. FCP hung on startup. I clicked "install" for Evernote again, and App Store hung. After a moment, though, FCP completed its launch AND the App Store drop-down asking me for my Apple ID appeared at the same time. This interested me, since it seemed to suggest that these were related incidents.
    I have some process samples from activity monitor for when FCP hung, if someone would find them useful, but I can't read them at all. Console showed the following whenever FCP hung:
    objc[192]: Class OutputTexture is implemented in both /Library/Application Support/ProApps/Internal Plug-Ins/ProFX/FxPlugWrapper.plugin/Contents/MacOS/FxPlugWrapper and /Library/Application Support/ProApps/Internal Plug-Ins/ProFX/QCMotionPatch.plugin/Contents/MacOS/QCMotionPatch. One of the two will be used. Which one is undefined. 1/11/11 1:18:36 PM [0x0-0x15015].com.apple.FinalCutPro[192]
    objc[192]: Class objCWrapper is implemented in both /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro and /Applications/Motion.app/Contents/Frameworks/Ozone.framework/Ozone. One of the two will be used. Which one is undefined. 1/11/11 1:18:37 PM [0x0-0x15015].com.apple.FinalCutPro[192]
    objc[202]: Class MIOTimecodeField is implemented in both /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro and /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/ProAppsIntegration.bundle/Contents/MacOS/ProApps Integration. One of the two will be used. Which one is undefined. 1/11/11 1:20:24 PM [0x0-0x18018].com.apple.FinalCutPro[202]
    objc[202]: Class MIOTimecodeFieldTextView is implemented in both /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro and /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/ProAppsIntegration.bundle/Contents/MacOS/ProApps Integration. One of the two will be used. Which one is undefined. 1/11/11 1:20:24 PM [0x0-0x18018].com.apple.FinalCutPro[202]
    objc[202]: Class MIOTimecodeFieldFormatter is implemented in both /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro and /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/ProAppsIntegration.bundle/Contents/MacOS/ProApps Integration. One of the two will be used. Which one is undefined. 1/11/11 1:20:24 PM [0x0-0x18018].com.apple.FinalCutPro[202]
    objc[202]: Class MIOTimecodeSearchFormatter is implemented in both /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro and /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/ProAppsIntegration.bundle/Contents/MacOS/ProApps Integration. One of the two will be used. Which one is undefined. 1/11/11 1:20:24 PM [0x0-0x18018].com.apple.FinalCutPro[202]
    objc[202]: Class ProMetadataQTMDStorage is implemented in both /Applications/Final Cut Pro.app/Contents/MacOS/../Frameworks/MIO.framework/Versions/A/MIO and /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QTM Reader.bundle/Contents/MacOS/QTM Reader. One of the two will be used. Which one is undefined. 1/11/11 1:20:24 PM [0x0-0x18018].com.apple.FinalCutPro[202]
    objc[202]: Class OutputTexture is implemented in both /Library/Application Support/ProApps/Internal Plug-Ins/ProFX/FxPlugWrapper.plugin/Contents/MacOS/FxPlugWrapper and /Library/Application Support/ProApps/Internal Plug-Ins/ProFX/QCMotionPatch.plugin/Contents/MacOS/QCMotionPatch. One of the two will be used. Which one is undefined. 1/11/11 1:20:27 PM [0x0-0x18018].com.apple.FinalCutPro[202]
    objc[202]: Class objCWrapper is implemented in both /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro and /Applications/Motion.app/Contents/Frameworks/Ozone.framework/Ozone. One of the two will be used. Which one is undefined. 1/11/11 1:20:27 PM [0x0-0x18018].com.apple.FinalCutPro[202]

  • Satellite P300 PSPCCE: I want to remove or chang splash screen on startup

    I have Satellite P300 PSPCCE laptop and want to remove or change splash screen on begin of booting laptop.
    Is there a way to do it? My Bios version is v3,40

    this is how it looks my BIOS setup (no options like quite boot, fast boot, etc.)
    Main
    * System Time
    * System Date
    * CPU Type
    * CPU Speed
    * HDD1 model name
    * HDD2 model name
    * Optical Disc driver
    * Power on display
    * Total Memory
    * System Bios version
    * Language
    Advanced
    * Legacy USB Support
    * Core Multri-Processing
    * Execute-Disable bit Capability
    * Intel(R) Virtualization Technology
    * Built-in LAN
    * Wake-up on keybord
    * Wake-up on LAN/Wireless LAN
    * Critical Battery Wake up
    * Pointing devices
    * Illumination LED
    * USB Sleep and charge
    * HDMI-CEC
    * Remote power on/off
    * SATA controler Mode
    Security
    * User password Is
    * Supervisor password is
    * Set user password
    * Set supervisor password
    * HDD1 password
    * Set HDD1 User password
    * HDD2 password
    * Set HDD2 User password
    Boot
    * HDD1
    * HDD2
    * CD/DVD
    * FDD
    * LAN
    Exit
    * Exite saving changes
    * Exit discarding changes
    * Load setup defaults
    * Discard changes
    * Save changes
    Which version of bios, are you having?

  • How to hide read mode navigation in acrobat xi permanantly

    How to hide "Read mode navigation" . In my application i am opening pdf file in light box window where i disable right click to protect download and print pdf file( only View ). but This Read mode navigation is appearing automatically when we put curson on file even if we protect the document. I have purchased Acrobat professional xi to created protected acrobat file by disabling menu tool bar but there is no option to hide readmode navigation. Please let us know how to hide this.
    Thanks,
    Nagendra

    If you want the form "flattened", that is all form fields converted to PDF context, you need to use some JavaScript to flatten the form fields. This will remove all form functionality. It will not prevent editing by Acrobat's text touchup or object tools.
    The "submit" button is used by other users to sent the PDF form data to a central collection site or email address where the sender or provider of the form can collect the submitted data.
    You could also use a digital certificate to sign the form and lock the fields. The signature will also verify that no changes have been made to the PDF since it was signed and one could also see what was changed.

  • Safari always auto-hide bars, always: also in normal screen mode (not full-screen, which is when autohide happens)

    Bookmark bar is auto hidden in fullscreen mode, how to keep same functionality in normal mode out of full-screen?
    In full-screen I just have the main toolbar showing, which is how I want it all the time. This or either make "full-screen" a lot better.

    Hmm, i think i phrased original question badly, i am looking for auto-hide to be featured in normal window mode as well as fullscreen, and whatever else designers and programmers can dream up and not execute poorly.
    I have now disabled all EXTENSIONS and removed all 3rd party bars (google, sharethis, never used nayway;) and as my suspicions confirmed Safari is running much better. I was very suspicious of this when it was added as it seemed like trying to match Firefox, which I also gave up some time ago in place of Chrome as my second browser, although I use Safari for 90%. The extensions i think causes freezing when i had Parallels running a Windows VM at the same time and also other times when not.
    The extensions is a bit stupid in my opinion as any niggling, minor feature of a website should be addresses to the website rather than the browser. Where adverts are concerned, well, just use the web less or more specifically!
    I think I'm fine with Toolbar/URL-search and bookmark bar, its great - simple and not intrusive. I believe EXTENSIONS introduction gave me some sort of weird mental outlook and would urge Apple to be more careful in bringing in different types of features unnecessarily.

  • Want to hide Java Console Window when launching apps on Solaris 9.

    Hi,
    I am working in a Solaris environment with Solaris 9.
    When I launch any of my applications, the java console window appears.
    I want to hide this window.
    The java version that I am using is JDK 1.3.1_01.
    I found this link that shows you how to configure your java settings to hide the console window.
    http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/properties.html
    1. I placed the deployment.config file in the appropriate directory:
         ${deployment.java.home}/lib/deployment.config     (${deployment.java.home} is the location of the jre from which the deployment products are run.
         Deployment products include Java Web Start, Java Plug-in, Java Control Panel...)
         In this file I have the following:
         deployment.system.config=/.java/.deployment/deployment.properties     
         deployment.system.config.mandatory=false
         deployment.console.startup.mode=HIDE 2. The /.java/.deployment/deployment.properties file is not created by default.
    So I created it but still the java console window appeared.
    The above configuration is the system level settings taken from the webpage I specified above.
    I have also tried the user level settings but to no avail.
    Any ideas what I may be doing wrong?
    Rgds,
    Adrian.

    Hi all,
    Thanks Jacky, the Control Panel is the best way to �hide� the console window.
    I have achieved this when using java 1.4.2.
    But when using java 1.3.1_09, the control panel does not give me the option to "Hide console" or "Do not start console� as is the case when using java 1.4.2.
    What it goes give is �Show Java Console� checkbox which I have unchecked and minimises the console on the desktop as a result.
    Perhaps the functionality to hide (ie: not display) the console window is not available in the java 1.3.1_09 version?

  • In ALV report.The user wants to hide specfic fields

    Hi
    In ALV report.The user wants to hide specfic fields  but the user must be able to add these fields to the report:
    can any one give the suggestions

    in reuse alv list display or grid
    i_save  = 'A'.
    now user can choose the layout.
    for hiding
    in fieldcat
    wfieldcat-No_out = 'X'.
    regards
    shiba dutta

  • How do I delete a song from my Itunes library? I follow the instructions and right click on the song and click delete from the drop down menu but, then it asks me if I am sure I want to hide this song in Iclouds? I dont even know what Iclouds is?!?! HELP!

    How do I delete a song from my Itunes music library? I follow the instructions and right click on the song and then select "delete" as specified and my info claims at that point it will ask if I want to send this song to my trash bin, but, instead, when I try to delete the song, I get another window asking "are you sure you want to hide this song in iCloud? I don't even know what iCloud is?!?!? I don't want iCloud and just want to get rid of old songs!!! HELP ME!!!

    Short answer:
    Click Hide Song(s), it is what you wanted to do...
    Long answer:
    iTunes in the Cloud is a feature of your iTunes store account that allows you to redownload or stream your past purchases. When you delete a purchased track that is downloaded to your computer (like the first one shown here) you are asked if you also want to hide the song from iCloud. This would remove it from the computer and also stop it showing up with the iCloud symbol as the other tracks from that album (which are not downloaded) do.
    If a track shows with the cloud symbol you can play (stream) it by double-clicking the title, or click the cloud symbol to download a local copy to your library. If you try to delete one of these tracks you get a slightly different message confirming that you want to hide the track. Clicking hide will remove the listing from the library and any other device that shows your past purchases.
    Should you want to retrieve any item hidden in this way at a later date use Store > View My Account > iTunes in the Cloud > Hidden Purchases > Manage.
    To hide all your previous purchases that are not downloaded to your computer use Edit > Preferences > Store and untick Show iTunes in the Cloud purchases.
    tt2

  • ME22N - Want to hide the unblock button

    Hi,
    Here is a scenario where the client want the user should not have authorization to unblocked the line item in T-CODE ME22N. I tried lot many option but couldnt suceed.
    They are not ready for transaction or screen variant like Z tcode. Is there any ways out to hide or disable the ublock icon button in me22n through authorization object or program.
    Please help me out.
    Cheers
    Arun

    You could use a transaction variant - which would still use ME22N - but you would hide:
    @07\QUnblock/undelet(Pushbutton)
    on:
    Screen values    1211 Program  SAPLMEGUI                      Subscreen   SUB1
    We have successfully implemented it this way, as there is no authorisation object for this.

Maybe you are looking for

  • Ipod frequently freezes !!! What can I do?

    I've had my ipod now just over a year now..and up until Friday July 28 my ipod has been fine but ever since then it hasnt been working. Friday was the first day...nothing unusual it happens (freezes) but no more then a half hour later it froze again.

  • Parent-child tables

    Hi, I have requirement like we have to delete a record called IT_PROG from jobs table.the jobs table have child tables employees,job_history, the employees table act as parent for employees,departments tables.How can i delete all related records usin

  • My email is totally scrambled. wrong headers

    Help.  Even before Mavericks, for about the last six months, SOME of my emails show up with headers mismatched to content. This has caused me to delete important messages because they had spam headers, and created difficulty finding correct content.

  • IPhoto - OSX 10.4.3

    I installed 10.4.3 some time ago but seem to still be running iPhoto 1.1.1 and I cannot find garage band anywhere. Anyone have any ideas about this?

  • VI editor and zones

    I am having an issue after creating a zone from the Solaris 9 sample container. When editing a file using the vi editor it is showing only two thirds of the screen. Also when editing a file the edits are not saved, very strange. Thanks.