Interactive elements aren't working in web browser

Hi, ive created an interactive PDF form in InDesign, it works fine in reader on mine and other computers when emailed as an attachment.  This form however needs to be attached to a HTML email so it needs to be hosted on our servers and be downloaded via link. when the PDF id downloaded it is automatically opened in the web browser, and when this happens none of the interactive elements work ie show/hide fields or the Print and Submit buttons.  Please someone help!

Heres the form,
http://www.blackstripedesign.co.uk/wp-content/uploads/2012/07/FINAL_Questionnaire.pdf

Similar Messages

  • Javascript does not work in web browser

    Hello friends.
    I have a problem with javascript in my Captivate project.
    This script only works in preview in Captivate, but does not work in web browser (IE 9, Mozilla, Chrome).
    Anybody knows why?
    Thank you for your answers.

    Common JS interface
    That is the official documentation for JS in Captivate 8. For more information, have a look at Jim Leichliter's website: CaptivateDev.com - eLearning Development with Adobe Captivate

  • MySQL Sidu: Free MySQL client working via web browser

    MySQL Sidu is a FREE MySQL client working via web browser.
    MySQL Sidu is simple, intuitive and easy database tool to use!
    It is not phpmyadmin, but It's lightweight.
    License: GPL
    http://sidu.sourceforge.net/
    http://aur.archlinux.org/packages.php?ID=21122
    salU

    are you the developer of this tool?

  • F10 Key not working in Web Browser mode

    I created a click box on a CP5 screen and assigned F10 as the Shortcut key and the action is "Go to the next slide."  When the user presses F10 the demo would advance to the next screen.
    This works great in preview mode.  However, when in Web Browser mode, nothing happens except I get this message at the bottom of the screen, "Contains commands for working with selected item."
    How do I get the F10 key to work (action desired: advance to the next screen in my demo) in browser mode?

    Hi there
    LIkely it depends on the browser, but some keys are always reserved for use by the browser itself and they cannot be used as shortcut keys by a Captivate SWF because the browser will intercept them and not pass them on to the SWF.
    I'm not sure if F10 is among those keys, but it may well be.
    This would likely beg the question of why Captivate would allow you to assign a shortcut key if if wouldn't work when you publish and play in the browser. And for that I would remind you that SWF output is just one of the ouputs Captivate may produce. If you published as EXE, you aren't bound by browser behavior and the key would likely work just dandy.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Swing components in applet not working in web browser

    Hi Guys,
    I've created an applet which makes use of some swing components, but unfortunately, not all of them function properly in my web browser (internet explorer or Mozilla Firefox). Its mainly the buttons; the last buttons works and displays the correct file within the broswer, but the first 5 buttons do not work...
    any help please on how I can sort this problem out?
    Heres the code for my applet:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.*;
    public class MainAppWindow extends JApplet
    int gapBetweenButtons = 5;
    final JPanel displayPanel = new JPanel(new BorderLayout());
    public void init()
       //Panel for overall display in applet window.
       JPanel mainPanel = new JPanel(new BorderLayout());
       mainPanel.add(new JLabel(new ImageIcon(getClass().getResource("images/smalllogo2.gif"))),BorderLayout.NORTH);
       //sub mainPanel which holds all mainPanels together.
       JPanel holdingPanel = new JPanel(new BorderLayout());
       //Panel for displaying all slide show and applications in.
       displayPanel.setBackground(Color.white);
       displayPanel.add(new JLabel(new ImageIcon(getClass().getResource("images/IntroPage.jpg"))),BorderLayout.CENTER);
       displayPanel.setPreferredSize(new Dimension(590,400));
       JPanel buttonPanel = new JPanel(new GridLayout(6,1,0,gapBetweenButtons));
       buttonPanel.setBackground(Color.white);
       JButton button1 = new JButton("User guide");
       button1.addActionListener(
         new ActionListener() {
              public void actionPerformed(ActionEvent e)
                   if(displayPanel.getComponents().length > 0)displayPanel.removeAll(); // If there are any components in the mainPanel, remove them and then add label
                   displayPanel.setBackground(Color.white);
                   displayPanel.add(new JLabel(new ImageIcon("images/UserGuide.jpg")));
                   displayPanel.revalidate(); // Validates displayPanel to allow changes to occur onto it, allowing to add different number images/applicaions to it.
       JButton button2 = new JButton("What is a Stack?");
       button2.addActionListener(
       new ActionListener() {
               public void actionPerformed(ActionEvent e)
                   if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                   displayPanel.setBackground(Color.white);
                   displayPanel.add(new JLabel(new ImageIcon("images/WhatIsAStack.jpg")));
                   displayPanel.revalidate();
       JButton button3 = new JButton("STACK(ADT)");
       button3.addActionListener(
       new ActionListener() {
             public void actionPerformed(ActionEvent e)
                   if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                   displayPanel.setBackground(Color.white);
                   displayPanel.add(new JLabel(new ImageIcon("images/StackADT.jpg")));
                   displayPanel.revalidate();
       JButton button4 = new JButton("Stacks in the Real World");
       button4.addActionListener(
       new ActionListener() {
             public void actionPerformed(ActionEvent e)
                   if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                   displayPanel.setBackground(Color.white);
                   displayPanel.add(new JLabel(new ImageIcon("images/StacksInTheRealWorld.jpg")));
                   displayPanel.revalidate();
       JButton button5 = new JButton("DEMONSTRATION");
       button5.addActionListener(
       new ActionListener() {
             public void actionPerformed(ActionEvent e)
                 if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                 Demonstration app = new Demonstration();
                 JPanel appPanel = app.createComponents();//gets the created components from Demonstration application.
                 appPanel.setBackground(Color.pink);
               displayPanel.add(appPanel);
               displayPanel.revalidate();
       JButton button6 = new JButton("Towers Of Hanoi");
       button6.addActionListener(
       new ActionListener() {
             public void actionPerformed(ActionEvent e)
                     if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                     TowerOfHanoi app = new TowerOfHanoi();
                     JPanel appPanel = app.createComponents();//gets the created components from Towers of Hanoi
                     JPanel mainPanel = new JPanel();//panel used to centralise the application in center
                     mainPanel.add(appPanel);
                     mainPanel.setBackground(Color.pink); //sets mainPanel's background color for 'Towers Of Hanoi'
                     displayPanel.add(mainPanel);
                     displayPanel.revalidate();
       //adding buttons to the buttonPanel.
       buttonPanel.add(button1);
       buttonPanel.add(button2);
       buttonPanel.add(button3);
       buttonPanel.add(button4);
       buttonPanel.add(button5);
       buttonPanel.add(button6);
       JPanel p = new JPanel(); // Used so that the buttons maintain their default shape
       p.setBackground(Color.white);
       p.add(buttonPanel);
       holdingPanel.add(p,BorderLayout.WEST);
       holdingPanel.add(displayPanel,BorderLayout.CENTER);
       //Positioning of holdingPanel in mainPanel.
       mainPanel.add(holdingPanel,BorderLayout.CENTER);
       //indent mainPanel so that its not touching the applet window frame.
       mainPanel.setBorder(BorderFactory.createEmptyBorder(10,20,10,20));
       mainPanel.setBackground(Color.white);
       mainPanel.setPreferredSize(new Dimension(850,600)); //size of applet window
       mainPanel.setOpaque(false); // Needed for Applet
       this.setContentPane(mainPanel);
    }

    Thanks for the response. I don't quite understand what you're talking about though. I have, in my humble knowledge, done nothing with packages. I have put the applet class (WiaRekenToolActiz.class is the applet class) in the jar file wia_actiz_archive.jar. From what I read on the tutorial, java looks for the applet class in all the jar files specified. Since I put my CODEBASE as the main url, I thought it baiscally didn't matter where you out the html file.
    I shall include the complete html page complete with applet tag to perhaps illuminate a bit more what I mean...
    <html>
    <head>
    <title>Wia Rekenmodule hello!</title>
    </head>
    <body bgcolor="#C0C0C0">
    <applet
    CODEBASE= "http://www.creativemathsolutions.nl/test"
    ARCHIVE= "Actiz/wia_actiz_archive.jar, Generic/wia_archive.jar"
    CODE="WiaRekenToolActiz.class" 
    WIDTH=915 HEIGHT=555
    >
    <PARAM NAME = naam VALUE = "Piet Janssen">
    <PARAM NAME = gebdag VALUE = "01">
    <PARAM NAME = gebmaand VALUE = "06">
    <PARAM NAME = gebjaar VALUE = "1970">
    <PARAM NAME = geslacht VALUE = "man">
    <PARAM NAME = dienstjaren VALUE = "10">
    <PARAM NAME = salaris VALUE = "56500">
    <PARAM NAME = deeltijdpercentage VALUE = "100">
    <PARAM NAME = accountnaam VALUE = "Zorginstelling 'De Zonnebloem'">
    </applet>
    </body>
    </html>

  • Urgent!!! Forms not work on web browser(OAS 10g,Solaris 10 x86).

    Problem discribe:
    1.environment:
    (1)Network: only local network.
    (2)Platforms
    All platforms we use are Solaris 10 for X86.
    (2.1)Server: (intel) Solaris 10 for X86
    Oracle Application Server Forms Services 10.1.2.0.2
    (2.2)Client: Mozolla web browser on (intel) Solaris 10 for X86 .
    Mozolla web browser information:
    (2.2.1)[menu]-[Help]-[About web browser]display:
    Welcome to Mozilla 1.7 for Sun Java(TM) Desktop System
    Mozilla/5.0 (X11; U; SunOS i86pc; zh-CN; rv:1.7) Gecko/20070606
    (2.2.2)[menu]-[Help]-[About Plug-in]display:
    Java(TM) Plug-in 1.5.0_12-b04
    file name: libjavaplugin_oji.so
    Java(TM) Plug-in 1.5.0_12
    MIME type
    application/x-java-vm Java
    application/x-java-applet Java
    application/x-java-applet;version=1.1 Java
    application/x-java-applet;version=1.1.1 Java
    application/x-java-applet;version=1.1.2 Java
    application/x-java-applet;version=1.1.3 Java
    application/x-java-applet;version=1.2 Java
    application/x-java-applet;version=1.2.1 Java
    application/x-java-applet;version=1.2.2 Java
    application/x-java-applet;version=1.3 Java
    application/x-java-applet;version=1.3.1 Java
    application/x-java-applet;version=1.4 Java
    application/x-java-applet;version=1.4.1 Java
    application/x-java-applet;version=1.4.2 Java
    application/x-java-applet;version=1.5 Java
    application/x-java-applet;jpi-version=1.5.0_12 Java
    application/x-java-bean Java
    application/x-java-bean;version=1.1 Java
    application/x-java-bean;version=1.1.1 Java
    application/x-java-bean;version=1.1.2 Java
    application/x-java-bean;version=1.1.3 Java
    application/x-java-bean;version=1.2 Java
    application/x-java-bean;version=1.2.1 Java
    application/x-java-bean;version=1.2.2 Java
    application/x-java-bean;version=1.3 Java
    application/x-java-bean;version=1.3.1 Java
    application/x-java-bean;version=1.4 Java
    application/x-java-bean;version=1.4.1 Java
    application/x-java-bean;version=1.4.2 Java
    application/x-java-bean;version=1.5 Java
    application/x-java-bean;jpi-version=1.5.0_12 Java
    2.Install Config:
    (2.1)formsweb.cfg
    after install,
    /export/home/ias/OraHome_2/forms/server/formsweb.cfg
    include a section :
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    (2.2)run oracle test form and my forms
    http://s216:7777/forms/frmservlet?form=test&userid=scott/tiger@orcl
    (Oracle simple test demo form)
    or
    tttp://s216:7777/forms/frmservlet?form=myform&userid=scott/tiger@orcl
    (2.3)browser dialogue window display:
    [title:Default Plugin]
    This page contains information of a type (application/x-java-applet;jpi-version=1.4.2_06)that can only be viewed with the appropriate Plug-in.
    Click OK to download Plugin.
    when I Click Ok ,display warning :
    File not found:www.sun.com, check filename ,try later.
    (2.4)change formsweb.cfg
    /export/home/ias/OraHome_2/forms/server/formsweb.cfg
    change:
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    to:
    jpi_mimetype=application/x-java-applet;
    (2.5)run again oracle test form and my forms
    http://s216:7777/forms/frmservlet?form=test&userid=scott/tiger@orcl
    (Oracle simple test demo form)
    or
    http://s216:7777/forms/frmservlet?form=myform&userid=scott/tiger@orcl
    (2.6)Problem:
    myform and test(Oracle simple test demo form) can run and display,
    but all buttons(when click) not work(no response);
    all meuns not work...........
    How to Solve this problem?
    thanks in advance.

    The currently supported versions with patches installed are as follows:
    <li>10.1.2.3 (10.1.2.0.2 + patch 5983622)
    <li>11.1.1.4 (11.1.1.2 or 11.1.1.3 + patch 11060983 : this also requires WLS 10.3.4)
    Fusion Middleware (FMw) 11 downloads are available from here:
    http://www.oracle.com/technetwork/middleware/weblogic/downloads/index.html
    Patches are only available to customers with access to MyOracleSupport (http://support.oracle.com)
    For Forms/Reports users, look for the FMw download titled "Portal, Forms, Reports and Discoverer". The distribution includes all that is necessary to design and deploy your applications. Note that WebLogic Server is also required and is a separate download (from the same page). Be sure to carefully review the installation instructions before attempting the process. It may also be helpful to review MyOracleSupport note 1073776.1.

  • Quicktime Movie Controller Will Not Work in Web Browser

    Regardless if it's Safari or Firefox, I cannot click any of the buttons on the movie controller when viewing my movies in a web browser. They work as intended in iWeb, however.

    Well I figured it out. Apparently if the video is too low on the page it will not play. I had to change the Y value, moving it up, and it would magically play. Weird...

  • User Authentication for subfolder not working in Web Browser

    We are using Oracle Application Server 10.1.2.3 and Database Server 10.2.0.5 for our application.
    One of the functionalities of the Application is to send emails with attachments.
    The logic is that the Application would generate the attachment file on the Application Server.
    Then a database package uses Oracle's utl_http package/procedures(more specifically utl_http.request_pieces where the single argument is a URL) to pick up the file from the Application Server via URL, attach the file and send the email.
    Exchange and Relay Server is also set in the Application.
    The problem is that the folder containing the folder which stores the attachments is having user authentication set.
    Example : The main folder is /apps/interface, this folder requires a valid user when it is accessed via URL on a web browser.
    Alias created in httpd.conf
    Alias /int-dir/ "/apps/interface/"
    The folder /apps/interface/email/ is the folder where the attachment files are generated and stored.
    Application Server : 10.12.213.21
    Database Server : 10.12.213.22
    Email Server : 10.12.213.44
    Configuration as per httpd.conf
    Alias /int-dir/ "/apps/interface/"
    <Location /int-dir/>
    AuthName "Interface folder"
    AuthType Basic
    AuthUserFile "/u01/app/oracle/as10g/oasmid/Apache/Apache/conf/.htpasswd"
    require user scott
    </Location>
    <Location /int-dir/email>
    Options Indexes Multiviews IncludesNoExec
         Order deny,allow
         Deny from all
         Allow from 10.12.213.21
         Allow from 10.12.213.22
         Allow from 10.12.213.44
    </Location>
    Using the above configuration the Application is able to attach the files and send the email, however, when we access the following URL :
    http://10.12.213.21:7778/int-dir/ - it prompts for user authentication
    However if we use the following URL :
    http://10.12.213.21:7778/int-dir/email/ - it does not prompt for user authentication, and all the files in the folder are displayed in the browser.
    I have tried so many things including AllowOverride, .htaccess, but i am not able to get user authentication for the email folder.
    Please help me if you can.
    Thanking you in advance,
    GLad to give any more information that i can.
    dxbrocky

    Thanks for your response.  I fixed the problem by selecting "full site" or "full website" at bottom of the web page.  After making this selection the zoom function returned.  Thanks again for your interest.

  • Backspace navigation key not working in web browser using linux, but does on windoze

    using ubuntu 10.04 (lucid). when navigating a web forum, the backspace key (previous page) does not function. the scroll keys are a little jerky too. i have both 'use navigation keys' and 'smooth scrolling' enabled in options.

    See http://kb.mozillazine.org/browser.backspace_action

  • Interactive elements don't work in Preview

    I have created a pdf document with numerous page links in InDesign CS4, and setting properties for the pdf in Acrobat CS4. Apparently Apple computers open pdfs with their Preview program by default. So the document opens in Preview for Mac users who haven't changed the default and therefore the page links do not work. Does anyone know if there is a way to either warn the user that they should open this document in Acrobat Reader, or set a property in Acrobat that tells the Mac computer to open the document in Acrobat Reader?

    Which program is the default PDF viewer on the Mac cannot be controlled by something in a PDF. What you can do is set something up in the PDF (like a button or layer) that shows your warning message. This message would show be default, but if loaded in Acrobat (Reader), some JavaScript code would automatically run and get rid of the message. So PDF viewers that don't support JavaScript, such as Preview, would display the PDF with the message, but Acrobat or Reader (if JavaScript is enabled) would remove the warning when the document is loaded.

  • Since installing iOS 8.0 I cannot get Netflix to work, other web browsing is ok

    I Cannot get Netflix to work since I installed iOS 8 my wife's iPad not yet upgraded and works ok on same wifi connection

    I have what sounds like a very similar issue.
    I had my Denon 3312ci working perfectly with Airplay from my 2013 iMac running iTunes. Upgraded to iTunes 11.1.3, and now when I attempt to Airplay direct from iTunes to the 3312, it plays for about half a second and then stops. Displayed on the Amp then says "Assigning Network". The amp starts dropping ping packets at this point. About 15-20 seconds later the pings start coming back, but no Airplay.
    I tried different network cables, resetting the microprocessor, a different switch, changing between DHCP and static IP. Was about to make a warranty call to Denon, when I thought maybe I should try Airplaying directly from iphone and ipad. Much to my surprise, it worked from those devices.
    I prefer to use my iMac to Airplay rather than ipad/iphone as I found I got next to no audio drop outs using it that way (they are both using wired network), where as ipad/iphone occasionally would get a moment of silence in the middle of a song.
    My network set up is fine. I can use internet radio and connect to DLNA services fine on the amp. It is just airplay between iTunes 11.1.3 and the amp where the issue lies.
    No fixes as yet, but I have logged a support call with Denon Australia to see what they say.

  • Airport Extreme Card Not Working Properly (Web Browsing Slow)

    Hello people of apple discussions,
    I have the original MacBook Pro with Mac OS X 10.5.7 installed on it. And I have a problem, my airport extreme card is not functioning properly like when I go on the internet, it comes up with the server "www.google.com" cannot be reached or the same with Yahoo! Back when it had 10.4 it was functioning properly with very high speeds. But, all the other PCs in the house gets good internet even my iPhone and the router is functioning properly. It's been like this since for about 6-8 months and i am very upset with my mac!:|So can I have some help or any suggestions!
    Message was edited by: mr.ts

    Have you tried contacting your ISP? Sometimes they can help you optimize your settings. Such as DNS server numbers. I had a simullar problem and found out my DNS settings were wrong.
    Do you have other computers that use the wireless single? If not you might look into your router to see if maybe something is wroung with it. You can always go to a wifi hotspot or a friends house and see how the connection is there. If it seems normal then you know it is your ISP or your router. If not then it might be a laptop problem.

  • Java does not work on my Win 7 IBM-compatible PC using Firefox as my web browser

    A typical example of a website I would like to access & view is "www'cut-the-knot.org", a relatively mathematics-related website with a lot a very nice math content, where (roughly estimating) 70-90% of all web pages on the web site use Java applets to communicate that math content.
    I CANNOT view the Java applets (am restricted/prevented from doing so) --- on CTK or ANY other website!.
    I could go into all the details but, essentially, I have tried just about everything I can think of (or have found to do/try in discussions on the Internet by googling the problem) & nothing seems to have had any positive affect ... I can still not view ANY Java applets on ANY website! :-(
    I USED to be able to view Java content on the PC I was working on, although, a few months ago, I migrated from Win XP to Win 7 when MS stopped supported Win XP. I don't know when things changed but, "while I wasn't looking" (&/or paying attention) something DID change. :-(
    I'm using an IBM-compatble PC (not a Mac) with Windows 7 & Firefox as my web-browser.
    I'm just a private individual ... just a "little guy" in my home ... little personal technical knowledge, no big biz connections, no $ to hire expensive (or inexpensive) experts to come in & assess & fix the problem. I would even just like to know if there is some kind of future expected date when something MIGHT get improved, barring an action "solution" of the problem.
    From what I read on the Internet, some problem(s) relating to this issue has/have been extant for at least two years, dating back to at least 2012, if not further? I assume the problem would have been fixed long ago if it were easy to fix so, I'm not trying to be overly critical ... just asking for some kind of status report --- help/communication/knowledge/expertise/solution/etc ... & any information would be appreciated. Knowing WHAT the problem is is a high priority to me, certainly as well as understanding HOW TO FIX the problem, & WHEN that fix will occur.
    Java is a seemingly wonderful technology but, if there are such severe security risks that require it be enabled so that no one (I'll assume I'm not the only one unable to view Java applets) can use it, it doesn't have much value to visitors to websites that employ Java to deliver a majority of their content. Part of the problem, obviously, is that (like CTK) MANY websites ALREADY use/employ Java --- & therefore, end-users have almost no access to the content in/on those websites.
    Thanx in advance ...
    arbmm7
    (2014-08-30-1023 PST)
    PS - Just before posting this comment, I clicking a button at the bottom of the Mozilla web page that said it had "guessed" at current browser & OS, & the following is what was "reported":
    Firefox version 32
    Windows 7 OS
    * Shockwave Flash 14.0 r0
    * Adobe PDF Plug-In For Firefox and Netscape 10.1.11
    * Next Generation Java Plug-in 11.11.2 for Mozilla browsers
    * NPRuntime Script Plug-in Library for Java(TM) Deploy
    * VLC media player Web Plugin 2.1.3

    PS - SORRY --- I meant (in the title): "... using Firefox as my web browser."

  • Report Not working in the Web Browser

    Hi ALL ,
    Am working on a item SKU report . The report is running fine in the BIDS but once i try to view the report in the WEB Browser
    tried both Mozilla and Internet Explorer no data is shows up .
    The report has 2 report filter one is on the service and the other one is the item sku its a multi - parameter  that contains
    a list of more than 6000 different SKU . Can the filter be the reason for the report not displaying in the web browser.
    If yes kindly advice me what the workaround for it .
    I tried having the filter in the  SQL main query but it was of no use no data it was showing after having the ssrs report filter
    at least right information its showing but in the BIDS not in the main web browser.
    Kindly Help
    Priya

    Hi Priya,
    According to the description, I understand that there are parameters (@SKU and @SKUlist) in the report, and SKUlist parameter is multi-value parameter. When selecting values of the SKU parameter, the parameter SKUlist will display corresponding values. In this
    case, you should create cascading parameters, right? And you use parameters to filter the report.
    Because the data of the report can be shown in the Business Intelligence Development Studio (BIDS) environment, the issue only occurs after deploying the report to report server. Based on my research, I think it may occur because of web browser issue. I have
    known you use Mozilla and Internet Explorer to view the report but there is still no data.
    In Reporting Services, not all report functionality is supported by all browsers. In this scenario, I suggest you considering the aspects of the setting or third party add-ons of Internet Explorer (IE). You can refer to the steps below:
    1. Click Tools -> Internet options.
    2. Switch to the Security tab, click Local intranet, and then select Default level.
    3. Switch to the Advanced tab, and click Restore advanced settings.
    4. Temporarily disable third party add-ons. For detailed steps, please see the link:
    http://windows.microsoft.com/en-IN/internet-explorer/manage-add-ons#ie=ie-10
    Reference:http://technet.microsoft.com/en-us/library/ms156511(v=sql.105).aspx
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • Nokia 701 web browser is not working

    i have nokia 701. My phone web browser is not
    working. Net is working in other browsers like
    opera and uc browser. it's a big problem for me i
    can't watch online videos and i can't access to google or any other site.. I also delete the cache folder in C drive. But still browser is not working.plz help me to solve this
    problem...

    same here also. happened after i updated social. now cant browse or check for updates

Maybe you are looking for

  • Time off by an hour in Calendar alarms

    Experiencing my alarms in Calendar appts off by 1 hour (early). I have checked Settings/General and Settings Mail, Contact, Calendars and they are both set to New York time which should be correct? How do I fix please?

  • Invalid URL error when displaying Work Item Attached URL Object in UWL

    Hi, After upgraded from EP6 to EP7 the user can no longer display the attached URL object of work items in the UWL Inbox.  It works fine in the SAPGUI Inbox so the URL should be okay.  We found below error messages in UWL log file: #1.5#0003BA5D298B0

  • Example Work Order Interface - Resource add

    Can anyone give me an example load script for wip_job_schedule_interface and wip_job_dtls_interface tables? The documentation has a couple of errors and if I could just see one example that works I think I could figure it out. I have an existing work

  • Help On My Project Please

    Hello guys I am into my final year of my IS undergraduate course, and is about to start my final year project. And thats where I need some help cause I am desperately losing ideas. The project is a 6 month schedule. I dont want to design a site or a

  • Move/Resize photo within a mask?

    I've been trying to figure this out forever: When I drag one of my photos onto a placeholder image that is on an Apple template, it replaces it just fine. The problem I have is that I want to be able to move/resize my image around inside the mask unt