When a portfolio is opened, can we load a document from a web page?

We have a number of pdfs that reside on a web site.
We are in the process of creating a portfolio for use in a different way and a number of these documents would be good additions to the portfolio.
We would prefer not to have to maintain these pdfs in multiples places (original web site  and the portfolio).
Is there a way with in a portfolio to load a pdf from a web site when the portfolio is opened?

First to permanently delete every trace of Babylon try here '''cor-el''' reply:
https://support.mozilla.com/en-US/questions/782060
second to set google as home page see here:
[http://support.mozilla.com/en-US/kb/How%20to%20set%20the%20home%20page How to set the home page]
* try to update firefox because you are in beta version 4.0b10 and it is unsupported and beta(trail unstable version)
thank you
Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

Similar Messages

  • Why can I not print anything from a web page?

    Why can I not print anything from a web page?

    Thank you, but I still haven't solved my problem. I tried the reset suggestion. But I cannot find print.print_printer preference. Maybe the word "printer" is to be replaced with the name of my printer. But because of the warning that making any changes is a very dangerous thing to do, I hesitated to do anything.
    I have located the Print to file option, but it is not checked.
    This problem did not exist before the Firefox update of about 6 months ago. Today I downloaded the latest Firefox update, hoping that would solve my problem, but it did not.
    Thank you for your continued assistance.

  • Can't update mysql records from a web page

    Hi everybody,
    I am beginning with Dreamweaver CS5.
    I followed a video tutorial on how to visually design a data entry/update web page for a mysql database using server behaviors.
    My problem is that I was able to insert records and see inserted records but when I try to update a record it doesn't work.
    I don't get any error message, it just redirects me to the listing page as it's supposed to but doesn't take into account the changes I made.
    Below are 2 printscreens along with the corresponding code.
    Can someone help me please?
    Records list web page :
    Records list code :
    <?php require_once('Connections/dw_nouvellenaissance.php'); ?>
    <?php
    // *** Display of registered users
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_dw_nouvellenaissance, $dw_nouvellenaissance);
    $query_users_videostream = "SELECT * FROM videostream_users";
    $users_videostream = mysql_query($query_users_videostream, $dw_nouvellenaissance) or die(mysql_error());
    $row_users_videostream = mysql_fetch_assoc($users_videostream);
    $totalRows_users_videostream = mysql_num_rows($users_videostream);mysql_select_db($database_dw_nouvellenaissance, $dw_nouvellenaissance);
    $query_users_videostream = "SELECT * FROM videostream_users";
    $users_videostream = mysql_query($query_users_videostream, $dw_nouvellenaissance) or die(mysql_error());
    $row_users_videostream = mysql_fetch_assoc($users_videostream);
    $totalRows_users_videostream = mysql_num_rows($users_videostream);
    ?>
    <!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>Videostream Users List</title>
    </head>
    <body>
    <h3 align="center">Videostream Users List </h3>
    <table  align="center" width="75%" border="1" cellspacing="0" cellpadding="0">
    <tr align="center" BGCOLOR="#99CCFF">
          <th>Surname</th>
          <th>Name</th>
          <th>City</th>
          <th>UserID</th>
          <th>Password</th>
          <th>Edit</th>
          <th>Delete</th>
        </tr>
    <?php do { ?>
        <tr align="center">
          <td><?php echo $row_users_videostream['Nom'];?></td>
          <td><?php echo $row_users_videostream['Prenom'];?></td>
          <td><?php echo $row_users_videostream['Ville'];?></td>
          <td><?php echo $row_users_videostream['user_name'];?></td>
          <td><?php echo $row_users_videostream['user_password'];?></td>
          <td><a href="modifyuser.php?User_id=<?php echo $row_users_videostream['User_id']; ?>"><img src="images/edit.png" alt="modifier" width="15" height="15" hspace="5" /></a>
          <td><a href="deleteuser.php?User_id=<?php echo $row_users_videostream['User_id']; ?>"><img src="images/delete.png" alt="supprimer" width="15" height="15" hspace="5" /></a></td>
        </tr>
    <?php } while ($row_users_videostream = mysql_fetch_assoc($users_videostream)); ?>
    </table>
    <p> </p>
    <p align="center"><a href="formlogoutadmin.php">Deconnexion</a></p>
    </body>
    </html>
    </body>
    </html>
    <?php
    mysql_free_result($users_videostream);
    ?>
    Udate records web page:
    Update records code:
    <?php require_once('Connections/dw_nouvellenaissance.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    //*** Update User
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "usersform")) {
      $updateSQL = sprintf("UPDATE videostream_users SET Nom=%s, Prenom=%s, Ville=%s, user_name=%s, user_password=%s WHERE User_id=%s",
                           GetSQLValueString($_POST['Nom'], "text"),
                           GetSQLValueString($_POST['Prenom'], "text"),
                           GetSQLValueString($_POST['Ville'], "text"),
                           GetSQLValueString($_POST['user_name'], "text"),
                           GetSQLValueString($_POST['user_password'], "text"),
                           GetSQLValueString($_POST['User_id'], "int"));
      mysql_select_db($database_dw_nouvellenaissance, $dw_nouvellenaissance);
      $Result1 = mysql_query($updateSQL, $dw_nouvellenaissance) or die(mysql_error());
      $updateGoTo = "showusers.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
        $updateGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $updateGoTo));
    $colname_users = "-1";
    if (isset($_GET['User_id'])) {
      $colname_users = $_GET['User_id'];
    mysql_select_db($database_dw_nouvellenaissance, $dw_nouvellenaissance);
    $query_users = sprintf("SELECT * FROM videostream_users WHERE User_id = %s", GetSQLValueString($colname_users, "int"));
    $users = mysql_query($query_users, $dw_nouvellenaissance) or die(mysql_error());
    $row_users = mysql_fetch_assoc($users);
    $totalRows_users = mysql_num_rows($users);
    ?>
    <!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=charset=iso-8859-15" />
    <title>Modify User</title>
    </head>
    <body>
    <h1>Welcome Daniel</h1>
    <h3 align="left">Please modify user fields then click OK</h3>
    <form action="<?php echo $editFormAction; ?>" method="POST" name="usersform" id="usersform">
    <input name="User_id" type="hidden" value="" />
    <table align="left" width="50%">
      <tr align="left">
      <th>Surname: </th><td><input name="Nom" type="text" id="Nom" value="<?php echo $row_users['Nom']; ?>" /></td>
    </tr>
    <tr align="left">
      <th>Name :</th><td><input name="Prenom" type="text" id="Prenom" value="<?php echo $row_users['Prenom']; ?>" /></td>
    </tr>
    <tr align="left">
       <th>City: </th><td><input name="Ville" type="text" id="Ville" value="<?php echo $row_users['Ville']; ?>" /></td>
    </tr>
    <tr align="left">
      <th>User ID:</th><td><input name="user_name" type="text" id="user_name" value="<?php echo $row_users['user_name']; ?>" /></td>
    </tr>
    <tr align="left">
    <th>Password:</th><td><input name="user_password" type="text" id="user_password" value="<?php echo $row_users['user_password']; ?>" /></td>
    </tr>
    <tr align="left">
    <td> </td><td align="left"><input type="submit" name="valider" value="Update" /></td>
    </tr>
    </table>
    <input type="hidden" name="MM_update" value="usersform" />
    </form>
    </body>
    </html>
    <?php
    mysql_free_result($users);
    ?>

    Daniel Cronin,
    This link has information on preparing movies for viewing online by an iPhone:
    https://developer.apple.com/iphone/devcenter/designingcontent.html
    Click on the drop down menu for "Ensure a Great Audio and Video Experience".
    You may need to register for Apple Developer Connection in order to view that information.
    Hope this helps,
    Nathan C.

  • Printing a document from firefox web page or Microsoft Word doc ument used to work just fine. All of a sudden I was unable to print a Word document. I can still print a web page. Any suggestions?

    I have a document from Microsoft Word that will not print. It's as if the printer is not connected when I attempt with the Word document. I have gone in and deleted any pending documents in Microsoft Word. I have restarted computer, as well as the printer. The printer does not seem to be connecting or responding to the Word program (cannot find spooler) Any suggestions?

    I have a problem similar to those posted here, with one difference. With my printers newly installed, regardless of which one is selected as the default, when I try to print from Adobe Reader I receive the error message we're talking about : "Before you can perform a print related task...."
    Here's the fun part.
    If I click OK on the message, ALL MY PRINTERS GET DELETED and, I get the windows message that "Spooler subsystem app has encountered a problem and needs to close"! If instead of clicking OK I switch to Task Manager and end Adobe, I'm fine and can print from other programs.
    I can "reset" the problem by deleting the files in C:\Windows\System32\Spool\Printers and C:\Windows\System32\Spool\Drivers\w32x86, restarting the machine, and deleting then reinstalling the printers (which show up again after the restart).
    BUT, if I try to print from Adobe Reader again, I get the same cycle of problems.
    I am running Windows Vista and Adobe Reader 8.1

  • Safari iPhone can't play QT movies from certain web pages

    I'm trying to reach QT movies from certain websites and I can't seem to get the streaming video to play in Safari on my iPhone.
    When I click on the link, it opens a new page. I briefly get a Quicktime logo, then I get a "cannot play" icon (triangle with a stop symbol).
    When I go through a regular browser, I can see the file is a .mov file. It seems to be a smallish file - about 2 minutes at 320x240 size? I don't know what the bit rate is.
    Any help would be appreciated. Thanks!
    By the way, I love my iPhone!

    At this time .Mov files are not compatible with the iPhone.
    The website would need to re-encode their movie into an H.264 video
    iPhone Video Specifications posted below
    http://support.apple.com/specs/iphone/iPhone.html
    Video
    Video formats supported: H.264 video, up to 1.5 Mbps, 640 by 480 pixels, 30 frames per second, Low-Complexity version of the H.264 Baseline Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; H.264 video, up to 768 Kbps, 320 by 240 pixels, 30 frames per second, Baseline Profile up to Level 1.3 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats

  • Can't create a PDF from a Web page using acrobat 8.0

    I am using Acrobat 8.0, + Mac 10.5. When, in Acrobat, the dialog box comes up (File>Create PDF from Web) I first enter the URL, then try to click on "Settings" but nothing happens. Then I get an error message. Is this a known problem?

    If the url is for a secured web site Acrobat can not always get the data as it is not logged into the web site. Some web features can not be converted to the PDF format. Is the web address correct? I would use cut and paste since some web addresses can be quite hard to type in.

  • When attempting to "print" to Adobe or create a pdf from a web page, the "pring/pdf" result has a bunch of unrecognizable characters on the page rather than letters/numbers

    here is an example
    !@#$$$%#@!@$%^^%

    You could open it in the XPS application and check print preview to see if it comes out as TSN suggests (and likely will). You can go to the printer properties and adjust the page size accordingly.
    You can also use the cropping in Acrobat to size all the pages and then use the Protect>Remove Hidden option to remove the cropped area.

  • When attempting to "print" to Adobe or create a pdf from a web page, the "print/pdf" result has a bunch of characters/jibberish on the page rather than recognizable letters/numbers

    What is causing this?

    You could open it in the XPS application and check print preview to see if it comes out as TSN suggests (and likely will). You can go to the printer properties and adjust the page size accordingly.
    You can also use the cropping in Acrobat to size all the pages and then use the Protect>Remove Hidden option to remove the cropped area.

  • How can i collect  email addresses from my web page viewers

    I would like to set up a way that if my website viewers are interested (volunterily), they can submit me their email addresses or phone numbers for further contact.
    How do I do this in iweb?
    thanks

    Welcome to the Apple Discussions. You can use a Wufoo form like Alancito suggested or create your own link on this demo page: Form Action comment form.
    The Form Action type of form uses the visitors email client to send the information to you. With Wufoo it's done from Wufoo. Wufoo does have a limit to the number of responses you get for free.
    OT

  • Why can I not download something from a web page?

    This is probably a stupid question, but I am totally new to this.
    This probably is not the appropriate place to ask, but is there a way to download a .exe that I need for a clients laptop (in the field) onto my iphone and then USB it to the laptop? I'm pretty sure about the USB part, but I was told by AT&T today that the iphone will not download programs like that from a web page. I do not want to run them on the iphone, just transfer them to a PC.
    Maybe I should return the phone.
    Thanks, your help is very much appreciated.
    David.

    The iPhone doesn't allow downloading of stuff (except saving of Pictures). It also doesn't allow you to take stuff off via the USB...there is no disk access to the phone, it is not a thumb drive. It is a closed and protected file system that requires iTunes to sync stuff to or remove...sorry.

  • When I click on a link from a web page opened in Safari I get a blank black screen. Why can't I see the contents of the page?

    When I click on a link from a web page opened in Safari I get a blank black screen. Why can't I see the contents of the page?

    Is this any link in any page, or one particular link in a particular page?

  • My problem is a sudden loss of ability to get to PSE12 Organizer when I tried to load a saved scan. Had been using the Organizer and the Editor with no problems for several hours just before that.     Can not load the Organizer from the icon at the bottom

    My problem is a sudden loss of ability to get to PSE12 Organizer when I tried to load a saved scan. Had been using the Organizer and the Editor with no problems for several hours just before that.  
    Can not load the Organizer from the icon at the bottom of  Editor screen, from the icon on the MacBook Air dock (OS 10.10.2),  nor from the file in applications located with Finder.
    I have tried without success to access Organizer after turning off and on the scanner, turning off and on the computer, loading a fresh copy of PSE12 from the CD, and restoring default preferences.  I have searched on line for other options but not  found any. 
    Can you help me?

    Not Charge
    - See:    
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. The cable for 5G iPod (lightning connector) seems to be more prone to failure than the older cable.
    - If a 5G iPod               
    Iphone 5 lightning port charging problem - SOLUTION!
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • Can't load website with .jsp - get blank page?  Doesn't happen all the time

    When I try to open American Eagle Outfitters website, I get a blank page and it will not open. The site is ending in index.jsp. I have 3 computers and it does it sporatically on all 3. ie. 1 may open the website, 2 won't or 2 might open website and 1 won't or none of the 3 will open. I know this has to be something simple but it has been doing this for about 3 months and it is driving me nuts because I can't get on there to pay my bill or even shop! Help!!
    Thanks

    I'm having the exact same problem! I've been using the website a lot recently, and then just about a week ago the website just wouldn't load. The page would go white and would say "Done" at the bottom of the screen. I tried googling the website to try and go in through there, and I can only seem to enter the site through "Find a Store Near You". Only this page seems to work, and whenever I click on "Women" or "Clearance" or "WishList" or anything else the page just goes white again and won't load. I've googled "websites won't load" and I've tried all the suggested steps and nothing seems to be working. I order off AE all the time and was ready to place an order, which I now can't do because I can't even sign in to the website.
    If you figure out how to fix it, email me at [email protected]

  • When I attempt to open a PDF file I saved from a website, I get the message "There was an error opening this document. The file is damaged and could not be repaired." Is there any way to correct this problem?

    When I attempt to open a PDF file I saved from a website using Safari, I get the message "There was an error opening this document. The file is damaged and could not be repaired." When I save the same PDF file using FireFox it opens up immediately. Is there any way to correct this problem with Safari?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Pages-when using template for envelopes can you import names/address from address book

    When using templates for envelopes can you import names/address from the address book?

    Drag the VCard from Address Book onto the open envelope template.
    If you want mutiple addresses make a Group of those in Address Book and drag the Group icon onto the Pages template.
    Peter

Maybe you are looking for

  • MacPro Kernel Panic Frequently

    We have a Mac Pro at work that is used for professional video editing and this one workstation ahs been crashing quote often in recent weeks. The context behind this panic was that he was rendering a video in Final Cut Pro 7 and using safari. Here is

  • Decimal places in Measurement tab for Land

    We lease-in Land in Acres. Typical land sizes require area to be defined in decimal units e.g 18.963 ACR or 256.755 ACR. However, in the measurement tab for creating Land the amount column is rounding off all decimal values to whole numbers. Like in

  • My Ipod Turns on automatically how do I get it to stop?

    Why does my nano turn on automatically?

  • Lenovo Y500 Lüfter maximal laut, wenn zweite Grafikkarte im Ultrabay

    Hallo.ich habe ein Y500 mit 2 650M Grafikkarten. Heute habe ich meine MSata gegen eine größere ausgetauscht, nachdem ich den Laptop wieder zusammengeschraubt hatte. hab ich ihn angemacht und alles war ganz normal- Allerdings hatte ich dei Grafikkarte

  • HT1414 problem restoring my iphone5 from recovery mode

    I tried to reset my iphone 5, however it went into recovery mode and after trying to restore it, it says 'The iphone could not be restored. An unknown error occurred'. I have downloaded the new itunes, restarted my laptop, etc is there anything else