Any way to eliminate quicktime logo appearing as viewer waits for download?

When I make a slideshow in iWeb, it works fine except it puts a huge quicktime logo in a viewer's window until the slideshow downloads. I want to have the slideshow appear and disappear without that distraction. Hope I am being clear.
Is it possible to eliminate the quicktime logo while files are downloading?
thanks, Hugh

iWeb writes page code that uses the QuickTime browser plug-in. It "hides" much of that code inside javascript files.
Javascript (.js) files can be edited in any plain text editor like TextEdit. For an average user they can be quite daunting. The page code you want to look to edit contains:
SHOWLOGO=value (Optional... requires QuickTime 7.1 or later)
SHOWLOGO can either be set to TRUE or FALSE. The default is TRUE. When set to FALSE, this attribute prevents the "Q" logo from displaying in the plug-in when a movie is loading.
Since the default value is true the showlogo tag doesn't even have to be in the javascript code and you would have to enter it by hand (showlogo="false").
A better way to eliminate the big blue Q is to have a "fast start" QuickTime file. Check the QuickTime Discussions pages for more answers.

Similar Messages

  • My iMac starts up and then shuts itself down during the boot up process. it shuys down half way through the Apple logo appearing. any ideas how to fix?

    My iMac starts up and then shuts itself down during the boot up process. it shuys down half way through the Apple logo appearing. any ideas how to fix?

    Hi daveormond,
    I'm sorry to hear you are having these issues with your iMac. If you continue to have issues with your Mac shutting down part way through the boot up process, you may find the troubleshooting steps outlined in the following articles helpful (given your description, it sounds like it could be either issue, or a combination of both):
    Mac OS X: Gray screen appears during startup - Apple Support
    OS X: When your computer spontaneously restarts or displays "Your computer restarted because of a problem." - Apple Support
    Regards,
    - Brenden

  • IS there any way i can make something appear on the external screen or use the camera or microphone?

    IS there any way i can make something appear on the external
    screen or use the camera or microphone?

    Hi. Sorry, but isn´t this something that has been around forever?
    Regards
    Lars @ søgemaskineoptimering

  • Is there any way to make the cursor appear larger in Mac OS X?

    Wow, love my 27" screen, but have trouble finding the cursor! Is there any way to make the cursor appear larger? Perhaps adjustable for fine print capture?
    Thanks!

    System Preferences -> Universal Access -> Mouse -> Cursor size
    However, I prefer using Mouse Locator (free download)
    <http://www.versiontracker.com/dyn/moreinfo/macosx/26157>
    I like this Mouse Locator Graphic
    <http://homepage.mac.com/douglasn/locatorexchange/AD/1/MouseLocator.png>
    I also enjoy my 27" iMac. It is just so nice withing on it.
    Message was edited by: BobHarris

  • I have forgot the security code from my ipad 2. Is there any way to eliminate the code and unlock my ipad?

    I have forgot the security code from my ipad 2. Is there any way to eliminate the code and unlock my ipad?

    Yeah you Can restore it to the last backup you took on the computer if you didn't take any then restore it to facotry default
    If there was any other Way a thier WHO stole your iOS device could access All your personal data using that Way

  • Is there any way to eliminate the locked file function in iWork apps?

    Hi, I recently added Lion to my Mac. Is there any way to eliminate the "locked file" function. I do not use iCloud or Time Machine on my Mac. Thanks. Bob

    I don't use Time Machine either but the option for this function is in the Time Machine options.
    Open System Preferences > Time Machine
    Click 'Options'
    The bottom option should be about auto-saving. To stop applications from locking documents, uncheck the box. To extend the peiod before the document is locked, select the appropriate time from the drop-down menu.
    Hope that;s what you wanted!

  • I have 2 screens at work and 1 screen at home. I was working on a power point presentation on 2 monitors. My window is now "stuck" when I Power Point. I cannot drag it back to a display or find any way to move it back into my view. Help!!!

    I have 2 screens at work and 1 screen at home. I was working on a power point presentation on 2 monitors with the presentation on monitor externally hooked up to my computer. My window is now "stuck" when I open Power Point. I cannot drag it back to a display or find any way to move it back into my view. Help!!!

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • Is there any way to force iPhoto to present faces by folder for identification rather than randomly?  Would provide better context for identification especially if a huge number of images is involved.

    Before I commit the time and energy required to load and tag faces in 25,000 images within iPhoto, I need some questions answered;
    Is there any way to force iPhoto to present faces by folder for tagging rather than randomly?  When so many images need tagging, over many years, the context of a folder helps with the identification. The work around is to load the images into iPhoto one folder at a time and do the tagging then.
    How do I get iPhoto to present the tagged faces by last name rather than first name? When so many faces will be identified, it is much easier to find people by surname, particularly when I share the library within the family. The work around is to enter names as last name and first name.  Being able to toggle the sort is much more desireable.
    Is there a way to export a portion of the library including faces?  I want to pass on portions of this huge 125 GB library to my family members.
    Since my family members will need an Apple computer to view the images and faces, they will likely have their own photo library.  So is there any way to combine two libraries and merge the faces?
    About 2/3 of my images have been scanned, so the date of creation is the scanned date rather than the date the photo was taken.  Will this mess up any sequencing or the retrieval of faces?

    If I want to carve off part of a library, I presume the way to do this is to make a copy of the library using PLM then go into iPhoto and delete what I don't want.  The result is the carved off portion.
    You don't need Library Manager to delete the portion you don't want.
    As a general rule: when deleting photos do them in batches of about 100 at a time. iPhoto can baulk at trashing large numbers at one go.
    If I want to merge two libraries, PLM implies that it will do this but will the Faces be merged too?
    I believe so.

  • Are there any ways to get sequence number other than getting it for each re

    are there any ways to get sequence number other than getting it for each record

    CACHE is the number of values Oracle stores in memory. So the first call to NEXTVAL Oracle grabs x numbers; subsequent calls to NEXTVAL are served from memory until they're all gone and them another bunch is grabbed. The attached sql*plus output demonstrates this behaviour.
    Note that normally unused numbers in the cache are returned to the data dictionary but in exceptional circumstances (DB crash) they may be lost.
    Cheers, APC
    SQL> create sequence seq cache 3
      2  /
    Sequence created.
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              1
    SQL> select seq.nextval from dual
      2  /
       NEXTVAL
             1
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              4
    SQL> select seq.nextval from dual
      2  /
       NEXTVAL
             2
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              4
    SQL> select seq.nextval from dual
      2  /
       NEXTVAL
             3
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              4
    SQL> select seq.nextval from dual
      2  /
       NEXTVAL
             4
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              7
    SQL>

  • I do not like inbox search and want to use google but i cannot find any way to remove inbox--in fact when i search for it to remove you would think it is not there--but it is and i cant get it off. anyone know how?

    Question
    i do not like inbox search and want to use google but i cannot find any way to remove inbox--in fact when i search for it to remove you would think it is not there--but it is and i cant get it off. anyone know how? edit
    Details

    What you should see on a restart is a black screen followed by a screen with the Apple (at which point you let go of the two buttons). There is no progress bar, just the Apple. The Apple will stay there for 15 seconds or so, then the "Slide to Unlock" screen will redisplay.
    But, I don't think the reset will fix it for you. I just tested it, and it comes back on with the zoom still on. The only way to get it to zoom out is the tapping with the 3 fingers.
    I said to double-tap....MY BAD! You need to triple-tap with three fingers!
    Try that and see if it will display the zoom menu for you, or if it will zoom back out.
    Cheers,
    GB

  • Is there any way to disable right click and drag and drop for photos on iweb?

    Re: protecting photos when using iweb as your web designer...
    Is there any way to disable right click and drag and drop for photos using iweb?  I have seen tutorials about creating a text box around each image - but is there a better way? 

    However, there is no way you can prevent someone from making a screenshot of the image as it is displayed on the screen no matter what application you use to create the web page.
    You can add a watermark to dissuade the casual "thief" but those who are serious about stealing the photo for their own use can remove the watermark with some effort.
    OT

  • Is there any way i can let another iphone user view my recieved and sent messages?

    Is there any way i can let another iphone user view my recieved and sent messages?

    Of course. Just show them your phone screen, and let them browse through your messages - the same way you would do so yourself.

  • Is there any way to remove profile names on the itunes wifisync for iphone4?

    is there any way to remove profile names on the itunes wifisync for iphone4?

    selenafrommelbourne wrote:
    a little dumb at times so please forgive me
    do u mean the better halfs phone ... restore his phone on itunes and then set up a new account for him 
    since that (plus one other minor incident) has happened he will not let me touch his phone, so if i can be detailed from experienced people, then he may feel confident and let me do this 
    sounds like a nice guy! if he won't let you touch his phone this may work out better for you...tell him to handle the problem himself.

  • I put my iPod charging, but it wont charge. The Apple logo appears on the screen for five seconds and then it goes off again. Afterwards, it does it again and again and again. I can leave it 1 hour or day charging and it will be doing this the whole time.

    I put my iPod charging, but it wont charge. The Apple logo appears on the screen for five seconds and then it goes off again. Afterwards, it does it again and again and again. I can leave it 1 hour or day charging and it will be doing this the whole time. What should i do????????????????????????????????????????????????????????????????????????????? /

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar                              
    and
    Not Charge
    - See:      
    iPod touch: Hardware troubleshooting
    - Try another cable. Some 5G iPods were shipped with Lightning cable that were either initially defective or failed after short use.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar                          

  • When i attempt to download QuickTime, I get the "thank you for downloading" page and no download. What's next?

    When i attempt to download QuickTime, I get the "thank you
    for downloading" page and no download.
    What's next?

    I use a PC and had the same issue with Firefox, but IE7 worked for me, FYI....

Maybe you are looking for

  • Ipod Will No Longer Turn On

    I'm having a issue with my Ipod Classic. It has worked fine since I purchased it but all of a sudden it simply won't turn on at all. I've tried all the methods of rebooting it and charging it but it simply will not do anything. It was not dropped or

  • Can't use iTunes with Windows Vista Home Premium

    I have deleted and reinstalled so many times, so i tried the compatibility settings and set it to work for Windows XP(Service Pack 2) with 256 colours. It works, but it messes up all my colours. Help, please. (My brother got iTunes working on his Win

  • Cs Live/CS review not accessible (Flash 13 beta maybe?)

    I can not access CS Live or CS review from InDesign. It says 'Server problem'. I can however use the Folio Builder Panel without problem with this account from InDesign.. I have the Flash 13 beta installed could that interfere?

  • How to change the particular column background  color in jTable?

    I am woking with a project, in which I am using a jTable. Then How to change the particular column background color in jTable?

  • Migration of Transaction Data from SRM 4.0 to SRM 7.0

    Hi We are upgrading from SRM 4.0 to SRM7.0. In our old release, many Shopping Cart woul be in the status of Approved, Awaiting Approval and Held. When the same data is migrated to the SRM 7.0 Productive system, how should we take care of the same. We