Can you create a web page for someone and then send it to them to use on their computer with a different iWeb?

I'm trying to help someone with designing one page for their already created iWeb site.
How do I save a version that they could open on their machine.
THANKS
D

And here's a movie that might help :
http://www.wyodor.net/_Demo/Aptana/iWebSites.html
Unfortunately, the website is offline. I didn't bother to call the Helpdesk. Others already did.
https://twitter.com/#!/onecom/status/144797191154827266
https://twitter.com/#!/search/%40onecom
So you may have to wait.

Similar Messages

  • HT201317 How do I create a web page for my slideshow?

    I created a slideshow.  I exported it, so now it is in my iTunes...and where else, I admit I do not know.  When I exported it, I didn't understand where I was exporting TO.
    Anyway, I know I saw somewhere that I can create a web page for my slideshow that will allow my family to come (by invitation) to view the slideshow.
    How do I do this?
    Any help will be appreciated since I spent about 12 hours putting this show together and now would like to share it with my family.
    Thanks!
    peace.

    That's done with iPhoto in creating a Shared Photo Stream with the video. The slideshow must be in iPhoto. Then follow the steps in this screenshot:
    OT

  • How can I make a intro page for my website, then after the intro has run make the page automatically change to my we site home screen

    how can I make a intro page for my website, then after the intro has run make the page automatically change to my website's home screen

    You can do this using a meta refresh but the problem is you have to add it to the html file for the page very time you publish changes.
    A better way is to create a splash page and upload it to the server outside of the folder produced by iWeb. Example HERE.
    The meta refresh is added to the head section of the html file...
    <meta http-equiv="refresh" content="32;url=http://www.domain.about.com/Page-Name.html">
    The delay time in seconds is marked in blue and the URL to the redirect page is in red.

  • How can I create back up dvds for itunes and how do I back up from existing dvds?

    How can I create back up dvds for itunes and how do I back up from existing dvds?

    Recovery Mode:
    1. Turn off iPad
    2. Connect USB cable to computer; leave the other end alone
    3. Press and hold the Home button down and connect the docking end of cable to iPad
    4. Continue holding the Home button until you see the "Connect To iTune" screen
    5. Release the Home button
    6. Open iTune
    7. You should see "iTunes has detected an iPad in recovery mode"
    8. Use iTune to restore iPad
    Note: You need to be patient and repeat the above many times to recover your iPad

  • Can you set a web page as a 'home page' on the i phone safari as you would?

    Can you set a home page or will the safari button always take you to the last web site you were on?

    You cannot set a Home Page in Safari but if you save your favorite bookmark to the home screen, you can use that to open the browser on iPhone.
    To do this:
    Open Safari and open the page you want for the "Home Page".
    Tap the "+" at the bottom of the screen and select "Save to Home Screen"
    You can then name it whatever you wish and tap Save.
    This will create an icon on the home screen that you can tap on to always open Safari to that page.

  • How can you create a customized page to change user password?

    Hello to all,
    I would like to create a customized page for a user to change their password. We are using Portal version 3.0.9 on Windows NT/2000. Currently there is a page in portal where a user can change their password.
    I tried linking to that page by copying the shortcut url and adding it as an html portlet. The problem is that we want to direct the users to a
    page of our choosing when they click on the "cancel" and "ok" buttons. I read in the forums that there is a selfreg.cmd script.
    I also read that there is some code that has been available.
    Has anyone implemented a customized user password change page? Do you know of any links that might have steps to follow or
    more informatioin?
    Thanks in advance,
    Lindsay

    Hi,
    I was able to customize the change password screen through a procedure. This is what I did:
    * Created a procedure under the Portal30_sso schema:
    CREATE OR REPLACE procedure reports_chage_password
    site2pstoretoken in varchar2 default null
    ,p_username in varchar2 default null
    ,p_error_code in varchar2 default null
    ,p_submit_url in varchar2 default null
    ,p_done_url in varchar2 default null
    ,p_pwd_is_exp in varchar2 default null
    ,p_password in varchar2 default null
    is
    begin
    htp.htmlopen;
    htp.headopen;
    htp.title ('<TITLE of Page>');
    htp.headclose;
    htp.bodyopen;
    htp.p('<table width="100%"><tr><td colspan=2 align=center><IMG SRC=<directory of image if you want>"><br><hr><br></td></tr>');
    htp.p('<tr><td colspan=2 align=center>');
    htp.p('<font COLOR="#000080" face="Times New Roman" size=+2><b>');
    htp.header(nsize => 1 ,cheader => 'Change Password');
    htp.p('</b></font>');
    htp.p('</td></tr><tr><td align=right>');
    htp.formopen(curl => p_submit_url );
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Username:');
    htp.p('</td><td alight=left><font color="#000080" face="Times New Roman" size=+1>');
    htp.p(p_username);
    htp.p('</font>');
    htp.p('</td></tr>');
    htp.formHidden(cname => 'p_username',cvalue => p_username);
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Old Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_old_password',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('New Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_new_password',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Confirm New Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_new_password_confirm',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.p('<tr><td rowsapn=2>');
    htp.formHidden(cname => 'p_done_url',cvalue => '<the url that you want users to go to when they are done>');
    htp.formHidden(cname => 'p_pwd_is_exp',cvalue => p_pwd_is_exp);
    htp.formHidden(cname => 'p_password',cvalue => p_password);
    htp.formHidden(cname => 'site2pstoretoken',cvalue => site2pstoretoken);
    htp.p('</td></tr>');
    htp.p('<tr><td align=right>');
    htp.formSubmit(cname => 'p_action',cvalue => 'OK');
    htp.p('</td><td align=left>');
    htp.formSubmit(cname => 'p_action',cvalue => 'CANCEL');
    htp.p('</td></tr></table>');
    if p_error_code is not null then
    htp.br;
    htp.fontOpen(ccolor=> 'red', csize=> 4);
    if p_error_code = 'auth_fail_err' then
    htp.p('Old password is incorrect');
    elsif p_error_code = 'pwd_rule_err' then
    htp.p('The new password does not follow '||
    'the password policies.');
    htp.br;
    htp.p('Verify with your System Administrator '||
    'about the Password Policies');
    elsif p_error_code = 'confirm_pwd_fail_txt' then
    htp.p('Confirmation for new passord is not '||
    'the same as the New Passowrd');
    elsif p_error_code = 'null_new_pwd_err' then
    htp.p('New password cannot be null');
    elsif p_error_code = 'null_old_pwd_err' then
    htp.p('Old password cannot be null');
    else
    htp.p ('Error: ' || p_error_code );
    end if;
    htp.fontClose;
    end if;
    end;
    * Grant this procedure to PUBLIC
    * Update the portal30_sso.wwsso_ls_configuration_info_$:
    UPDATE portal30_sso.wwsso_ls_configuration_info_$
    SET LOGIN URL = '<YOUR CUSTOM LOGIN URL OR THE WORD UNUSED IF YOU DON'T HAVE ONE> http://<MACHINE_NAME>.<DOMAIN>/pls/portal30_sso/portal30_sso.<NAME OF PROCEDURE>';
    * After you update the table, go to your account information link, and click on the change password link.
    * Then copy the url that you see in your address line
    * And if you want a change password link at the top of your portal page, just go to EDIT on your page, then edit the banner defaults. Then in the links add the Lable and the URL. The URL would be the URL you copied from the previous step.
    Hope this helps.
    I've customized the login page too if you would like some sample code for that. Let me know.
    Martin

  • Can we edit simultaneously in Pages for iCloud and Pages for OS X?

    I know that it's possible for multiple users to edit a document in Pages for iCloud (beta). But what happens if one user is using Pages for iCloud, and another person is editing the same document in Pages for OS X? Will the changes be updated in real time? Is there a danger of creating two different documents, as sometimes happens in Dropbox?
    I ask because Pages for Mac still offers more features and tools than Pages for iCloud. So some users may be able to work in the iCloud version, but at least one of wants to use the OS X version to make the final graphic tweaks and edits. Is this possible, or are we asking for trouble by using two different editions of Pages?

    Well... it looks like you were right. While Pages for iCloud theoretically supports simultaneous editing, in actual practice it's very difficult. There's no way to add comments or chat (as Google Docs allows), so it's hard to discuss what each of us is doing. And certain UI elements work differently in the OS X vs. iCloud versions, so results can be unpredictable.
    iWork for iCloud will only succeed when all versions of the iCloud apps (OS X, iOS and iCloud) are 100% compatible with each other. Fingers crossed.

  • How can I read the active (plugged in) DAQs and then send that to the device name input on DAQ assist?

    I have a system property node for daqmx but it does not let me change it to read when i right click on it. I am trying to have my program detect the name of the daq that is plugged in to the PC and then send that to daq assistant so that it will run properly wiithout me manually having to change the device name every time i switch hardware.
    Solved!
    Go to Solution.

    labview12110 wrote:
    Im just frustrated that the only function I have is to get a list of things that I can't do anything with. MAX knows which is active can I call it up somehow?
    You have do do programming.  That is what LabVIEW is.  MAX gives you all the tools to do everything you want and much more just program it to do what you want.
    Attached is a VI that I think does what you want.  I looks at all of your devices and returns the first non simulated one.  Apparently this list already excludes devices not connected to the system.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.
    Attachments:
    Find Non Simulated Device.vi ‏6 KB

  • Can two people use the same computer with two different ipods?

    I was just wondering if me and my mother can use the same computer with our ipods?

    Glad you asked. Before you get rid of the old one move its iTunes Library to the new one:
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    "Deauthorize" the old computer too. Go to the iTunes Store menu and select "Deauthorize This Computer..."
    I hope you get a Mac this time

  • Can I create a web page without .Mac Account?

    Hi all,
    Quick question: Is there any way to create a gallery for the web using iPhoto if you don't want or have a .Mac account? I have my own domain and hosting and I'd like to simply have iPhoto build the site, which I can upload to my own server.
    I've found no information on this possibility and I suspect that it doesn't really fit into Apple's, uh.. non-freemarket business plan.
    Any ideas? Thanks in advance!

    Hi newworld border,
    You sure can! Select the photos/album and go to Share>export
    In the export window there is a web page button
    hit that and set your options.
    there is also a plugin for iPhoto called BetterHTMLExport for iPhoto on Mac OS X
    This plugin gives you more choices for your web creation.

  • Can I create a web page in Contribute with restricted access?

    We use Contribute to edit and update our property website.  I would like to create a page that will display on the website but only to those that have the login and password to look at it.  Can I do that?

    Hi newworld border,
    You sure can! Select the photos/album and go to Share>export
    In the export window there is a web page button
    hit that and set your options.
    there is also a plugin for iPhoto called BetterHTMLExport for iPhoto on Mac OS X
    This plugin gives you more choices for your web creation.

  • How can you create a multi-page pdf document in photoshop elements 13?

    I previously had pse 11 and was able to create multi-page documents as pse files. However, pse 13 does not allow. How can I create multi-page pdf files from pse 13?

    Alas, for one of those mysterious adobe reasons, it's gone in recent versions. Only multipage file you can make is a photobook.

  • Can I save multiple web pages for offline viewing?

    I'm just about to head off on a big trip and there's a great travel website that I'd like to save.
    I dimly remember in the early 2000s it was possible to save an offline version of a webpage and specify how many depths of links also to save, i.e. you could save a page, all the linked pages on that page, all the linked pages on those linked pages and so on.
    I'd really like to do that so I can access this website and one layer of (internal) links for offline viewing.
    I'm on a Macbook Pro with 10.6.8 with Safari 5.1.10 (but can access a MB Air with 10.9.x if need be).
    Any help appreciated!

    http://www.sitesucker.us/mac/mac.html
    try the newer version, since the 10.6 one at least doesn't handle depth (limits : levels in the preferences) very sensibly for saving webpages.

  • How to create a web page for a transaction code

    Hi All,,
    i ve created a T-code for a program and i want to put tat T-code in to web page or BSP page or as a web link.
    Is their any way to do that.. If yes,, please tell me the procedure of how to do it,,
    Thanx in advance,,
    Ill assign points
    Dinesh

    I wanted to call the transactio code from a web link or web page,, i ven't created any BSP or any web page,,
    Till now, i ve created a transactio code for a ABAP program,..
    i need to make it as a web page..
    regards

  • Can I create an iTunes account for someone else?

    I just bought an ipod for my parents, who are not exactly techno-savy. I was wondering if it would be possible to create an iTunes account on my computer, get their music collection started, and then mail the ipod to them with all the account info so they can just log in and go. Is this possible?

    Yes.

Maybe you are looking for