Modifying Iframe

Hello,
I am very new to Flex. Can anybody please help me to modify
the iframe so that no one can copy anything from it or view it
source ?
Thank you

Hi,
Iframe only shows the html using your default browser.
You must add javascript to your webpage you include to block
copying, allthough most scrips will not help if someone really
wants your source.
IFrame is not supported by Adobe.
Good luck

Similar Messages

  • Modify WebI Toolbar in BO 4.0

    Hi All,
    We are displaying WebI reports in our web page using the OpenDocument url method.
    <iframe src="http://<server name>/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=<documentId>"></iframe>
    This displays the entire document, including the WebI toolbar. However, we do want the end users to modify/save the document by using the options present in the toolbar. Is there any way to hide/disable certain options present in the WebI toolbar?
    We are not thinking of using ReportEngine SDK yet, as we want the drill filters and input controls that are available with the opendocument method.
    Any other suggestions are welcome.
    Thanks,
    Namrata

    In 4.1 SP3 (possibly earlier, but I don't have an earlier SP that I can look at to verify...) there is a "Customization" option when you right-click on a User Group other than Everyone or Administrators.  Under this option you can turn off the visibility of various toolbars and buttons in the Webi application.  I'm not sure whether this applies to OpenDocument, though.
    Other than that, I don't know of any way to specifically turn off buttons or tool bars in an OpenDocument call.
    -Dell

  • Refresh problem of Webdynpro application which is wrapped in a BSP IFrame

    I have a BSP Iframe inside which I am calling a webdynpro application ('zwdc_re_replenishment'). The requirement is that this WD application should be reloaded whenever a timeout occurs. Currently, when there is a timeout, an error is shown.
    In order to achieve this, for this WD Application , I have a SICF node to which I have attached a customized Errorpage via the option 'Redirect URL'.
    Whenever the WD application undergoes a timeout error, my custom error page is called which is named as errorpage.htm. On this page in the 'OnInitialization event', I try to call the WD application URL again (via the following code) which should reload the application. But instead I get a blank page.
    CALL METHOD cl_wd_utilities=>construct_wd_url
      EXPORTING
        application_name = 'zwdc_re_replenishment'
      IMPORTING
        out_absolute_url = lv_def_url.
    response->redirect( url         = lv_def_url
                        permanently = 1 ).
    Just as a note I have already tried out the following methods as well but nothing works
    *navigation->exit( lv_def_url ).
    *navigation->call_application( lv_def_url ).
    Is this because my WD application is inside a BSP Iframe and therefore reloading it manually does not work ?
    Please help!
    Thanks.
    Sukanya

    Hi Thomas,
    First of all, thanks a lot for replying !!
    Sorry for the confusion. Although seems like you have answered my question already.
    Actually the requirement for embedding WDA inside a BSP Iframe came up since there are some WD report applications  that are accessed by very controlled environments in which the users were not able to close the WDA session directly (without the IFrame)  and were getting some errors. Hence the WDAs had to be wrapped inside BSP IFrame which solved the above problem.
    I am working with only one BSP app which has the Iframe and one WD app which is called within the BSP app.
    Now, the other requirement that came up was that whenever the WDA session inside the BSP IFrame expires, there should be no error page and instead the WD app should be reloaded.
    So  I was trying to reload the WD App in the following way.
    1. For the SICF node of WDA, I attached an errorpage.htm for all the tabs under the tab 'Error Pages'. I have defined this errorpage.htm inside the same BSP App which has got another default.htm page. So the BSP App has 2 views : default.htm which has the IFrame and Errorpage.htm.
    2. So now when the WDA expires, the events of errorpage.htm are called like OnInitialization, In this event I was calling the methods navigation->exit( 'URL of the same WDA' ).
    I did this because I wanted to reload the WDA whenever it expires. I tried to specify the WDA Url in the SICF node of the same WDA in 'Redirect URL' under the Error Page tabs but it didnot work.
    Now I realize this is not gonna work. I didnot want to modify the WDA and so I didnot specify any exit plugs in the WDA which would have taken care of reloading the WDA. But that seems to be the only way out.
    Actually speaking there are multiple WDAs which will open inside the same BSP IFrame via their own Application URLs. I have coded the BSP IFrame to read the URL Parameters and open up the corresponding WDA.  So now I have to define an exit plug in all of these WDAs.
    Do you suggest that this will solve the problem of WDA refresh ? Just to confirm.
    Thanks again.

  • Using IFRAME in JSF to display a PDF file

    2 all,
    How do i display a PDF file inside a JSF page in a IFRAME tag?
    I store the PDF file location (like d:\images\pdf1.pdf) in my database. I cant give this location directly into the src attribute cos then the file will be rendered to only users who have access to that folder (the application is a internet application). IFRAME would be ideal as the display is very very neat (esp for pdf files).
    To get this working i tried the examples given in balusc blogs (on image servlet) but the problem is that my servlet is not getting called. Find below the web.xml and imageDisplay.jsp pages that i tried
    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>WorkFlowTool</display-name>
    <context-param>
      <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
      <param-value>server</param-value>
    </context-param>
    <filter>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
      <init-param>
       <param-name>maxFileSize</param-name>
       <param-value>20m</param-value>
      </init-param>
    </filter>
    <filter>
      <display-name>SecurityCheckFilter</display-name>
      <filter-name>SecurityCheckFilter</filter-name>
      <filter-class>filters.SecurityCheckFilter</filter-class>
    </filter>
    <filter-mapping>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <url-pattern>/faces/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <url-pattern>*.faces</url-pattern>
    </filter-mapping>
    <filter-mapping>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <filter-mapping>
      <filter-name>SecurityCheckFilter</filter-name>
      <url-pattern>/faces/*</url-pattern>
    </filter-mapping>
    <listener>
      <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    </listener>
    <servlet>
      <servlet-name>Faces Servlet</servlet-name>
      <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
      <servlet-name>Image Servlet</servlet-name>
      <servlet-class>servlets.ImageServlet</servlet-class>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>Image Servlet</servlet-name>
      <url-pattern>/imageServlet/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <session-config>
      <session-timeout>60</session-timeout>
    </session-config>
    <welcome-file-list>
      <welcome-file>/jsp/index.jsp</welcome-file>
    </welcome-file-list>
    <error-page>
      <error-code>500</error-code>
      <location>/jsp/error.jsp</location>
    </error-page>
    <resource-ref>
      <res-ref-name>jdbc/JDDS</res-ref-name>
      <res-type>java.lang.Object</res-type>
      <res-auth>Container</res-auth>
      <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    </web-app>
    imageDisplay.jsp
    <HTML>
    <HEAD>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c'%>
    <f:loadBundle basename="messages" var="msg" />
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <LINK rel="stylesheet" type="text/css" href="../theme/Styles.css"
         title="Style">
    </HEAD>
    <body topmargin="0" leftmargin="0">
    <f:view>
         <h:form id="CaseLookUp">
              <h:dataTable value="#{pc_ImageDisplay.dataModel}" var="var">
                   <h:column id="one">
                        <f:facet name="header">
                             <h:outputText value="H1" id="HOne"/>
                        </f:facet>
                        <h:outputText value="#{var.caseID}" id="IDONE"/>
                   </h:column>
                   <h:column id="two">
                        <f:facet name="header">
                             <h:outputText value="H2" id="HTwo"/>
                        </f:facet>
                        <h:graphicImage value="imageServlet?file=#{var.PODocPath}" id="image"/>
                   </h:column>
              </h:dataTable>
         </h:form>
    </f:view>
    </body>
    </HTML>The image servlet is what i got from balusc's site (http://balusc.blogspot.com/2007/04/imageservlet.html).
    I dont know why my servlet is not getting called. Can someone help me with this pls?
    okay let me post the modified code for my image servlet here
    public class ImageServlet extends HttpServlet {
         private static final long serialVersionUID = 1L;
         public void doGet(HttpServletRequest request, HttpServletResponse response) {
            // Define base path somehow. You can define it as init-param of the servlet.
    //        String imageFilePath = "/images";
            // In a Windows environment with the Applicationserver running on the
            // c: volume, the above path is exactly the same as "c:\images".
            // In UNIX, it is just straightforward "/images".
            // If you have stored images in the WebContent of a WAR, for example in the
            // "/WEB-INF/images" folder, then you can retrieve the absolute path by:
            // String imageFilePath = getServletContext().getRealPath("/WEB-INF/images");
            // Get file name from request.
            String imageFileName = request.getParameter("file");
            System.out.println("Inside the image servlet ---->>>> " + imageFileName);
            // Check if file name is supplied to the request.
    //        if (imageFileName != null) {
    //            // Strip "../" and "..\" (avoid directory sniffing by hackers!).
    //            imageFileName = imageFileName.replaceAll("\\.+(\\\\|/)", "");
    //        } else {
    //            // Do your thing if the file name is not supplied to the request.
    //            // Throw an exception, or show default/warning image, or just ignore it.
    //            return;
            // Prepare file object.
            File imageFile = new File(imageFileName);
            // Check if file actually exists in filesystem.
            if (!imageFile.exists()) {
                // Do your thing if the file appears to be non-existing.
                // Throw an exception, or show default/warning image, or just ignore it.
                return;
            // Get content type by filename.
            String contentType = URLConnection.guessContentTypeFromName(imageFileName);
            // Check if file is actually an image (avoid download of other files by hackers!).
            // For all content types, see: http://www.w3schools.com/media/media_mimeref.asp
            if (contentType == null || !contentType.startsWith("image")) {
                // Do your thing if the file appears not being a real image.
                // Throw an exception, or show default/warning image, or just ignore it.
                return;
            // Prepare streams.
            BufferedInputStream input = null;
            BufferedOutputStream output = null;
            try {
                // Open image file.
                input = new BufferedInputStream(new FileInputStream(imageFile));
                int contentLength = input.available();
                // Init servlet response.
                response.reset();
                response.setContentLength(contentLength);
                response.setContentType(contentType);
                response.setHeader(
                    "Content-disposition", "inline; filename=\"" + imageFileName + "\"");
                output = new BufferedOutputStream(response.getOutputStream());
                // Write file contents to response.
                while (contentLength-- > 0) {
                    output.write(input.read());
                // Finalize task.
                output.flush();
            } catch (IOException e) {
                // Something went wrong?
                e.printStackTrace();
            } finally {
                // Gently close streams.
                if (input != null) {
                    try {
                        input.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                        // This is a serious error. Do more than just printing a trace.
                if (output != null) {
                    try {
                        output.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                        // This is a serious error. Do more than just printing a trace.
        }

    Thanks Balusc!!
    I have made use of your code to display PDF files in an IFRAME tag too!!! I just dint believe that this would be possible. Please just take a look at my JSP page.
    <h:form id="CaseLookUp">
         <%
         String path = request.getContextPath()+"";
         out.print(path);
         %>
    <iframe scrolling="auto" src="<%=path%>/imageServlet?file=D:\70-229 V5.pdf" width="80%" height="600" ></iframe>
         </h:form>

  • How to use custom HTML page in flex web application with out using iframe

    Hi all,
              I have to import a custom HTML page (that has got links to another html pages) inside my flex web application and i dont want to use IFrame. Can you please suggest me with best example.
    Please help me out as i'm new to flex.
    Thanks,
    Swetha.

    Hi, there:
    Best thing to do is to start with the default login.html page, and then modify it. The login screen is fairly complex and it's easy to just miss a JS function you need to call. To get to default page, you would need to do one deploy (to simulator or whatever), and then look for login.html page in the temporary Xcode or Android project generated from the deployment. It should be under the "deploy" directory in your JDev workspace.
    You can also see all the framework JS files and CSS files that way as well.
    We have had customers implementing custom login screen so we know it can work, but they all had to start with the default login screen and then modify it.
    Thanks,
    Joe Huang

  • Cannot view SharePoint Online documents through CRM Online Outlook Connector - iframe error

    We are integrating CRM 2013 Online with SharePoint 2013 Online. We have installed the CRM List Component solution. We have also modified the SharePoint master page to permit display of SharePoint content in iframes. We can view SharePoint documents within
    CRM using Internet Explorer after setting the Documents link for an opportunity to point to a document set in SharePoint. However we cannot view documents through the CRM Outlook Connector. We receive the error that "This content cannot be displayed in
    a frame".
    We have tried adding *.sharepoint.com, *.dynamics.com, and *.microsoftonline.com to IE's Trusted Zone with no effect.
    The application launched by the Outlook Connector is called Microsoft.Crm.Application.Outlook.WebFormsHost and it's my understanding that it uses the IE engine to render online content.
    Is there anyway to view SharePoint content embdedded in CRM via an iframe with the Outlook Connector?

    I have the same problem here.
    The integration works fine outside of Outlook, but if, for example, an account is opened within CRM for Outlook the error occurs.
    - No masterpage modification
    - Some security setting in IE 11 (perhaps IE 11 is the problem)
    - Installed the solution in the used site collection
    - Configured CRM settings
    Dirk

  • Narrative Report with Iframe to dispay

    Hi,
    I have a Requirement for displaying activities of a contact on contact related information page in a calendar format, for this i've created report with calling calendar iframe in report and displaying it in the layout througjh webapplet but it showing all the activities instead showing the related contact activities in the calendar.
    Please see the report parameters and webapplet parameters below:
    Narrative Report:
    </td><td><iframe src="/OnDemand/user/GrpCalendar" width="830" height="400" scrolling="no" name="calendarFrame" onload="document.frames['calendarFrame'].scrollTo(170,115)"></iframe></td></table>
    Web Applet
    iframe frameborder="0" height="400px" width="100%" scrolling=auto src='/OnDemand/user/analytics/saw.dll?Go&Path=%2fshared%2fCompany_HE2790-1JAZ2_Shared_Folder%2fContacts_By+Calendar&Options=r&Action=Navigate&p0=1&p1=eq&p2=Contact."Contact ID"&p3=%%%Id%%%'></iframe>.
    Can anybody help me out to display the related contact activities in the iframe.
    Thanks & Regards
    Bhas.......
    Edited by: user10925194 on 21-Oct-2009 06:01

    Bhas,
    What you are including in the Narrative report will only show the user's calendar, there is nothing in your example which would modify the Calendar view to display activities related to a Contact. This is a fundamentally flawed approach and has no chance of working.
    You can use a web applet to display a report which shows Activities related to a Contact. To display these in a "calendar" format, you will need to completely build the calendar from scratch in html. Narrative can be used for this, perhaps, but it seems a lot of work. Unfortunately there are no shortcuts.
    Good luck,
    Louis

  • Problems displaying BO reports in an iframe in Firefox

    Hi,
    I have an aspx page which has an iFrame. I have provided the src for this iFrame as the BO report. When I open this page in IE, the report comes up properly. However when I open this page in Firefox, the report does not display. However if I open this URL directly in Firefox (paste the URL in the address bar), the report comes up correctly. I checked the HTML code that is generated at runtime for both the iFrame and directly on the firefox and found out that the styles that were used to display the report in iFrame was different than when used to display the report when opened directly in Firefox.
    Any idea why the style was getting changed? Cause this is what is causing the reports from not being displayed in iFrames.
    Regards,
    Rita

    if your project's name is businessobjects.
    first, modify the file
    path:businessobjects\enterprise115\desktoplaunch\InfoView\utils\utils.js
    find the following mothod,modify the content
    function findElementHelper(frame, Id) {
         // frames with certain plugins (word, excel) will cause a js error because the frame document doesn't exist
         if ((typeof(frame.document)).toLowerCase() == "unknown") return null;
         var f = null;
         try {
              f = frame.document.getElementById(Id);
         } catch(ex) {
              // Ignore this frame if we can't access it.  NS will return "Permission denied to get property
              // HTMLDocument.getElementById" on some frames (eg: external hyperlink page)
         if (f != null) return f;
         for (var i = 0; i < frame.length; i++) {
              f = findElementHelper(frame.frames<i>, Id);
              if (f != null) return f;
         return null;
    second,modify the file
    path:businessobjects\enterprise115\desktoplaunch\viewers\cdz_adv\scripts\IVIntegration.js
    find the mothod 'function canGoEdit()',modify the content
    try{
    var isAppsFrame=(myframe.thisIsAnAppsFrame && myframe.thisIsAnAppsFrame=="wishYouAreHere")?true:false;
    }catch(e){
         var isAppsFrame = true;

  • Iframe page doesn't display

    I have inserted code that works on another page of my site:
    <iframe src ="program/Directory/directory.html" width="590px" height="400px" frameborder="0" scrolling="yes">
      <p>Your browser does not support iframes.</p>
    </iframe>
    I inserted the same code, modified the path to a different page, and it does not work on the new page. Is there additional code that needs to be added?
    thanks

    You don't need an iframe for this.  To make a scrolling division or table cell, all you need is a CSS height value and the overflow property.
    CSS:
    #YourDivName {
    width: 150px;
    height: 300px; /**height in pixels**/
    overflow: auto;
    HTML:
    <div id="YourDivName">
    content goes here
    </div>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Multiple pages, how ApEx handle it? (iframe)

    Hello,
    I have a application used by many teams in my company. This application have a stantard layout for all the teams and now I´m developing a personalized layout for each team.
    How it will work?
    The application will have a page (main page) with some stantard fields, and a iframe with the personalized fields. The main page will call the page (iframe) correspondent to each team dynamically, this page is also a ApEx page.
    Page 1
    [Common layout]
    [Team A page 2 (iframe)] or [Team B page 3 (iframe)] or [Team XPTO page N (iframe)]
    [Common layout]
    My question is: Can I use iframe in ApEx without problems? I saw some topics that said to dont use iframes, but they dont explain why. How ApEx will handle those pages?
    Thanks in advance,
    Felipe

    Hi,
    I think i coldn´t explain what I´m trying to do, and my picture doesn´t help either! (Well, it´s already done :C)
    Sorry for that guys, let me try to be more specific:
    I´m developing a issue tracker system. That application is used by many teams in my company. Every team use the same interface. I made some authorization schemes, and other DB logics to make the data accessible only for those who can access that data, like, Team A cannont access/see/modify Team B data.
    The new chalenge: Some teams need aditional/different fields.
    What we already have, for example:
    Page "BUGS"
    [Bug_ID]
    [Creation_TS] [LastDiffe_TS]
    [Product][Component]
    [Reporter][Assigned_TO]
    [Summary]
    [Description]
    [Add comments]
    [Choose STATUS]
    (Submit)
    What we need?
    Page "BUGS" that Team A will see
    [Bug_ID]
    [Creation_TS] [LastDiffe_TS]
    [Product][Component]
    [Reporter][Assigned_TO]
    [Summary]
    [Description]
    [Source][Environment]
    [Contact][Phone][Location][Email]
    [Problem ID][Probaly Solucion]
    [...] <-- here we have anything that Team judge to be necessary to have here
    [Add comments]
    [Choose STATUS]
    (Submit)
    Page "BUGS" that Team B will see
    [Bug_ID]
    [Creation_TS] [LastDiffe_TS]
    [Product][Component]
    [Reporter][Assigned_TO]
    [Summary]
    [Description]
    [Problem root][Afected subsystems]
    [Solution Roadmap]
    [Estimed time to solution]
    [Responsible][Detected in version]
    [Correction PKG ID]
    [...] <-- here we have anything that Team judge to be necessary to have here
    [Add comments]
    [Choose STATUS]
    (Submit)
    Resuming:
    [Bug_ID]
    [Creation_TS] [LastDiffe_TS]
    [Product][Component]
    [Reporter][Assigned_TO]
    [Summary]
    [Description]
    [Dynamical content using iFrames]
    [Add comments]
    [Choose STATUS]
    (Submit)
    That´s what I was trying to show in that picture. Do you understand now? :)
    Thanks in advance,
    Felipe

  • Unable to access an iframe's contents

    I'm trying to determine if AIR for the desktop (for HTML/JS development) can allow access to the document of an iframe from another domain.  For example, I need to load an iframe for a remote site, and listen for submit events from that iframe and capture the contents.  I've been working with the sandboxRoot/documentRoot attributes for iframes, as well as tried parent/child bridge setups.  But while I can see the iframe element, I can never access its document.  It's not clear to me from the documentation if this is even possible.  Any pointers are greatly appreciated!
    Cheers,
    Bill

    I'm also working on the same issue.
    Interestingly, I'm sure I found a solution to this issue a way-back-when, when first playing with AIR/js, but I remember it being slightly convoluted and for the life of me can no longer remember exactly how I solved it. I believe it had to do with creating a Native window and setting the html content on that directly, and then having the remote sandbox set up properly to allow the reading of the page's html (the remote page) correctly. In theory the same shoud work for using an iframe embedded into a page, but maybe not.
    I'm wanting to inject some javascript into the page I'm viewing locally, to allow the manipulation of the DOM without having to modify the remote page beforehand.
    Here's an article where this seems to be solved for an AS3/Flex AIR project:
    http://cookbooks.adobe.com/post_Injecting_the_jQuery_library_into_a_page_loaded_in-19278.h tml
    and the (probably) relevant AIR docs page:
    http://help.adobe.com/en_US/air/html/dev/WS5b3ccc516d4fbf351e63e3d118666ade46-7f08.html
    Hope this helps. Will shout if I manage to figure it out properly again.
    Cheers,
    -Chris

  • ADF Tabe's Pagination link does not work when embedded in iframe

    Hi experts,
    When I embedded ADF table(with JSF) in iframe like below code, the pagination link does not work. Is it a known bug?
    <iframe width=100% height=500 src="http://rst-act3ct2.us.oracle.com:8888/test/faces/modify.jspx" frameborder="0" scrolling="no"></iframe>
    When I use <object> instead of <iframe>, the pagination works again. However, <object> could not be used in my project.
    Any idea on it?
    Thank you in advance.
    Regards,
    Tony

    Hi,
    if you are on JDeveloper 10.1.3 then chances are that the problem can be pointed back to the mismatch of HTML and JavaServer Faces. At least you should make sure you work with a recent JDeveloper 10.1.3 release
    Frank

  • White background colour in Iframe?

    Hi everyone
    I hope you are able to help me with this problem I am having:
    I am working with an Iframe, where I would like the
    background colour to be a specific colour, relating to the colour
    next to the Iframe.
    The colour sorounding the Iframe is this #E6E3D2, the
    background colour of the html-page to which I am linking in the
    Iframe is the same colour, but nonetheless, the Iframe keeps
    providing a white frame surrounding the content-html-page.
    I have tried to make the Iframe and content.html page the
    exact same width, but that just give me a vertical scroller + the
    white frame.
    This is what I mean:
    http://i439.photobucket.com/albums/qq112/GD-Klubben/Example.jpg
    Are there anyone out there, who can explane to me (in very
    slow and easily understanding phrases ;o)) how I can get rid of the
    annoying white background colour?

    No, I haven't uploaded it anywhere yet. Not before I can
    solve the problem.
    But the code to the index.html is this:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Grand Danois Klubben i Danmark</title>
    <style type="text/css">
    BODY {
    SCROLLBAR-FACE-COLOR: #FFFFFF;
    SCROLLBAR-HIGHLIGHT-COLOR: #000000;
    SCROLLBAR-SHADOW-COLOR: #FFFFFF;
    SCROLLBAR-3DLIGHT-COLOR: #000000;
    SCROLLBAR-ARROW-COLOR: #6699FF;
    SCROLLBAR-TRACK-COLOR: #000000;
    SCROLLBAR-DARKSHADOW-COLOR: #990000;
    </style>
    <script type="text/javascript">
    <!--
    function DWUSER_scrollbarStyler() {
    // This is a stand in JavaScript function that interacts
    with the Dreamweaver Behavior Menu.
    // Do NOT remove this function
    //-->
    </script>
    <style type="text/css">
    <!--
    /* ScrollbarStyler - DO NOT MODIFY THIS CSS!!! */
    html,textarea{scrollbar-track-color: #C6C1A3;
    scrollbar-face-color: #C6C1A3; scrollbar-highlight-color: #C6C1A3;
    scrollbar-3dlight-color: #C6C1A3; scrollbar-shadow-color: #C6C1A3;
    scrollbar-darkshadow-color: #C6C1A3; scrollbar-arrow-color:
    #C6C1A3;}
    <!--
    body {
    background-image: url(Andet/forsidefaerdig.jpg);
    background-repeat: no-repeat;
    background-position:center;
    background-color: #C6C1A3;
    <br />
    body,td,th {
    font-family: Trebuchet MS;
    a:link {
    text-decoration: none;
    a:visited {
    text-decoration: none;
    a:hover {
    text-decoration: underline;
    color: #D32F12;
    a:active {
    text-decoration: none;
    .style16 {font-family: "Tw Cen MT Condensed", "Tw Cen MT
    Condensed Extra Bold"}
    .style17 {color: #E6E3D2}
    .style21 {
    font-family: "Tw Cen MT Condensed", "Tw Cen MT Condensed
    Extra Bold";
    color: #000000;
    .style23 {font-family: "Tw Cen MT Condensed", "Tw Cen MT
    Condensed Extra Bold"; color: #FFFFFF; }
    -->
    </style>
    </head>
    <body>
    <div align="center">
    <table width="1143" height="582">
    <tr>
    <th width="1135" height="24"
    scope="row"> </th>
    </tr>
    <tr>
    <th height="550" scope="row"><table width="1023"
    align="left">
    <tr>
    <th width="109" height="547" scope="row"><table
    width="100" cellpadding="5">
    <tr>
    <th class="style23" scope="row"><div
    align="right"></div></th>
    </tr>
    <tr>
    <th class="style23" scope="row"><div
    align="right"></div></th>
    </tr>
    <tr>
    <th class="style23" scope="row"><div
    align="right"></div></th>
    </tr>
    <tr>
    <th class="style23" scope="row"><div
    align="right"></div></th>
    </tr>
    <tr>
    <th class="style23" scope="row"><div
    align="right"></div></th>
    </tr>
    <tr>
    <th height="210" scope="row"> </th>
    </tr>
    </table>
    <p><br />
    </p>
    <p><br />
    <br />
    <br />
    </p></th>
    <td width="106"><br />
    <table width="102" align="center" cellpadding="5">
    <tr>
    <th width="86" scope="row"><div
    align="left"><span
    class="style23">Forside</span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style21">Grand Danois</span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style16">Klubben</span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style16">Medlemskab</span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style16">Hvalpe</span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style16">Opdrættere</span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style16">Udstilling </span></div></th>
    </tr>
    <tr>
    <th scope="row"><div align="left"><span
    class="style16">Champions</span></div></th>
    </tr>
    <tr>
    <th height="24" scope="row"><div
    align="left"><span
    class="style16">Links</span></div></th>
    </tr>
    <tr>
    <th height="32" scope="row"><div
    align="left"></div></th>
    </tr>
    </table>
    <br />
    <br />
    <br />
    <br />
    <br /></td>
    <td width="792"><div align="center">
    <br />
    <br />
    <br />
    <iframe src="Underside Grand Danois.html" width="785"
    height="495" scrolling="Auto" frameborder="0"</iframe>
    </div></td>
    </tr>
    </table></th>
    </tr>
    </table>
    </div>
    </body>
    </html>

  • Implement an initial state in iframe for rss reader

    Hi,
    I am using the latest spry framework 1.6.1 and have implemented the rssreader in a web page. I have not changed any of the code on how this works but just modified the stylesheet to change its appearance. When the page is first loaded there is no content displaying within the iframe until one of the links from the sub-menu is selected as it should work. I am wondering however if there is a simple way to have an initial screen loaded in the iframe before anything is selected?
    Any help would be much appreciated.

    Just change the src of the iframe?
    <div id="RSSItemContent">
          <iframe id="RSSItemContentIFrame" src=""></iframe>
        </div>

  • Unable to view local HTML content from "Help Content Only" SSL  iFrame

    Hi
    Can anyone confirm whether it is possible to view local HTML files within an iFrame when generating Help Content Only SSL content which is also locally deployed?
    I have had no problem viewing local html files from within an iFrame with a locally viewed Browser-Based Help project but despite trying a number of variations on the syntax, I simply cannot obtain the same result from a Help Content Only SSL that is then incorporated within a merged help system. I can however create hyperlinks to view local content using the following syntax (file:/C:\folderName\fileName.html - the only drawback for local preview is that you must right-click and select "open in new tab"). Essentially, I am trying to eliminate the requirement to have to right-click and open in new tab to view local html files.
    The project I am working on is deployed both locally and remotely and this whole process is necessary for emergency management and business continuity purposes.
    I hope my explanation isn't too convoluted and would be glad to clarify it further if required. I would appreciate any assistance!

    Hi John
    I appreciate you and Peter obtaining this  information from Adobe and I appreciate your continuing patience in  trying to understand what I am doing.
    I will start  from the beginning and hopefully clarify my process when deploying my  application locally (my remote process differs somewhat but is not  germane to this discussion). Obviously this will contain some repetition from previous posts but I hope it helps...
    The project itself integrates content created from Adobe RoboHelp with content created within Adobe Dreamweaver
    First, I should mention that I am using RoboHelp 8 as I don't believe I have addressed which version I am using. There's nothing particularly unusual about the project itself.
    Utilizing Dreamweaver I have created a self-contained HTML-only (no server-side functionality) website which is placed at the root level of the C: drive
    Within the RoboHelp project I create a hyperlink to access the local HTML files from the RoboHelp topic pages. The process I use to do so is from within the HTML view of the specific topic page and I use the following file path: "file:/C:\folderName\fileName.html". The only end-user requirement is that they must right-click and select "open in new tab", otherwise the link does not work. Please note, this is ONLY required for accessing the local HTML files.
    I output my RoboHelp project using the Adobe Air SSL, with the output type set to "Help Only Content" which creates the .rha files. I utilize multiple .rha files within my project as each .rha file constitutes a module specific to an individual municipality (in my particular instance)
    I use the Help Viewer Wizard from the RoboHelp "Toolbox" pod to create what I refer to as the "shell" .air file. Once the "shell" .air file created from the Help Viewer Wizard is  installed, it creates a shortcut on my desktop.
    I place an XML .helpcfg file within the directory on C:Program Files where my "shell" .air file has been installed to reference each .rha module which must be placed at the root level of the C: drive in order to be properly referenced by the .helpcfg file
    By double-clicking on the desktop shortcut created in Step 6 it opens the "shell" module which, in turn, loads in each individual .rha file which can be accessed individually from the drop-down menu in the top-right corner
    Why do I do it this way?? My organization severely restricts admin privileges on our workstations. We have one IT person / several hundred officers so I needed to create a system where the only time we need IT assistance is in the initial installation of the "shell" .air file created from the Help Viewer Wizard and placement of the .helpcfg file within the C: Programs folder. Once this is done, because the .rha files are on the C: drive, I can swap these out and update as necessary (we currently have an annual renewal cycle) and we require no further IT intervention. The local system I have just described has hyperlinks to the online browser-based help so that users can also access it and see any content updates made throughout the course of the school year
    Having said all that, based on the model I have just described, I have been trying to create iFrames from within my RoboHelp 8 topic pages (placed on my C: drive) to access the local HTML Dreamweaver site (also on my C: drive). The problem I have been having is that the resultant iFrames display only a blank white page and I have tried a number of variations on the syntax of the file path without success.
    The process I have been using to create the iFrame is as follows:
    In Design view, select Insert >> HTML >> iFrame
    In the iFrame dialog box, provide a name for the iFrame and then navigate to the local file on my C: drive level Dreamweaver HTML-only website that I want to link to.
    Click "Apply" and from the resulting dialog box states that "This action will create an external link to the help system... Do you want to continue?", I click "Yes"
    The resultant file path is "../../../../../folderName/fileName.html" which obviously won't work but I have created the iFrame and now I switch over to HTML view and insert the file path that I have been using for the hyperlinks ("file:/C:\folderName\fileName.html"). I also modify the width to 100% and the height to 1000 px
    The user is not being directed to a different domain. So, if as Adobe states, that iFrames are "supported in local AIR Help (.rha) as well" then I don't know why it will not work for me. Again, this is the file path that allows me to create a hyperlink which will access my local Dreamweaver HTML files: "file:/C:\folderName\fileName.html" so if that syntax works for a hyperlink, why will it not work for the iFrame?
    The videos I referenced are also contained within the local Dreamweaver HTML site
    My usage of the term "merged help" may have been unclear and hopefully steps 1-8 outline what I am doing
    Again, I am very grateful to all who have joined this discussion to try to help me! I think it should be manifestly evident by now that I am self-taught and basically that's the only excuse I can offer in my defense for my poor articulation. Not too many years ago I wanted nothing whatsoever to do with computers!

Maybe you are looking for

  • Trying to reload adobe 10 and 7 on new computer. old one crashed. shows i need a serial number

    purchased adobe 10 and 7 -- 2012 and 2013 -- trying to install on new computer. old one crashed. shows i need serial number. where do i get it. only have 6 discs.

  • Expression syntax in TestStand 4.0 tutorial

    Hello All Teststand is new to me, and I am trying its tutorial with "Using TestStand" manual. At the Using TestSTand page 3-7, Insert a Template Step step 7, we insert a message popup "Retry if Previous Step Fails".  This step has post action "Goto S

  • OS freeze probably due to virtuoso

    Hi all, last week I installed fresh new (minimalistic) Arch installation with KDE (only base). Everything seemed fine but from time to time my PC freezes up and I'm not able to login in different tty. Investigating the issue I found out that systemd-

  • TS3406 my iphone4 mic not working

    my phone mic doesn't work on normal calls made via using network carrier. works normally on facetime and viber and we chat apps.

  • SAP Mobile Documents language

    Does any body know - is it possible to change the language of web form (/mcm/admin, /mcm/browser). I have two different versions of browser in terms of language (English and Russian).  But when I open for example /mcm/browser - I always see the Engli