How can i disable "browser-auto-load" for different iframe-contents in a composite widget?

Hey there,
i´ve got a lil topic going on with a Website (One-Site-Layout with anchors), created with muse
i putted 20 iframes (each one routed to its own trigger) in a composite widget. Everything is working perfect for me and the users, but :
The deliverer of the iframe-contents (pretty big picture galeries) told me, his server crashes, because every single time, someome enter the Website, the browser i loading every single iframe-content in this widget automatically > so the traffic is way to large, and i need a solution that simply load every single content after a click on the right trigger, not before.
thank you so much!
Werner
Gonna let you see the the "trouble-area" http://werner-ag.com/#produkte

That is not possible.
You can look at this extension:
*https://addons.mozilla.org/firefox/addon/toggle-mixed-active-content/
*https://developer.mozilla.org/Security/MixedContent

Similar Messages

  • How can I set up auto respond for email

    How can I set up auto respond for email?

    Hey there jimmac169,
    It sounds like you want to have the Mail app automatically reply to emails that come in. You can do this in the app itself, but in order for the function to work, Mail needs to be open. Take a look at this info from the following article:
    Mail (Yosemite): Reply to, forward, or redirect messages
    Automatically reply to or forward messages
    Mail must be open before it can automatically forward or reply to messages. If you want to send automatic replies when Mail isn’t open—like when you’re on vacation—check with the provider of your email account. 
    Choose Mail > Preferences, then click Rules.
    Click Add Rule, then type a name for the rule.
    Indicate whether any or all of the conditions must be true for the rule to be applied.
    Set the conditions that determine which messages to automatically reply to or forward.
    Choose options from the “Perform the following actions” pop-up menu.
    Forward messages: Choose Forward Message from the first pop-up menu, then enter the email addresses where you want to receive the forwarded messages. Click Message, then enter any text you want to include with the forwarded message. For example, you could explain that you’re automatically forwarding messages. 
    Reply to messages: Choose “Reply to Message” from the first pop-up menu, click “Reply message text,” then enter your reply. Mail includes the full text of the original message in your reply. 
    Click OK.
    Carefully consider the rules you create. If they’re too broad, messages can be sent inadvertently or create loops (replies to replies you sent). If possible, test the rules. 
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • How can I disable the auto resizing in NetBeans?

    Hello,
    how can I disable the auto resizing in NetBeans?
    I cannot resize nor displace components due to this automation.

    first what do u mean by auto resizing ? if u mean the layout that automatically aligns itself then ..... if that's yr question then u need to set the layout to null
    if using netbeans then right click on the the mainPanel and setlayout to null if eclipse the frame.getContent.setlayout(null);
    NetBean doesn't have a forum it has mailing list u can subscribe there
    http://www.netbeans.org/servlets/TLogin
    Edited by: raven_roy on Mar 12, 2008 2:58 AM

  • How can I turn off auto-renewal for subscriptions? I have been in the manage my account but I can't see any other option than to auto-renew?

    how can I turn off auto-renewal for subscriptions? I have been in the manage my account but I can't see any other option than to auto-renew?

    Follow the instructions in this article. You can turn off the auto-renewal on either your i-device or via iTunes on your computer:
    Manage your auto-renewing subscriptions - Apple Support
    Cheers,
    GB

  • How can I disable the notification sound for remaining credit messages

    My operator sends me a message after every call and text which tells me what remains of my monthly allowances. This is very useful and I don't want to turn it off. I've just got myself a Z10 and the only thing that annoys me about it is that I have not yet found out how to disable the notification sound for this type of message. The device is stock with the latest firmware and no apps.
    I can change the notification for normal text messages in the settings, but there is no obvious entry to change for these messages. Does anyone know how to do it?

    Zotan wrote:
    My operator sends me a message after every call and text which tells me what remains of my monthly allowances. This is very useful and I don't want to turn it off. I've just got myself a Z10 and the only thing that annoys me about it is that I have not yet found out how to disable the notification sound for this type of message. The device is stock with the latest firmware and no apps.
    I can change the notification for normal text messages in the settings, but there is no obvious entry to change for these messages. Does anyone know how to do it?
    If the message comes in the (bell) notifications it can only be switched OFF globally.
    If it is a text message, you can create a contact with the number, then Setting - Notifications - Contacts - Customise - Phone Calls, Email Messages, Text Messages, Other Messaging

  • How can I turn off auto-capitalization for Mail in Mountain Lion?

    How can I keep mail.app from capitalizing the first letter of sentences?  I have turned off auto-correct both at the system level and in Mail, and yet I cannot seem to keep Mail from capitalizing the first letter?

    Thanks - this helped me track it down - some Textexpander setting apparently got switched when I updated.

  • How can I disable the auto start up of iphoto on my computer when I plug in my iphone?

    Whenever i plug in my iphone 4s, my computer automatically opens iphoto. How do I disable it?

    yeah that's what I used to do before I updated to snow leopard. Now it does not have the same menu options which is why I am asking.
    It is not in image capture either.
    Read the other forums on this topic, I don't seem to have those choices anymore.( general> connecting a camera) does not appear in window.
    I cannot figure out where this is.

  • How can I disable automatic spell checking for specific websites?

    I'd like to disable automatic spell-checking for specific domains, such as programming-oriented forums. Is there a way to do this in about:config?

    See:
    *https://developer.mozilla.org/en/Controlling_spell_checking_in_HTML_forms
    You could create a Greasemonkey script to add a spellcheck="false" attribute or create a bookmarklet to add the attribute.

  • How can I use the same session for different components acroos application ?

    I am trying to include the components(chat, filesharing, whitboard) in different parts of my application. User should be able to access any of the component. We would like to have a single "ConnectSessionContainer" so that we don't see same user creating a seperate session for each component.
    Is there a better way of dealing with this other than declaring the "ConnectSessionContainer" in the main application ? Is there a way to check if we have a "ConnectSessionContainer" session already established ? Please help . Thanks.

    Thanks for the response. Let me explain what I am trying to do..
    I am trying to create components at different places(screens) of the flex application (not in the same .mxml file).
    Each time I create a component, I am using a "AdobeHSAuthenticator" and "ConnectSessionContainer" which is resulting a new participant in the room.
    For example
    screen1.mxml -
    <mx:Panel>
    <rtc:AdobeHSAuthenticator id="auth" authenticationSuccess="onAuthSuccess(event);" authenticationFailure="onAuthFailure(event);" />
    <rtc:ConnectSessionContainer id="mySession" >
            <rtc:Roster id="myRoster" width="100%" height="100%" />
            <rtc:Chat id="mychat" width="100%" height="100%" />
    </rtc:ConnectSessionContainer>
    </mx:Panel>
    screen2.mxml (in the same application) -
    <mx:Panel>
    <rtc:AdobeHSAuthenticator id="auth" authenticationSuccess="onAuthSuccess(event);" authenticationFailure="onAuthFailure(event);" />
    <rtc:ConnectSessionContainer id="mySession" >
            <rtc:SharedWhiteBoard id="wb" width="100%" height="100%" />
    </rtc:ConnectSessionContainer>
    </mx:Panel>
    Here, I open a screen1 and authenticate as UserA and when I try to open screen2 flex is considering me as another user though I am in the same application.
    1) How can I use different components which are in different flex files as a same User ?
    2) Should I place my <rtc:AdobeHSAuthenticator> and <rtc:ConnectSessionContainer> in the main application which calls the screen.mxml?
    3) What is the best way to do it ?
    Thanks for your time !

  • How can I add a "search" field for web pages content-not blogs or podcasts?

    This seems to be such a basic function, I can't believe I'm having so much trouble. I don't have a blog or a podcast on my new website that I'm in the process of designing. So how do I allow people who'll visit my site to search there for specified content? The only instructions I find are for the RSS in inspector for blogs or podcasts. All I want is for people to be able to search my site/web pages (that have no blogs or podcasts on them). This must be a common request... or am I crazy? How do I do that?
    Thanks for your help.

    I think I've answered my own question after a few hours of searching:
    http://services.google.com/searchcode2.html?accept=on
    Thank you Google.

  • How can we print the page numbers for TABLE OF CONTENTS form When its excluded from the form page count ?

    Hi Experts,
    We have TABLE OF CONTENTS followed by 100 forms with totally 215 pages.
    We have checked in the Exclude from form page count option for TABLE OF CONTENTS form in Group level.
    The forms followed by TABLE OF CONTENTS form all are using FORMSETPAGENUM rule in footer.
    the very first form followed by TABLE OF CONTENTS form the page number starts at 1 of 215 and the last form ends at 215 of 215.
    Now i want to print the Page number for TABLE OF CONTENTS form alone.
    How can we do that ?  Any thoughts ?
    Regards,
    RAMAN C

    Hi Raman,
    I guess, you have included 'Exclude Page Count' option in Table Of Content (TOC) form.
    There is a limitation in studio. The page number functions (FORM PAGE NUM OF/ FORMSET PAGE NUM OF) will be ineffective when we select the 'Exclude Page Count' option in TOC form. Hence, you was not able to print the Form Page Count in TOC form.
    The only way to print page count is to deselect 'Exclude Page Count' option. Then you can normally print the TOC Page Count in TOC form. However, thiS TOC page count will add to the Total formset Page Count. The Formset Page Count can be controlled through Postransdal using the script [FORMSET PAGE NUM = TotalPages() - 1]
    Regards,
    Mahesh

  • Design Studio 1.2 SDK - How can standard UI5 themes be loaded for custom components?

    The SAPUI5 library that is embedded in the Design Studio framework includes standard themes such as the Blue Crystal theme.  When developing UI5-based SDK components with DS 1.2 SP00, I was able to successfully load the built-in Blue Crystal theme by simply including the following statement in the component.js file:
    sap.ui.getCore().applyTheme("sap_bluecrystal");
    However, as of DS 1.2 SP01 this approach no longer seems to work.  I don't receive any error messages either.  The theme simply doesn't load like it used to or sometimes might just load partially.
    The only difference I can see between SP00 and SP01 in terms of the UI5 framework is that it has been upgraded from version 1.12.7 to 1.14.6 but this shouldn't impact the validity of the above statement.
    I'd appreciate it if anyone has any ideas about why the applyTheme() method no longer works and how this issue might be fixed.
    Of course there is the workaround of manually including the theme files with a <cssInclude> tag in the contribution.xml file but this seems like a waste of resources given that technically, the theme is already included in the Design Studio framework.

    The SAPUI5 library that is embedded in the Design Studio framework includes standard themes such as the Blue Crystal theme.  When developing UI5-based SDK components with DS 1.2 SP00, I was able to successfully load the built-in Blue Crystal theme by simply including the following statement in the component.js file:
    sap.ui.getCore().applyTheme("sap_bluecrystal");
    However, as of DS 1.2 SP01 this approach no longer seems to work.  I don't receive any error messages either.  The theme simply doesn't load like it used to or sometimes might just load partially.
    The only difference I can see between SP00 and SP01 in terms of the UI5 framework is that it has been upgraded from version 1.12.7 to 1.14.6 but this shouldn't impact the validity of the above statement.
    I'd appreciate it if anyone has any ideas about why the applyTheme() method no longer works and how this issue might be fixed.
    Of course there is the workaround of manually including the theme files with a <cssInclude> tag in the contribution.xml file but this seems like a waste of resources given that technically, the theme is already included in the Design Studio framework.

  • How can I disable the Auto Recent Contact Group in email

    The email app automatically selects a recent group of contacts instead of the primary contact.  This is extremely frustrating and very strange, IMO.  Why would the default be to list the group instead of the primary contact you are searching for first?
    Example:
    Compose New Email
    Start typing a contacts name int eh To: field
    the list Autopopulates with recently emailed groups before the main contact. 
    Is there a way to disable this "feature".  I know I can "Remove from Recents" but this is actually very tedious.
    Thanks!
    -Joe

    If you only want to select from saved contacts, then tap the Plus ( + ) sign on the right of the address bar to bring up your actual contacts list instead of using this method.
    You can still type a few letters into the search box at the top of the contact list to find your contact quickly.
    Peter
    Soluble Apps

  • How can I disable iMessage but only for one contact ?

    Hi,
    I'd like to send texts to my friend who owns an iPhone, but not on iMessage.
    (That friend owns an iPhone, but can't connect on 3G. So she gets my texts only when she can connect on wi-fi...)

    Your friend would have to disable iMessage. As far as your phone is concerned, since you have connected with her via iMessage, it will always try that.

  • How can I set up auto fill for forms on new PC with Windows 7

    I cannot find any place on the Firefox browser to add my basic contact information for filling out forms.

    I cannot find any place on the Firefox browser to add my basic contact information for filling out forms.

Maybe you are looking for

  • Material determination with Product selection

    Hi SAP Gurus We are using material determination with product selection. The process is that customer will send in one product in a sales order. At the time of doing ATP we have to look for about three or four possible alternatives and confirm that a

  • Reinstall windows os and deactivate itunes

    before i reinstall my vista os software,  what would be the procedures to make sure i do not lose any of my apps and/or music files purchased through itunes?

  • 2 phase commit with MQSeries 5.2

              Hi,           Wondering if anyone can help with this:           We'd like to have 2PC with DB and JMS. Understand that we need to use XAConnectionFactory           in MQ in order for 2PC to work. However, MQ XAQCF only support binding mode

  • X61 Power Manager + Access Communications trashed in latest updates

    My X61 has worked flawlessly for a year or so until the latest System Updates. Thinkpad Power Manager 2.36 will not display the main page when you try to open it anyway you like i.e. Fn+F3 or control panel links. It starts up on the task bar but can'

  • How to coordinate a lyrics read simultaneously with each song?

    Start a New Discussion in iTunes for Windows How to coordinate lyrics in order to read them simultaneously with each song?