Has anyone seen this problem before?

Hi all
For some reason, every time I update my templates, it breaks
all the javascript on the child pages. I have to go in to each
child page individually and re-do the javascript again and then it
works fine. It's all different types - SwapImage,
OpenBrowserWindows, etc. Kind of ruins the ease of a template -
anyone ever see this before? I don't know a whole lot about JS, so
I can't tell what is breaking in the updates. Just thought I'd
throw it out here and see if anyone else had a similar problem.
Thanks, Q

Just create a new page (or use the existing photo page) on your external site and use html to add an iframe sized to the page and link it to the mobilme gallery page. Works for me just fine when showing my gallery from a yahoo site.
like this
<iframe scrolling="off" allowTransparency="true" frameborder="0" scrolling="yes" style="width:100%;height:100%;border:none" src="http://gallery.me.com/your_account_name"></iframe>

Similar Messages

  • I created a website with iWeb but use GoDady for hosting it rather than MobileMe. The images on my Gallery page do not show at all on the external domain but they DO show when seen on MobileMe. Has anyone encountered this problem before? Many thanks!

    Hello al!
    I created a website with iWeb but use GoDady for hosting it rather than MobileMe. The images on my Gallery page do not show at all on the external domain but they DO show when seen on MobileMe. Has anyone encountered this problem before? Many thanks!

    Just create a new page (or use the existing photo page) on your external site and use html to add an iframe sized to the page and link it to the mobilme gallery page. Works for me just fine when showing my gallery from a yahoo site.
    like this
    <iframe scrolling="off" allowTransparency="true" frameborder="0" scrolling="yes" style="width:100%;height:100%;border:none" src="http://gallery.me.com/your_account_name"></iframe>

  • Has anyone seen this problem? :(

    Hey Everyone,
    I picked the new white 30 gb ipod video up yesterday. I opened it set it up and transfered all my vids and music. Now my problem is the clickwheel. It scrolls about 200 (literally songs at a time and is not acurate with the amount of contacct i have with it. I tried resetting, and now restoring. What shouold I do? Has anyone seen this problem yet?
    Anything helps,
    J.Martin

    Sounds like a strange HW problem. Before you return it, I'd try a Restore, resync, and check it. If it STILL does thast, you need to check with Apple Support.

  • Has anyone seen this file before ImageProxies.apdb?

    has anyone seen this file before ImageProxies.apdb
    my iphoto is all messed up.

    Yes I have seen it.
    Thanks for sharing.
    Regards
    TD

  • I am unable to send to an address that I have been using for a long time. All aspects have been investigated but with no solution ,has anyone encountered this problem before?

    I am unable to send to an address that I have been using for a long time. All aspects have been investigated but with no solution ,has anyone encountered this problem before?

    Hi Eric,
    The message seems to totally disappear. It is going to an AOL customer in UK. I changed their address to start with a lowercase letter & the message was returned to me by AOL as undeliverable, I then changed the first letter of the address beck to upper case, the same I have been using for years, but again it disappeared.
    I appreciate any help you can give me. Tks Gord.

  • HT1657 I cannot play my rented movie because itunes cannot locate where the original file, has anyone face this problem before? Where can I find the location of the downloaded movie?

    I cannot play my rented movie because itunes cannot locate where the original file, has anyone face this problem before? Where can I find the location of the downloaded movie?

    What did you use to download it with? iPad? iPhone? Computer?
    If it's an iPad/iPhone, play it using the videos app.
    If on the computer, look on the left side of iTunes in the library under movies.

  • My iPhone will not respond to my touch.  Does anyone know what the problem might be or has anyone had this problem before?

    My iPhone will not respond to my touch.  Does anyone know what the problem might be or has anyone had this problem before?

    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • I'm unable to send an email, i get username or password incorrect despite being correct. Has anyone had this problem before and fixed it?

    I'm unable to send an email, i get username or password incorrect despite being correct. Has anyone had this problem before and fixed it?

    Are you sure the settings are correct? Did you check the outgoing mail server setting? Make sure that your username and password are in there.
    Settings>Mail, Contacts, Calendars>Your email account>Account>Outgoing mail server - tap the server name next to SMTP and check in the primary server and make sure your username and password are entered and correct - even if it says that the password is optional.

  • My iPod is stuck on the startup screen, showing just the apple logo. Has anyone had this problem before? If yes, then how did you solve it?

    My iPod is stuck on the startup screen, showing just the apple logo. Has anyone had this problem before? If yes, then how did you solve it?

    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       

  • My home button does not work. Has anyone had this problem before?

    My home button does not work. Has anyone had this problem before?

    Fix a broken, unresponsive or sticky iPhone Home Button

  • I am trying to start a movie and it will not start. The message is "an error occurred in loading this content". Has anyone had this problem before?

    I am trying to start a movie and it will not start. The message is, "an error occurred loading this content". Has anyone had this message before? Any solution?

    Hi there TonyCashio,
    You may find the troubleshooting steps in the article below helpful.
    Apple TV (2nd and 3rd generation): Troubleshooting playback performance
    http://support.apple.com/kb/TS3623
    -Griff W. 

  • Has anyone seen this prob before (printing)

    I have the following code to print a JTable
    PrinterJob pj=PrinterJob.getPrinterJob();
    PageFormat pf = pj.pageDialog(pj.defaultPage());
    pj.setPrintable(this, pf);
    try{
    pj.print();
    }catch (Exception PrintException) {
    System.out.println(PrintException);
    (I have the rest of the code, ie. the print method, but I didn't think it was revalent to this prob., if you would like to see it I will post it)
    the code works fine, but when the print dialog is brought up, if the user clicks on the "x" at the top right hand of the dialog to close it, the table is printed anyway. Has anyone encountered this before??? If so is there a fix????

    Not 100%. Has a different set of problems but try something like:
           PrinterJob printJob = PrinterJob.getPrinterJob();
            Book book = new Book();
            PageFormat pf = printJob.pageDialog(printJob.defaultPage());
            if (printJob.printDialog()) {
                    this.setWaitCursor();
                    book.append(jTable1, pf, jTable1.getPageCount(jTable1.getGraphics(), pf));
                    printJob.setPageable(book);
                    try {  printJob.print();
                         } catch (Exception PrintException) { PrintException.printStackTrace(); }
                   this.setDefaultCursor();
             }

  • HT4061 I had 483 songs two weeks ago last week it was 479 and now it 476 i keep losing songs ?  has anyone had this problem before ?

    I love my music alot , but two weeks ago I started losing songs three at a time or more......has anyone ever had this problem before?

    Thanks roaminggnome....my teenage son uses this phone and hasn't backed it up...so I don't want to restore it to factory settings just yet. Tried your other suggestions with no joy so if it comes on normally after discharging the battery tonight I'll restore it after backing up all his contacts ,music etc.
    I was curious as to what the fault actually is as no-one seems to have had this one where I've looked on the internet.
    The phone was dropped and subsequently repaired through insurance in Sept 2011 and they issued me with another imea number so the complete internals of the phone must have been replaced by them so I hope that the fault is covered by their normal warranty on work carried out. Thanks for your reply.

  • Has anyone seen this problem with IAC iviews?

    No Service Name Specified
    Your request did not contain a service name. Please provide a service
    name as part of the URL.
    Example URL:
    http://.../scripts/wgate/CreateSO/!
    or...
    Session Already Terminated
    There is currently no session running that might accept this request.
    This situation usually occurs if your session has been closed by the
    Internet Transaction Server and you tried to navigate to a previously
    requested page by selecting BACK in your browser. To proceed you must
    first restart the session as described above.
    © 1996-2003, SAP AG

    Jeremy,
    Did you get any resolution to this problem.
    Thanks,
    Sanjoy.

  • Has anyone seen this exception before when running

    An EXCEPTION_STACK_OVERFLOW exception has been detected in native code outside the VM.
    # Program counter=0x77f0d149
    I'm working on a windowsNT platform. My jdk is 1.3.0. My IDE is jBuilder 6.0.
    It looks like I have to increase my stack size.

    Thanks,
    I am calling jndi code. I found a bug about this problem on the bug site. It's a bug in the jvm for java 1.3.0 It says I have to edit the stack size in the java.exe file with editbin.exe. The problem is, I don't know where to find this file. It's shipped with Visual C++, but we don't use that software here. The link to the bug is below. Thanks for the response.
    http://developer.java.sun.com/developer/bugParade/bugs/4362291.html

Maybe you are looking for