Webpage view (a specific part of the webpage)

Hi There
I need to put a webpage view in my folio but rather to put the whole page, how can I do the select precisely the part that I want to have in my indesign page; Is it possible ??
It is to have a specific part of a Twitter last comments part.
Thanks

Hi Minia
Can you tell us some more details of the rest of the process? how do you implement the html file on the up right side of the page for example?
I tried to put the html file as A web content, all I get in the preview is a frame with the html code inside (look at the link below), I can't see the twit page. TIA
http://d.pr/7a1w

Similar Messages

  • Anyway to loop specific parts of the timeline?

    Hey, is there anyway to loop SPECIFIC parts of the time line, the way you can in Motion, Logic and some other audio programs.  That would really be nice as you can make changes while you watch in REALTIME.
    Thanks

    I tried both.  First i simply used "A" Seclect tool to highlight the part of the timeline that I want to loop. That didn't work. The cursor just continued after the highlighted part. Then I sued "R" range slection tool and selected part of the clip/s in the timeline and again, the cursor just continued after the end of the selection.
    In logic and other programs, you can create a section on top of the timeline where you want the loop to be and it will loop from those points.
    Any other ideas of what to do?  Thanks again

  • Is it possible to link text on a webpage to a specific part of a PDF?

    This may sound a strange question but I am looking to do the following and I was not sure if it was possible.
    I want to have some text on a webpage with a hyperlink that links to a specific chapter or paragraph of a PDF that has been uploaded to the same server as the web page.
    E.g. I upload a PDF file called CarReview.PDF.
    On the webpage I put some text, e.g.
    "In our findings we discovered that the blue car was the fastest.  You can click here to read more"
    The user then clicks the link and it opens CarReview.PDF on page 3, chapter 2 which has details about the blue car.
    I hope this makes sense and appreciate any advice people can give me.
    Thanks.

    You can link to pages or destinations:
    http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf

  • Embed a specific part of a webpage using iframes.

    Hi,
    I've had an in depth search of the forums and can't find anything to help me.
    I know to use iframes to embed a web page within a webpage but I want to choose a specific portion of a webpage - how do I do that?
    Thanks for your help.

    Peter Pitrelli Here wrote:
    I tried the piece of code you had provided for another website, but am not able to get it right.
    That won't work, web-clips is site dependent and page viewport dependent, so the code for other site won't apply to what you want to have.
    Here is your:
    <style type="text/css">#outerDiv{overflow:hidden;position:relative; width:200px;height:100px;} #innerIframe{ position:absolute;/* increase to nudge right, decrease to nudge left. Note negative number. */left:-823px;/* increase to nudge down, decrease to nudge up. Note negative number. */top:-403.5px;width:200px;height:100px;}</style><div id='outerDiv'><iframe id='innerIframe' scrolling=no src=''></iframe></div><script type='text/javascript'>_rect=new Array();_rect.push(-52.0);_rect.push(-364);_rect.push(274);_rect.push(364);_rec t.push(547);_rect.push(455);_outer=document.getElementById('outerDiv');_outer.st yle.width=_rect[4]+'px';_outer.style.height=_rect[5]+'px';_inner=document.getEle mentById('innerIframe');_inner.src='http://www.zshare.net/video/115850651ed07b1a /';_inner.style.top=_rect[1]+'px';_inner.style.left=_rect[0]+'px';_inner.style.w idth=(_rect[2]+_rect[4])+'px';_inner.style.height=(_rect[3]+_rect[5])+'px';</scr ipt>

  • Month view- I lose part of the event...

    When I am in month view, many events only show part of the event in the particular day. Such as "Soccer with Alex" will show in the day as " 10:00 AM Soccer with". Now, if you click on the event, you can see all of the details in the pane to the right, but this isn't really that convenient. I have the main window as large as it will go. Sometimes, if I add additional stuff to the event, such as "Soccer with Alex at the playground," it will show up fine. Anyone with any ideas?

    Jared,
    Unfortunately, what you are observing is a typical complaint regarding the iCal display.
    I recommend that you Provide iCal Feedback.
    ;~)

  • Website help: Creating a side bar then the main part of the webpage??

    Hi guys, im currently making a website in dreamweaver but ive coe into some problems and theyve got me stumped...
    basically, i have been using dreamweaver and ive managed to create a side bar for my website with separate div tages etc and now i want to create the main body of the page, eg the menu and the images but i cant get it do do what i want it to do...
    when i insert the div tag for the main body part of my page it is placed above the side bar when i want it to the side of it, inline with it.... /: its fustrting cust ive been able to style all of the side bar and ive wanted to complete the rest of the site but currently im unable to...

    OK, here is how you need to look at your page:
    The outermost defined area is the body. Generally, to set up a website, you create basic "applies to all" stuff in the body definitions in your style sheet:
    For example:
    body {
              font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
              color: #000;
              background-color: #FFFFFF;
              margin: 20px 0;
              padding: 0px;
    That's going to create normal paragraph text in the website as Lucidia Sans (or Lucidia Grande if the client doesn't have that defaulting to sans-serif if that is not available), text color is black, background is white, top margin is 20 pixels, clear left and right margins and clear all padding.
    Now, you need to enclose the "website" into something that encases everything and I usually call that an outer wrapper.
    .outer-Wrapper {
              width: 80%;
              max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
              min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
              background: #FFF;
              margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    Explanations in comments.
    Now, you set up the rest of your page:
    .header {
    #nav {
              margin-left: 20%;
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
    .sidebar {
              float: left;
              width: 20%;
              background-color: #cccccc;
              padding-bottom: 10px;
              color: #FFF;
    .content {
              padding: 10px 0;
              width: 80%;
              float: left;
              color: #000;
    Lastly, you want your footer to be below both columns, so you define that:
    .footer {
              padding: 10px 0;
              position: relative;/* this gives IE6 hasLayout to properly clear */
              clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
              background-color: #eeeeee; /*This makes it gray so that it is separated from the rest of the page, but isn't too dark for black text */
    Now, let's go to the html:
    Define your page. Dreamweaver will allow you to define a page as XHTML 1.0 transitional or strict or XHTML 1.1, HTML 4.01 transitional or strict or HTML5. Older versions of Dreamweaver have no HTML5 and may have older versons of HTML, but I either use XHTML 1.0 transitional or HTML5. There are good reasons for this.
    Dreamweaver will set up the site definitions depending on what you choose above the <head> area.
    Within the <head> area, you define the character set, give a title (make it unique for each page in your website) and point to your style sheet. You can use Dreamweaver's "Attach stylesheet." Any calls to JavaScript go here as well. If you have a separate style sheet for a drop-down menu structure or any other navigation, it will go there as well. Remember to close the <head> tag.
    Now, we define the body and go into the page:
    <body>
    <div class="outer-Wrapper">
    <div  ="header"> Header Goes Here</div>
    <div id="nav">Navigation placed here</div>
    <div class="sidebar">Your sidebar will go here</div>
    <div class="content">Your main content goes here and it will live to the right of your sidebar on the left</div>
    <div class="footer">I generally put the copyright information here and sometimes additional navigation in the footer</div>
    <div> <!-- Ends the outer-Wrapper -->
    </body>
    </html>
    This will absolutely work.

  • My add-on bar is beneath my Windows Taskbar, making it impossible to get to and hiding part of the webpage. How do I fix this?

    I also can't see the bar that comes up when I use ctrl+f.

    Hi,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • When I go on a page, content is not display UNTIL I go to that specific part of the page. Usually all content on a page is shown ahead of time. How do I fix it?

    The setting was there before. I remember an option for it, but I don't think it's there anymore.

    Hello,
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Is it possible to cut a photo? I mean, not in a square, but one specific part of the photo

    I need to make a Amnesty International thing for school. I found an photo of a boy with a gun. I need that boy and the gun, but i dont need the background. Is it possible to cut the boy out with iPhoto?

    No it doesn't. You'll need an editor with a lasso tool for that kind of work.
    In order of price here are some suggestions:
    Seashore (free)
    The Gimp (free)
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    Pixelmator ($50 approx)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate or the App Store.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.

  • Click on a image in the swf and go to a specific section of the page

    Can any one help me with this.
    I do have an SWF file (in the main html page) with 6 time
    frames. Each frame has 3 images. On the other hand I do have a
    second html page that is nothing but the main title and 18
    sections. Every section describes one the SWF’s images.
    What I am looking for is whenever I click on one of the
    images of the SWF file; I want to go to the specific section that
    describes the image I have just clicked on.
    Thanks alot

    I am trying to do this as well. I have a drop down menu that
    I have as an embedded SWF in my html page, and I want one of the
    buttons to take you to a specific part of the html page. Does
    anyone know how to do this? Using the #name like in html does not
    appear to work. Can't find the answer anywhere!!!
    Text

  • Using various parts of the same sound effect

    Hi,
    I am an intermediate flash user who has never really had any
    experience using sounds in my movies. Now i want to be able to use
    an mp3 (the james bond theme) in one of my movies. What i ideally
    want to be able to do is to use the one mp3 but have various scenes
    play only specific parts of the mp3. Can this be done. Every time i
    have tried to attach the sound to one of my layers it would only
    play from the beginning of the mp3. Is it possible to make the mp3
    play from specific points or will it always play from the beginning
    of the track?
    Many thanks in advance for any help.
    Rob Flook

    Flash's sound editing capabilities are very bare bones. There
    is a way but it isn't convenient or easy.
    Add your sound to your new scene and each time you will need
    to select the sound and in Properties
    Panel click EDIT - then you can use the sound editing panel
    to drag the marker in between the 2
    waveforms (it's hard to notice) and slide it horizontally to
    where you want the sound to start from
    - it's a blind process but you can click the play button to
    hear where you are in the sound file.
    urami is right - a dedicated audio editng tool is best for
    this - then import into flash as separate
    WAV files - easier to manage.
    ~~~~~~~~~~~~~~~~
    --> Adobe Certified Expert
    --> www.mudbubble.com
    --> www.keyframer.com
    ~~~~~~~~~~~~~~~~
    rflook wrote:
    > Hi,
    >
    > I am an intermediate flash user who has never really had
    any experience using
    > sounds in my movies. Now i want to be able to use an mp3
    (the james bond theme)
    > in one of my movies. What i ideally want to be able to
    do is to use the one mp3
    > but have various scenes play only specific parts of the
    mp3. Can this be done.
    > Every time i have tried to attach the sound to one of my
    layers it would only
    > play from the beginning of the mp3. Is it possible to
    make the mp3 play from
    > specific points or will it always play from the
    beginning of the track?
    >
    > Many thanks in advance for any help.
    >
    > Rob Flook
    >

  • How to navigate to a specific part of a page using Navigation Model

    Hi....
    I need to navigate to a specific part of the page using navigation models.
    When I click on a link it should navigate to a div in the middle of the page instead of showing page from starting.
    How to achieve this using webcenter navigation models?
    Thanks.

    Hi All,
    Even I have the same requirement in my project.
    I need to navigate to a specific part of a page instead to the top of page using navigation models.
    I have a navigation model with name aboutUsNavigation.xml which have 5 links(About Us, Contact Us, Carrers, ...).
    I have used the adf tree Component to show the links.
    <af:tree id="about" var="node" initiallyExpanded="false" summary="AboutUs" value="#navigationContext.navigationMode
    l['modelPath=/oracle/webcenter/portalapp/navigations/aboutUsNavigation'].treeModel['includeStartNode=false']}" >
    <f:facet name="nodeStamp">
    <af:commandImageLink id="cil2" text="#{node.title}"
    actionListener="#{navigationContext.processAction}"
    action="pprnav"
    icon="#{node.attributes[pageFlowScope.tnBean.iconKey]}"
    disabled="#{not node.navigable}"
    inlineStyle="#{node.onSelectedPath ? 'font-weight:bold;' : ''}">
    <f:attribute name="node" value="#{node}"/>
    </af:commandImageLink>
    </f:facet>
    </af:tree>
    All the 5 links should navigate to the about.jspx. but each to a part of the page. how to achieve this?_
    Thanks..

  • I started to learn HTML, and I'm using text edit and everything is going fine, when I save the file with a .html extension and open it with safari I only view the code and not the webpage that was supposed to be created.

    I started to learn HTML, and I'm using text edit and everything is going fine, when I save the file with a .html extension and open it with safari I only view the code and not the webpage that was supposed to be created.

    That is because you don't have a web server configured and running to serve the html page. In order to see the page in a browser you need to access it using a url similar to http://localhost/~yourUserName if you are serving the page from your user account.
    Prior to Mountain Lion you could go into web sharing and turn on the web server. With Mountain Lion there is no option, other than using terminal, to turn on the web server. The web sharing menu item has been removed in Mountain Lion. Apache is still on your computer but it will take a little searching these forums or the Internet to find how to turn it on.
    If you want a graphic user interface to turn on/off the Apache server you could download and install a server application like xampp, http://www.apachefriends.org/en/xampp.html. I use this and it works well.

  • The webpage your are viewing is trying to close the window

    Hi. I run an HTML script which in turn runs my Web Form and quickly closes the initial IE window (for neatness). However, it the user first is prompted:
    "The webpage your are viewing is trying to close the window.
    Do you want to close this window?"
    Do you know what causes this and how I can surpress the message?
    Thanks in advance.

    See Re: HELP - CLOSE WEB BROWSER

  • How to view the webpage of midlet webserver using webbrowser from computer.

    hello guys im trying the code from http://javaswamy.blogspot.com/2003/09/j2me-turning-your-phone-into-web.html
    here i want that to do.
    i want that my mobile run as webserver and i want to view the webpage in my laptop computer how to do that using datacable?
    i cant access the webpage from my mobile.
    j2me as webserver //<--
    connection via datacable //<--
    my laptop as a visitor of j2me webserver //<--
    thanks in advance.

    Moderator action: Moved from New to Java
    db

Maybe you are looking for

  • Internet connection drops with new HH4....

    I recently signed up to a new deal with BT and had to pay for my HH4. I have it all connected up the exact same way as my HH3. I am receiving a faster connection now but am now getting VERY frequent internet connection drops.... My PC is wired to the

  • Hp officejet pro 8500 will not print alignment page

    Hi, I saw that others on this thread where having similar problems and I was wondering if anyone could help. I have been having trouble with my HP Office Jet Pro 8500 Wireless (A909g series) printer with the print heads. Initially, it stopped printin

  • Screensaver of Death

    Brand new 13-inch MBP, upgraded ram to 4GB and replaced the HD with the 320GH 7200RPM drive from my previous MBP. Preformed an Archive & Install of the OS, everything works great. The problem is that the Screen-Saver pref pane kills the System Prefer

  • Why does rs.next() pause for sometime while retrieving records

    I'm trying to read records from the result set. At some point the rs.next() gets stuck. It takes lot of time to execute the rs.next() but the records are finally retrieved. Could some one tell me why this happens. I'm using a PreparedStatement to exe

  • Framing error on seriell port

    Hi, I am trying to read data from the seriell port. I doesn't know exactly the correct setting for communication with the external device, but I know, I use the correct baud rate. My problem is, I get from the "Bytes atseriell port.vi" the error 4008