Custom Loading Screen in Applet

Hello,
in Flex/Flash the swf File contains 2 parts. First the loading Screen and second the programm.
So it loaded the loading Screen and than contains with the loading of the programm.
You can override the common Loading Screen and add some company specific varaint. The is very usefull, cause many company have a own CI.
So it is possible to change the Loading Screen in Java FX Applets?
Thanks for you Answer.
Regards,
Rookee

See [Joshua Marinacci's Blog: A Better Applet Experience, Part 1: a custom loading screen|http://weblogs.java.net/blog/joshy/archive/2008/08/a_better_applet.html] article.
But I fear we are currently limited to an image, fixed or animated (Gif). We cannot do something fancy like a lightweight FX program showing a more or less complex animation while the heavyweight applet loads in background (and provides progress information...).

Similar Messages

  • Custom Loading screen for blu-ray

    I'm fairly new to this so my experience level is low. However, I have no problem creating my own static menus and burning great quality Blu-Ray disks. I'm just now learning how to create active menu content and would like to implement the custom "loading..." screens that I see on many Blu-Ray movies. So, what is the proper way of implementing such a feature using the toolset available with Adobe Production Premium CS5.5? What is the correct terminology for this screen? Are there any free tutorials on YouTube describing this? Is this simply a flash menu load screen?
    Thanks,
    Tony

    The lack of response actually indicates that none of us know.

  • Loading screen above Applet from an iframe

    Hi,
    i am running this code for loading screen which is transparent
    http://www.andrewpeace.com/loading-screen.html
    now i am placing an iframe
    <p><iframe src="http://statlab0.fon.bg.ac.yu/eng/eng/apletieng/buffon/Coin.html" id="appletFrame"></iframe></p>
    so that i may also come behind the loading screen. But the applet is coming in front of the loading screen and not goin behind the screen. can anyone suggest a way to let the applet also to be behind the loading screen.
    the above html had the javascript code for loading screen.
    if anyone can help out today :(
    i am in urgent need.

    No, but maybe a trace could shed some light on the problem:
    To turn the full trace on (windows) you can start the java console, to be found here:
    C:\Program Files\Java\j2re1.4...\bin\jpicpl32.exe
    In the advanced tab you can fill in something for runtime parameters fill in this:
    -Djavaplugin.trace=true -Djavaplugin.trace.option=basic|net|security|ext|liveconnect
    if you cannot start the java console check here:
    C:\Documents and Settings\userName\Application Data\Sun\Java\Deployment\deployment.properties
    I think for linux this is somewhere in youruserdir/java (hidden directory)
    add or change the following line:
    javaplugin.jre.params=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
    for 1.5:
    deployment.javapi.jre.1.5.0_03.args=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
    The trace is here:
    C:\Documents and Settings\your user\Application Data\Sun\Java\Deployment\log\plugin...log
    I think for linux this is somewhere in youruserdir/java (hidden directory)
    Print out the full trace of the exception:
    try{...}catch(Exception e){e.printStackTrace();}

  • Java applet (pre)loading screen

    Hello everyone,
    As a java programmer I was wondering if it is possible to customize the java loading screen (Which runs before opening a java applet). It doesn't look really nice when a customised applet is running, but the viewers first get the orange java loading object.
    Does anyone know if this is possible?
    Thanks in advance.

    I never tried, but there seems to be an applet image parameter like in
    this example I found on the web:
    <APPLET code=Wave.class width=200 height=80>
         <PARAM name=image value="email.gif">
         <PARAM name=mailto value="[email protected]">
    </APPLET>I also read that for best effects, the image size should match the applet size.

  • Applet loading screen

    Hi guys,
    I have searched the forums but can't find a suitable solution to my problem.
    I am using the following Applet to hide the standard java loading screen. My main applet consists of 3 jar files which are all about 300k. I would like to present a progress bar to the user while they download but can't find anyway to get this information. For example, number of bytes to download and the amount downloaded.
    public class AppletLoader extends Applet implements Runnable, AppletStub {
        //the loading thread
        private Thread _thread;
        //the applet to load name
        private String _appletName;
        //the applet to load
        private Applet _applet;
        //the loading screen
        private LoadingScreen _screen;
        //the loaded flag
        private boolean _loaded;
        public void init() {
            initApplet();
            //install the look and feel
            try {
                ChessLookAndFeel.install();
            } catch (Exception exp) {
                //print the error
                ExceptionUtil.printException(exp);
            //create the screen
            _screen = new LoadingScreen(this);
            //get the name of the applet to load
            _appletName = getParameter("applet");
            add(_screen);
            //if there isn't one, print a message
            if (_appletName == null) {
                _screen.setErrorMessage("No applet to load.");
            } else {
                _screen.setLoadingMessage("Please wait - loading Titan Chess");
        public void initApplet() {
            setSize(new Dimension(906, 500));
        public void run() {
            //if there's no applet to load, don't bother loading it!
            if (_appletName == null) return;
            try {
                //get the class for the applet we want
                Class applet_class = Class.forName(_appletName);
                //create an instance of the applet
                _applet = (Applet)applet_class.newInstance();
                //set the applet's stub - this will allow the real applet to use
                //this applet's document base, code base, and applet context.
                _applet.setStub(this);
                //remove the old message and put the applet up
                remove(_screen);
                setLayout(new GridLayout(1, 0));
                //add the real applet as a child component
                add(_applet);
                //crank up the real applet
                _applet.init();
                _applet.start();
            } catch (Exception exp) {
                //print the error
                ExceptionUtil.printException(exp);
                //if we got an error anywhere, print it
                _screen.setErrorMessage("Error loading Titan Chess");
            _loaded = true;
            //make sure the screen layout is redrawn
            validate();
        public void start() {
            _thread = new Thread(this);
            _thread.start();
        //the following methods delegate applet methods to the loaded applet.
        public void stop() {
            if (_loaded) {
                _applet.stop();
            } else {
                _thread.stop();
                _thread = null;
        public void destroy() {
            if (_loaded) {
                _applet.destroy();
        public void appletResize(int width, int height) {       
            //resize the applet
            resize(width, height);
    }I have seen examples where they load each class but my applet is packaged in jar files (which download much quicker and are signable).
    Any ideas?

    to do that, make the VERY first thing you do in init() be to create a BufferedImage and draw your message on it. Then make your paint message look like this:public void paint(Graphics g) {
         g.drawImage(yourImageName, 0, 0, null);
    //and
    public void update(Graphics g) {
         paint(g);
    }Then call update(getGraphics() and that will put it on the screen, and it will redraw itself even if someone messes with the screen or hides it then comes back. You'll also probably want to have a flag "ifLoading" or something to check to see if paint() should actually do anything, because if you're not loading that stuff, you probably have a game loop running during which you're probably trying to keep a constant framerate. If you're doing that, you don't want paint() to do anything because it'll get in your way.

  • OS X 10.5.6, Safari 3.2.1 hangs when second applet loaded is signed applet

    Dear Forum,
    I've been investigating a customer's problem. She is trying to use our
    VoIP applet, but it continuously freezes Safari when the Trust dialog shows.
    A "Force Quit" is necessary.
    I managed to reproduce the problem consistently on
    - PowerMac7 OS X 10.5.6 (Build 9G55)
    - Architecture: ppc
    - Safari 3.2.1 (5525.27.1)
    - JVM 1.5.0_16 from Apple
    The problem is persistent when:
    - the signed applet is loaded as second applet in the browser
    - the signed applet is cached by the JVM
    Our customer uses:
    - Mac Book ProOS X 10.5.6
    - Safari 3.2.1
    - JVM 1.5.0_16 from Apple
    This problem does not occur on:
    - Mac OS X 10.4.11 (Mac Powerbook G4)
    - Safari 3.2.1 (4525.27.1)
    - JVM 1.5.0_16 from Apple
    and not on:
    - MacBook Air, OS X 10.5.6, 1.6 Ghz Intel core 2 duo
    - Safari Version 3.2.1 (5525.27.1)
    - JVM 1.5.0_16 from Apple
    Steps to reproduce the problem:
    Launch Safari.
    In (first) page/tab go to
    http://www.javatester.org/version.html
    (this uses a non signed applet)
    Open a second tab. Here go to:
    http://ukapi.phonefromhere.com/talk/vtop2.xsql?key=01612884242
    This is a signed applet that will ring our office over VoIP.
    Click the "Trust" button (signed by PhoneFromHere).
    As long as this applet isn't cached by the JVM this will work, so
    the first time you will succeed.
    Now Quit Safari (not "just" close all Safari windows, but a "real" quit) and repeat the exercise.
    The second (and next) time this will fail (only if the signed applet is loaded as second, so the order is important)! This keeps failing until I go (back) to the Java Preference window (via Finder) and explicitly delete the cached files.
    The URL will work when loaded first (cached or not).
    Some diagnostics, that might help:
    I configured the Java Preference window to "enable Logging, Tracing and Show applet livecycle exceptions".
    When the applet fails to load (and Safari freezes/hangs), the last few records of the plugin150.log are:
    <message>basic: Loading http://ukapi.phonefromhere.com/talk/lib/pfh.jar from cache
    <message>basic: Reading cached JAR file from JRE 1.5 release
    <message>basic: Certificates for http://ukapi.phonefromhere.com/talk/lib/pfh.jar is read from JAR cache
    <message>security: Loading certificates from Deployment session certificate store
    <message>security: Loaded certificates from Deployment session certificate store
    <message>security: Checking if certificate is in Deployment session certificate store
    (and then nothing)
    whereas when it succeeds to load, as soon as I click the "Trust" button, it's say:
    <message>security: User has granted the priviledges to the code for this session only
    The Report is a bit too long to port, I'll include the same text above when sending it.
    Model: PowerMac7,2, BootROM 5.1.3f0, 2 processors, PowerPC 970 (2.2), 1.8 GHz, 2 GB
    To cut a long story short? Is this a know bug (I couldn't find anything, but you never know)? Does anyone have any ideas how to fix this?
    Thanks, Birgit

    I have the same issue now after downgrading my Flash plugin. I downgraded from 10 to 9 latest because I like using Camino and for some reason Flash 10 doesn't play nice with Camino. But all of a sudden as I use Camino 2b2 for everyday and Safari 3.2 for banking and such, the browser hangs requiring a forced quit when I close it. I've re-installed the browser twice now with all the previous folders, and preferences erased and caches emptied. I even when to re-installing 10.5.6 and it still crashes, it's odd. Maybe 10.5.7 will address this.

  • My MacBook Pro is stuck on the loading screen and sounds as if its about the take off?!

    Hi everyone. About 3 hours ago my laptop suddenly became very unresponsive and began freezing a lot. I cleared the cookies on Firefox, but the problem carried on so I tried rebooting. Now it has been stuck on the loading screen for about half an hour, sounding like a rocket ready to take off.. I brought it second hand and I don't have an installation CD, at least if I do it's not here at uni with me anyway.. Any ideas?! Thanks

    Not knowing what your os is very difficult regarding offering troubleshooting solutions.  Most if not all the system discs are machine specific. 
    Replacement System Discs can be obtained from Apple's Customer Support - US (800) 767-2775 for a nominal fee. You'll need to have the model and serial number of your Mac available. 
    If you're not in the US, you may need to go through the regional Apple Store that serves your location to find the contact number - http://store.apple.com/Catalog/US/Images/intlstoreroutingpage.html
    Mac OS X versions (builds) for computers 

  • CS4 Master Suite Upgrade = Photoshop STONEHENGE loading screen

    This evening I purchased the upgrade to CS4 for my CS3 Master Suite. All applications installed without error however Photoshop loads with the beta Stonehenge loading screen. How is this possible? The version number is listed as: 11.0x20080826. At no time did I install beta software--the only existing install was CS3. Any help would be greatly appreciated. Thanks.
    Dave

    i what you need to tell them is pretty much what the original poster said.
    Well, as we can see from Ryan's post they are not even aware of the issue. There should be a specific issue that this is called that all of Adobe support has been made aware of so we all do not have to go through 10 levels of support and spend hours on the phone. Please escalate this issue with the powers that are at Adobe and treat your customers with more respect.
    Instead of taking the attitude that the customer is lucky that anyone from Adobe is paying attention to the user forums, a much better way to handle this situation would be for Adobe to initiate the contact with the customers who they know are affected. So far, the only people here with the issue are people who downloaded the master collection from the Adobe store. Adobe has e-mail addresses for all of these people. Why not be proactive and send them an e-mail instead of having everyone call up Adobe and ask "Am I supposed to have a Stonehenge Screen when I start photoshop CS4?" I didn't even know whether or not this was a real issue. And I am sure that there are many customers who have this problem but are unaware of it and won't come to this thread to find out.
    Adobe management can either address this problem as if they have some respect for their customers or they can just wait for people to complain.

  • Loading screen stuck

    my droid want get passed the loading screen what do i need to do

    Try piping the battery for a couple minutes and trying again. Past that you best bet is a phone call to customer service.
    jason

  • Grey loading screen

    Ive programmed some applets and when I test it in the applet viewer or using the microsft virtual machine my preloading screen displays, but when i run it through using the sun virtual maching i get the grey loading screen with the bar..............does anyone know if there is a way of disabling this so that my loading screen displays instead of this

    This will load the Poker class, and invoke the default Constructor.
    Place this in your class that extends Applet, and ensure there are no references between the Applet, and the Poker game related classes.
    ClassLoader cl = ClassLoader.getSystemClassLoader();
    Class c = cl.loadClass("Poker",true);
    Constructor [] cons = c.getConstructors(); //I could probably use c.getConstructor(null) here instead, but I wasn't sure, so I didn't bother.
    cons[0].newInstance(null);//I assumed there is only 1 constructor, and it takes no parametersnote.
    I don't know if Applets are allowed to load Classes through reflection/ClassLoader, so you'll have to test it.

  • [Resolved] Stuck on "Grub Loading" Screen.

    Hello everyone!
    I have been attempting to set up a dual boot Windows 8/Arch Linux system.
    I have installed Windows 8 and Arch Linux, and I have correctly set up and configured Grub.
    I have been having a very puzzling problem however, which stems from my BIOS settings.
    Whenever I set my boot sequence to "Hard Disk, CDROM" and attempt to boot, my system hangs on the "Grub Loading" screen indefinitely.
    However, when I set the boot sequence to "CDROM, Hard Disk", the system goes to the "Loading Operating System ..." screen, scans the CDROM for bootable partitions, fails to find them (Presumably. No actual error message it outputted), then successfully loads Grub.
    I have searched the web and the wiki for an answer, but because all of my queries are interpreted as changing the boot order of the OSes listed in Grub, I have been unable to find an answer.
    While this is not a critical problem, I wish to have it configured as "Hard Disk, CDROM" because otherwise it adds about 10-15 seconds to the boot time as it has to scan the CDROM before proceeding.
    Can anyone help me with this problem?
    ADDITIONAL INFO:
    I am using AHCI, with three hard drives. Both operating systems are installed to the first one (an SSD), with:
    /dev/sda1 - SYSTEM_RESERVED
    /dev/sda2 - Windows 8
    /dev/sda3 - /boot
    /dev/sda4 - Extended partition (following partitions belong to /dev/sda4)
    /dev/sda5 - /
    /dev/sda6 - /var
    /dev/sda7 - /home
    The other two hard drives simply store data.
    Last edited by indiv0 (2013-12-02 06:44:21)

    Commands I used:
    pacman -S grub-bios
    grub-mkconfig -o /boot/grub/grub.cfg
    modprobe dm-mod
    grub-install --target=i386-pc --recheck --debug /dev/sda
    mkdir -p /boot/grub/locale
    cp /usr/share/locale/en\@quot/LC_MESSAGES/grub.mo /boot/grub/locale/en.mo
    Yes, I am booting in legacy BIOS mode using grub-bios.
    fdisk output:
    Disk /dev/sda: 256.1 GB, 256060514304 bytes, 500118192 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0xb61a40eb
    Device Boot Start End Blocks Id System
    /dev/sda1 2048 718847 358400 7 HPFS/NTFS/exFAT
    /dev/sda2 718848 163842047 81561600 7 HPFS/NTFS/exFAT
    /dev/sda3 * 163842048 164366335 262144 83 Linux
    /dev/sda4 164366336 500117503 167875584 5 Extended
    /dev/sda5 164368384 205328383 20480000 83 Linux
    /dev/sda6 205330432 246290431 20480000 83 Linux
    /dev/sda7 246292480 500117503 126912512 83 Linux
    grub.cfg
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    set default="0"
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 3ec2db7b-ff67-4aa1-8202-daf71513beea
    else
    search --no-floppy --fs-uuid --set=root 3ec2db7b-ff67-4aa1-8202-daf71513beea
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    set timeout=5
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch GNU/Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-3ec2db7b-ff67-4aa1-8202-daf71513beea' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 e1698dc0-becc-4ed7-a446-2bd79b337946
    else
    search --no-floppy --fs-uuid --set=root e1698dc0-becc-4ed7-a446-2bd79b337946
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /vmlinuz-linux root=UUID=3ec2db7b-ff67-4aa1-8202-daf71513beea ro quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux.img
    menuentry 'Arch GNU/Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-fallback-3ec2db7b-ff67-4aa1-8202-daf71513beea' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 e1698dc0-becc-4ed7-a446-2bd79b337946
    else
    search --no-floppy --fs-uuid --set=root e1698dc0-becc-4ed7-a446-2bd79b337946
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /vmlinuz-linux root=UUID=3ec2db7b-ff67-4aa1-8202-daf71513beea ro quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux-fallback.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/20_memtest86+ ###
    ### END /etc/grub.d/20_memtest86+ ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    menuentry 'Windows 8 (loader) (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-88A85381A8536D26' {
    insmod part_msdos
    insmod ntfs
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 88A85381A8536D26
    else
    search --no-floppy --fs-uuid --set=root 88A85381A8536D26
    fi
    drivemap -s (hd0) ${root}
    chainloader +1
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    Sorry for not including grub-related information. I just thought that it wouldn't be needed considering grub works fine (sees Arch and Windows 8) when the bios boot order is correct, and within VirtualBox (Win 8 host, Arch guest) it also works fine.

  • Unable to boot Z10, stuck on loading screen at 99% after a few hours.

    Hi, I am unable to boot Z10, stuck on loading screen at 99% after a few hours. I did not try to update, nor load any other OS versions.  Running a Bell Canada 10.1.  Tried to pull battery, leave phone boot for 5 hours, still stuck on 99%.  I tried plugging it in BB Link and computer will not recognize it.

    dazedandconfused wrote:
    Every option Im seeing is telling me Im going to lose my data... is this true? I know with other phones ppl are able to mount the device as if it were a hard drive and pull content from it... is this not possible with the Z10? Thanks...
    I understand you are frustrated and seeking solutions, but please don't double and triple post your inquiry.
    I've answered your thread already, here: 
    Re: Z10 stuck on loading logo on starting up
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • My White Macbook is stuck at the loading screen, and disk utility, safe mode doesn't work either. What should I do?

    I went on vacation a few days ago and in El Salvador, they have this mobile broadband sticks. Well, I was using one until it gave me a network error. After that, it shut down my computer entirely. The first time it happened, I didn't think much of it. I took the battery out and put it back in for it could work. It happened another two times, and after the third time, my MacBook stays stuck at the loading screen, and it will take 5-10 minutes on that screen, before it shuts down, or it wouldn't turn on at all. I've tried booting into safe mode, but it appears to not boot into it. I've tried resetting the Pram, and using disk utility, but that still won't work. I don't know what else to do to make it boot into  OS X  Lion.
    I'm an AP student, and the majority of my work is in that computer, and it is very important! What can I do? Not only that, but I enter school in a few weeks and I need the AP work by the time I enter.
    What can I do? Can someone help?
    Thanks

    Reinstalling Lion Without the Installer
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alterhatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion and click on the Continue button.
    Note: You can also re-download the Lion installer by opening the App Store application. Hold down the OPTION key and click on the Purchases icon in the toolbar. You should now see an active Install button to the right of your Lion purchase entry. There are situations in which this will not work. For example, if you are already booted into the Lion you originally purchased with your Apple ID or if an instance of the Lion installer is located anywhere on your computer.

  • Since updating to I.O.S7 on my ipad2 all i get when i turn it on is a loading screen with a picture of a charger going into an ITUNES sign? HELP nothing will work not interactive at all?

    all i get when i turn it on is a loading screen with a picture of a charger going into an ITUNES sign? HELP nothing will work not interactive at all.aince updating to I.O.S7.0.2???
    What should i do currently have it on charge for several hours not done a thing and have been locking and unlocking and resetting

    Please see: http://support.apple.com/kb/HT1808 for further info.  It sounds like you are already in Recovery mode so if the image in Step 4 is the one you see, skip to Step 5.
    Regards,
    Steve

  • Unable to use free version regardless of browser on any machine. I login with adobe id but then the loading screen just hangs.

    Unable to use free version regardless of browser on any machine. I login with adobe id but then the loading screen just hangs. can't get any further - Tried all suggestions like clearing browser caches but no change.
    Got a couple of projects i wanted to try this on and if the software works I will probably take a subscription but considering this isn't working at all will look elsewhere.
    Also - adobe live chat support is useless.

    Hi,
    please share the Adobe ID that you are using with DL-AdobeStory-support<at>adobe<dot>com and we will investigate the issue.
    Thanks
    Aurobinda

Maybe you are looking for

  • Connecting to flat screen tv

    I am trying to connect my Macbook Pro to my LG 32in Flat screen using an HDMI (Belkin) cable. Done everything supposed to do including turning off macbook and tv during connection. when all said and done and correct connections made (HDMI 1 port on T

  • Arranging videos by artist with iTunes 7

    Can anyone figure out how to arrange your movies/TV shows by artist in the new iTunes? With the last version I had all of my videos arranged by the "artist" as there were several episodes of the same programme. Now everything is simply arranged alpha

  • Error while reversing View in standard mode

    Hi, I am getting below error while reversing a view in teradata in standard mode, the technology of the driver used does not support reverse engineering. java.lang.NullPointerException      at com.sunopsis.dwg.reverse.Reverse.a(Reverse.java)      at

  • MRP-Rescheduling Horizon

    Hi Experts, Could u please, explain what is Rescheduling horizon (OMDQ)? In OMDQ , if I change planning horizon to 999 days from 100 days.What will be the effects of it? Thanks in advance Regards, jay

  • Scheduling procedure with remote db = logon denied

    I´m having two DBs (db1 and db2) which are connected by a database link and a non-dba user "xyz" in both DBs. I´m starting a procedure in db1, which catches data from a table in db2 and combines it with data from db1 - it works perfectly fine. Now I