Make all pages viewable from default URL?

I'm a bit confused about publishing to .Mac (as you can see from my other question.) I'd like my iWeb pages to be accessible along with my file-sharing page when I go to homepage.mac.com/myname. But when I go there, I only can see the file-sharing page. To get to my iWeb pages, I need to enter their very long, complicated, direct URLs. How can I fix this? Thanks.

To
get to my iWeb pages, I need to enter their very
long, complicated, direct URLs.
Your iWeb url is just this:
http://web.mac.com/username
You might want to use this and just link to your Homepage filesharing page via a hyperlink.

Similar Messages

  • Get all html files from a url

    Hi I am trying to do a website copyer and i don't know how get all the html from a url.
    By example:
    I want get all files html from http://forum.java.com/
    aAnybody has an idea of how to do this?
    Thanks

    Not easy. First, you'll have to look at networking programming - how to make URL connections etc.. Then, you'll have to look at HTML parsers - how to extract links, images, etc. from an HTML page. Also, you'll have to know how to do file I/O in order to save the HTML files obtained.
    I don't know of any Java-based web site copier open source projects that you can refer to, but you can take a look at the source code for projects such as HttpUnit and HtmlUnit. They contain code that'll help you with your web site copier.
    Good luck!

  • A script to make all page references into hyperlinks

    Hi,
    I have a customer request to make all pages references into hyperlinks.
    For example: when you see in the text of the PDF "page 4", you can click on it and move to page 4. This of course can be done manually with InDesign. The problem starts when you have whole load of them. In addition to that, I have this project as a book, with several different documents...
    I used the script "Automatic hyperlink of each word in a file" from http://www.nobrainer.dk/automatic-hyperlink-of-each-word-in-a-file/ as a base, and modified it for my porpuse. Currently it still produces errors. Any idea what's the bug?
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    var myHyperlinkStyle = myDocument.characterStyles.item("hyperlink"); // replace hyperlink with name of your char style for links
    //alert(myHyperlinkStyle);
    main();
    } else {
    alert("Please open a document");
    function main() {
    app.findGrepPreferences = NothingEnum.nothing;
    app.changeGrepPreferences = NothingEnum.nothing;
    //the value to find
    myFindVal = "page (\\d+)";
    doSearchAndReplace(myFindVal, app.activeDocument);
    // reset search
    app.findGrepPreferences = NothingEnum.nothing;
    app.changeGrepPreferences = NothingEnum.nothing;
    function doSearchAndReplace(stringfind, searchin) {
    app.findGrepPreferences.findWhat = stringfind;
    //Set the find options.
    app.findChangeGrepOptions.includeFootnotes = true;
    app.findChangeGrepOptions.includeHiddenLayers = false;
    app.findChangeGrepOptions.includeLockedLayersForFind = false;
    app.findChangeGrepOptions.includeLockedStoriesForFind = false;
    app.findChangeGrepOptions.includeMasterPages = false;
    var myFoundItems = searchin.findGrep();
    for (i = 0; i < myFoundItems.length; i++) {
    var item = myFoundItems[i].contents;
    //the destination page
    var destPage = item.slice(5);
    var myHyperlinkDestination = myMakeHyperlinkDestination(destPage);
    myMakeHyperlink(myFoundItems[i], myHyperlinkDestination);
    myFoundItems[i].applyCharacterStyle(myHyperlinkStyle, false);
    function myMakeHyperlink(myFoundItem, myHyperlinkDestination){
    try {
    var myHyperlinkTextSource = myDocument.hyperlinkTextSources.add(myFoundItem);
    var myHyperlink = myDocument.hyperlinks.add(myHyperlinkTextSource, myHyperlinkDestination);
    myHyperlink.visible = false;
    catch(myError){
    function myMakeHyperlinkDestination(myDestPage){
    //If the hyperlink destination already exists, use it;
    //if it doesn't, then create it.
    try{
    var myHyperlinkDestination = myDocument.hyperlinkDestinations.item(myDestPage);
    myHyperlinkDestination.name;
    catch(myError){
    myHyperlinkDestination = myDocument.hyperlinkPageDestinations.add(myDestPage);
    myHyperlinkDestination.destinationPage = myDestPage;
    myHyperlinkDestination.name = myDestPage;
    //Set other hyperlink properties here, if necessary.
    return myHyperlinkDestination;

    well, after some more digging into it, I found the bugs and corrected, here is the corrected version (now I only need to figure out how to do it on an entire book...):
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    var myHyperlinkStyle = myDocument.characterStyles.item("hyperlink"); // replace hyperlink with name of your char style for links
    //alert(myHyperlinkStyle);
    main();
    } else {
    alert("Please open a document");
    function main() {
    app.findGrepPreferences = NothingEnum.nothing;
    app.changeGrepPreferences = NothingEnum.nothing;
    //the value to find
    myFindVal = "page (\\d+)";
    doSearchAndReplace(myFindVal, app.activeDocument);
    // reset search
    app.findGrepPreferences = NothingEnum.nothing;
    app.changeGrepPreferences = NothingEnum.nothing;
    function doSearchAndReplace(stringfind, searchin) {
    app.findGrepPreferences.findWhat = stringfind;
    //Set the find options.
    app.findChangeGrepOptions.includeFootnotes = true;
    app.findChangeGrepOptions.includeHiddenLayers = false;
    app.findChangeGrepOptions.includeLockedLayersForFind = false;
    app.findChangeGrepOptions.includeLockedStoriesForFind = false;
    app.findChangeGrepOptions.includeMasterPages = false;
    var myFoundItems = searchin.findGrep();
    for (i = 0; i < myFoundItems.length; i++) {
    var item = myFoundItems[i].contents;
    //the destination page
    var destPageNumber = item.slice(5);
    var destPage = searchin.pages.itemByName(destPageNumber);
    var myHyperlinkDestination = myMakeHyperlinkDestination(destPage);
    myMakeHyperlink(myFoundItems[i], myHyperlinkDestination);
    myFoundItems[i].applyCharacterStyle(myHyperlinkStyle, false);
    function myMakeHyperlink(myFoundItem, myHyperlinkDestination){
    try {
    var myHyperlinkTextSource = myDocument.hyperlinkTextSources.add(myFoundItem);
    var myHyperlink = myDocument.hyperlinks.add(myHyperlinkTextSource, myHyperlinkDestination);
    myHyperlink.visible = false;
    catch(myError){
    function myMakeHyperlinkDestination(myDestPage){
    //If the hyperlink destination already exists, use it;
    //if it doesn't, then create it.
    try{
    var myHyperlinkDestination = myDocument.hyperlinkDestinations.item(myDestPage);
    myHyperlinkDestination.name;
    catch(myError){
    myHyperlinkDestination = myDocument.hyperlinkPageDestinations.add(myDestPage);
    myHyperlinkDestination.destinationPage = myDestPage;
    //myHyperlinkDestination.name = myDestPage.name;
    //Set other hyperlink properties here, if necessary.
    return myHyperlinkDestination;

  • Make all pages the same width?

    I've seen several answers to this question but they all seem to involve using an external app such as PDF Creator, Distiller, or something like that.
    I have a pdf with three pages with different widths.  From within Acrobat X, what is the easiest way to make all three pages the same width, or is that even possible without using an external app?  If it is possible, please describe how to do this step by step.
    By the way, I know there are steps that can be taken to avoid ending up with pdf's that have pages of varying lengths, but this question is not about that.  It is about existing pdf's.  Thanks a lot
    I am using Adobe Acrobat X version 10.0.0.396 on Windows XP Pro SP3

    Good question - I would say make all the page be the same width as the widest one.  In general, these pdf's will contain 8.5" x 11" pages, sometimes in combination with legal size pages.  The actual size of each page will differ depending on such things as who they came from and how they produced the pdf's, what software was used, which scanner was used, etc.
    Here would be an example pdf:
    The first 3 pages approximately 8.5" x 11" format.  The last 2 pages are legal size.  As you page throgh the document, the widths change.  My usual setting as I page through a pdf is Fit Width.  But in this pdf, the first two pages look right, the third page is too narrow, the fourth page looks right, and the fifth page looks too narrow.  So given that, How would I make all 5 pages the same width so that as I page through the pdf, the widths are all exactly the same, and not just appear the same?  If I have to choose which width they should all be, I'd say go with the widest one.
    If I need to run some javascript to accomplish this, that's ok - I'll strip it out before distributing the pdf.  Thanks

  • Make all pages in safari 7 secure

    Is there an equivilant to HTTPS Everywhere put out by EFF.org?  With Mavericks and all the security issues always coming up, and with the release of 10.9.1 recently, I'm wondering if there's an extension(s) someone knows about that I can use make any page that's offered to ALWAYS be an SSL supported page? Thanks!

    You might also change the PDF to be full width or full page instead of a percent. If you set this in the document properties, then it should held as you move around. It may be that you are changing a particular page and then move around, meaning the new page goes back to the default set.

  • My iPad 3 makes all photos transferred from my PC look like they have a yellowish colour cast.

    All photos transferred from PC have washed out, yellowish look to them. Same photographs appear fine on PC monitor and strangely, look fine when viewed through Flickr on iPad, not through Photos. All other colours look great on device. Same photos look fine too on my old first gen iPad. Any ideas?

    All photos transferred from PC have washed out, yellowish look to them. Same photographs appear fine on PC monitor and strangely, look fine when viewed through Flickr on iPad, not through Photos. All other colours look great on device. Same photos look fine too on my old first gen iPad. Any ideas?

  • Is there a way to make all page margins the same?

    I've exported a book file from indesign. Since the pages were in a book-type spread, the odd and even pages have different margins. The odd page has the bigger margin on the left, while the even has the bigger margin on the right.  Is there any way to make these identical after the fact. I can't go back and redo the indesign file.

    Thanks, there are 382 pages. Can't do them one by one.  And I purposely made the margins different in indesign, to give people more space in the middle.  The margins are as follows:
    But when I try to reverse the inside outside on one page of the spread, just reverse them, so the dimensions are the SAME, all the text and photos move.

  • How to make all pages in a PDF appear the same size?

    Hi, I am about to create many PDFs that show the bookmark pane and the document pane, with the document pane at 75%.
    If I create these PDFs to open as "single page continuous" and set the view at 75%, all scrolling is beautiful!
    But, if someone goes to a page by clicking a bookmark, the page views jump to a much larger size.
    How can I constrain the page view size to what I want?
    Karen

    You might also change the PDF to be full width or full page instead of a percent. If you set this in the document properties, then it should held as you move around. It may be that you are changing a particular page and then move around, meaning the new page goes back to the default set.

  • I always have to hit Control + 4 times to make all pages large enough to read and want to lock this size in on startup.

    Every time that I bring up FF on my 14" laptop, the page display is too small to read easily. I can go to (View) and "zoom" 4 times or hit (Control +) 4 times to give me a good sized page. I would rather have a (Option) choice that would save my personal setting for normal screen zoom for future uses of FireFox.

    The Firefox Page Zoom feature does a domain by domain level of saving the users preferred zoom level settings, there is no default Page Zoom level setting in Firefox.
    Try the Default FullZoom Level extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/6965
    Or the NoSquint extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/2592/

  • All pages/tabs from previous browsing sessions open.

    Well this is a truly annoying "feature" in Lion. I just upgraded from Snow Leopard. Every time I open Safari, windows open from a previous session.
    I've searched Safari's preferences and can't find anything to disable this. Even emptied cache. No luck. Same is true with certain other apps.
    This is not good, for the obvious reasons. Is there any way to disable this?  I know about logging in and out, seperate accounts, private browsing, but this is crazy as it requires MORE work not less. Whatever happened to keeping it simple?
    Thanks,
    M

    >System Preferences>General

  • Prevent all page color from becoming opaque when adding a watermark with opacity

    It looks like when I create a watermark AND change the opacity to something low the entire PDF becomes slightly opaque and colors are not that vivid (even if the actual text watermark is very small in the corner).
    The only way I noticed fixes this problem is if I check the option to "Keep position and size of watermark text constant when printing on different page sizes".
    See difference here:
    -- Normal - http://screencast.com/t/5bCfSP5Fba
    --Opaque - http://screencast.com/t/03qXJhR1ydh
    --This is the difference in black when zooming in: http://screencast.com/t/PPsMJiLiS
    Does anyone know what could be causing this? Is there a way to fix it without checking "Keep position and size of watermark text constant when printing on different page sizes"?
    Thanks!

    ALMOOOST!
    It did work but I don't understand why it worked on some pages and not on others. So when using this method, its worked completely fine when the watermark is applied to visible page. However, when the watermark is applied only to printed pages, some of those pages lose the water mark completely on print during the flatten/change blend space. I cant tell whats special about those pages that it works that way.
    Maybe it will be just easier to use the "Keep position and size of watermark text constant when printing on different page sizes" option when adding the watermark and then everything looks evenly perfect(just need to manually center the watermark position for each file). Curiously though, any idea what could be the correlation between the "Keep position and size of watermark text constant when printing on different page sizes" and the opacity of page when adding an watermark?

  • How do I clear the All Pages history from FF Mobile?

    Nothing more. Just that. Asus Transformer.

    The following article will walk you through how to clear your history:
    [[How do I clear recent history on Firefox for Android?]]

  • How do you make a Pages document default view larger?

    I can't figure out how to make my Pages 5.1 default view larger than 125%. I would like to change it to 150% as a default for all documents. Is there a setting somewhere?

    Although there is a setting for default page zoom in the Pages v5.1 plist file, setting this manually to any custom value, whether directly in the plist file, or via the Terminal, does not stick in subsequent Pages usage. This could be set and was retained in Pages ’09 v4.3, which you may still have installed in /Applications/iWork ’09.
    Other than the last sentence as an alternative, your only current recourse is to set zoom manually from the toolbar.

  • Can't add spry widget to page created from dreamweaver template

    Please help! I have created a template in Dreamweaver and
    from that template I have created an html page. I want to add
    different tabbed and/or accordion spry widgets to multiple pages
    however I keep getting an error when I try to add a widget to an
    editable region. I can add the widgets to the dwt file, but I do
    not want the same widget on all pages created from that template.
    Please advise!
    Thanks
    cycleguy

    If that's all that's on the child page you are in trouble.
    Anyhow, it appears to me that the template has not been
    properly created
    since I do not also see an editable region around the
    <title> tag in your
    code. Please read my previous post and follow the
    instructions.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "cycleguy" <[email protected]> wrote in
    message
    news:fu01pk$s7k$[email protected]..
    > Thank you for your reply.
    > I started with one of the built-in templates offered in
    Dreamweaver then
    > added
    > additional div's and formatting then saved it as a dwt
    file and created my
    > html
    > page from that template. I did not start the page from
    scratch. Below is
    > my
    > source code from the child page.
    >
    > <!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"><!--
    InstanceBegin
    > template="/Templates/DankaConnectionPortalTemplate.dwt"
    > codeOutsideHTMLIsLocked="false" -->
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > <title>Untitled Document</title>
    > <style type="text/css">
    > <!--
    > body {
    >

  • Page nos not printing on all pages

    I've a prob...The page no is printed only in the first or first few pages of a multi page report developed in discoverer and viewed using 3i viewer...can anyone pls tell me if that is the prob in code or is there any setting which i can change... What wud b the staus if i try to view the same report using 4i viewer instead of 3i?
    Also can anyone pls tell me if there are any significant changes in 4i viewere over 3i?
    Thanks

    Hi,
    Step 1: Select the parent frame of the summary column.
    Step 2: Open properties of that frame
    Step 3: Set the property "Print Object On" to "All Pages" value.
    (Default value for this property is "Last Page"
    Regards,
    Sailaja

Maybe you are looking for

  • 'Lost' media After ITunes Upgrade

    Hi - I have an older computer and have saved my ITunes library to an external harddrive owing to capacity limitations on my system. I recently updated ITunes to the latest version and it changed the media file location back to the main unit C:Drive,

  • Porta Runtime error in MDT

    Hi All,          When a single user access the MDT role in his portal he faces the below error: Portal Runtime Error An exception occurred while processing a request for : iView : pcd:portal_content/com.cw.folder.Content/com.cw.folder.content.roles/c

  • Macbook Air 11" Log-In Language Unchangeable. Please Help!

    Hello All I recently purchased this MacBook Air 11" from someone, and it had some folders in Asian (yes, I know Asian is not a language per se, but I do not want to say Simplified Chinese, or Japanese, or Korean, or whatever for fear of offending peo

  • FI postings to COPA

    When we transfer FI to PA , there are fields from and to cost elements. If our cost elements category 1 are not in same range and there are some category 11 cost elements in between them, then how do we enter them in Transfer FI to PA in KEI2? Becaus

  • What Software Do I need to add Chapter Markers

    I've got a 55 min QuickTime movie file that I'd like to simply add Chapter Makers as well as setup a Chapter Menu selection at that beginning. Also, I'd like to be able to render this file to a format that will playback on any DVD player. To be able