Starting a new document with just one new site?

It seems that every little "site" I create ends up in the sites panel, cluttering things up.
I would like to refer to old sites sometimes, maybe, but most of the time I just want to start fresh and think only about the site I'm working on.
Is there a way to just have the current site in an iWeb document without seeing all the sites you've created back to the beginning of time?
Thanks,
doug

If you're referring to just sites created in iWeb,
consider using iWebSites. I use iWebSites</
a> to manage multiple sites.. It lets me create multiple
sites and multiple domain
files.
If you have multiple sites in one domain file here's
the workflow I used to split
them into individual site files with iWebSites. Be
sure to make a backup copy of your Domain.sites files
before starting the splitting process.
This lets me edit several sites and only republish
the one I want. This way each site is a separate
file and can be handled separately.
I think my problem is simpler than that. Rather than wanting to use iWeb as a website management tool doing something complicated like that, what I would like to do is use it as a web authoring tool - create pages, publish them to folders, and later open them open again if I want to change things. So each folder would have a "project" file associated with it I guess.
doug

Similar Messages

  • New Window from "FILE- NEW-WINDOW" duplicates all the currently open tabs in the new window. I want new window with just the "Home" tab please?

    Running Firefox 3.6.13 on 64Bit Win7.
    I like to group tabs on a topic in a window, and when the tabs get to be too many, or a new topic, I do FILE->NEW-WINDOW and expect a new window with just one default (Home) tab. Instead I get a new window with ALL the tabs of the first window.
    I have checked all the Options I could find. Nothing helped. I CAN make a new Window with just one tab if I right-click a link and say "Open in NEW Window".

    A new window should only open with the home page(s).<br />
    If you see differently then you need to check your extensions.
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

  • How to create a new document with a given theme, instead of choosing it every time.

    Hi,
    for work I only use a custom made keynote theme.
    I've already deleted all the default themes, and the only one that is listed in the app is the one I actually use.
    However every time I create a new document I have to chose its theme (that's normal having plenty of themes, but in my case is just a waste of time).
    I was wondering if there's a way to tell keynote to start a new document with a given theme, in order to avoid to chose it every time.
    Thank you for reading and for the help you will give.
    Giacomo

    Keynote > Preferences > General tab
    select “Use theme,” and then click Choose to select a theme.

  • JS - Center Selection to Artboard / New Document with certain Artboard size

    TL;DR:
    how do I center my current selection to the artboard?
    just like hitting the "horizontal align-center" and "vertical align-center" buttons.
    Hi,
    I've been searching for the last two hours and before my head hits the keyboard I wanted to ask you for help.
    What I'm struggling with:
    in my init function i create a new document and then copy all layers from the previous document step by step to the new document and then save it as SVG.
    // Init
    (function(){
              destination = Folder.selectDialog('Select folder for SVG files.', docPath);
              if (!destination){return;}
              holderDoc = app.documents.add();
              stepThroughAndExportLayers(docRef.layers);
    my problem is that holderDoc = app.documents.add(); always creates a document that is not the same size as my initial document where the layers get copied from.
    so I want the exact same artboard size as in my initial document.
    I'm fine with either doing it as fixed values or taking directly the values of the inital doc.
    i tried this in the segment where I create the new document:
    // Init
    (function(){
      destination = Folder.selectDialog('Select folder for SVG files.', docPath);
      if (!destination){return;}
      holderDoc = app.documents.add();
      holderDoc.artboards[0].artboardRect = [0,0,128,128];
      stepThroughAndExportLayers(docRef.layers);
    and get this error message:
    "Error 1200: an Illustrator error occured: 1346458189 ('PARM')
    Line: 83
    -> holderDoc.artboards[0].artboardRect = [0,0,128,128];"
    which from what I've read on the web means that illustrator doesnt know what document to pick. but i have called it directly. so what could be the issue?
    to clearify: I do not want to fit the artboard to the images/layer. the artboard should always have a certain size. (for me 128px by 128px)
    I would highly appreciate you helping me with either fixing my approach or propose a completely new one.
    Thanks so much in advance.
    // edit: workaround
    (function(){
              destination = Folder.selectDialog('Select folder for SVG files.', docPath);
              if (!destination){return;}
              var activeArtboard = app.activeDocument.artboards[app.activeDocument.artboards.getActiveArtboardIndex()];
              var ABRect = activeArtboard.artboardRect;
              holderDoc = app.documents.add();
              holderDoc.artboards.add(ABRect);
              holderDoc.artboards.remove(0);
              holderDoc.artboards.setActiveArtboardIndex(0);
              //stepThroughAndExportLayers(docRef.layers);
    i now added a new artboard to the new document with the same size as the artboard on the initial document.
    i remove the predefined artboard on the new doc and set the new artboard as active.
    BUT!
    the artboard is now not centered into the window. which lets illustrator place my image with ctrl+c -> ctrl+v somewhere outside the artboard.
    i now need to align my selection to the center of the artboard. but i cant find any reference on how to center a selection to the artboard.

    yes of course. i never modify the author's comments in original scripts.
    but I wont post the script anywhere when it doesnt work anyway haha.
    this is what I've done now:
    // Init
    (function(){
              destination = Folder.selectDialog('Select folder for SVG files.', docPath);
              if (!destination){return;}
              var activeArtboard = app.activeDocument.artboards[app.activeDocument.artboards.getActiveArtboardIndex()];
              var ABRect = activeArtboard.artboardRect;
              // create new document with same artboard as original
              holderDoc = app.documents.add(DocumentColorSpace.RGB, new UnitValue ((Math.abs(ABRect[0]-ABRect[2])), "px"), new UnitValue ((Math.abs(ABRect[0]-ABRect[2])), "px"));
              stepThroughAndExportLayers(docRef.layers);
    in order to create the new document with the same dimensions as my orignal doc, I first read the artboardRect dimensions of the current artboard and then create the document with those values passed as parameters. the calculation is to get the real width since artboardRect gives you left,top,right,bottom values and not just height and width.
    this only works for square formats though. to make it properly you'd have to change the second "new UnitValue" to use the top and bottom values of artboardRect but I currently dont need to do so.
    * Layers to SVG - layers_export.jsx
    * @version 0.1
    * Improved PageItem selection, which fixed centering
    * @author Anton Ball
    * Exports all layers to SVG Files
    * I didn't want every layer in the SVG file so it first creates a new document
    * and one by one copies each layer to that new document while exporting it out
    * as an SVG.
    * TODO:
    * 1. More of an interface wouldn't hurt. Prefix option and progress bar of some description.
    // Variables
    var docRef = app.activeDocument,
              docPath = docRef.path,
              ignoreHidden = true,
              svgExportOptions = (function(){
                        var options = new ExportOptionsSVG();
                        options.fontSubsetting = SVGFontSubsetting.GLYPHSUSED;
                        options.embedRasterImages = true;
                        options.fontType = SVGFontType.OUTLINEFONT;
                        return options;
              destination, holderDoc;
    // Functions
    var stepThroughAndExportLayers = function(layers){
              var layer,
                        numLayers = layers.length;
              for (var i = 0; i < numLayers; i += 1){
                        layer = layers[i];
                        if (ignoreHidden && !layer.visible){continue;}
                        copyLayerTo(layer, holderDoc);
                        // Resize the artboard to the object
                        selectAll(holderDoc);
                        exportAsSVG(validateLayerName(layer.name, '-'), holderDoc);
                        // Remove everything
                        holderDoc.activeLayer.pageItems.removeAll();
              holderDoc.close(SaveOptions.DONOTSAVECHANGES);
    // Copies the layer to the doc
    copyLayerTo = function(layer, doc){
              var pageItem,
                        numPageItems = layer.pageItems.length;
              for (var i = 0; i < numPageItems; i++){
                        pageItem = layer.pageItems[i];
                        pageItem.duplicate(holderDoc.activeLayer, ElementPlacement.PLACEATEND);
    // Selects all PageItems in the doc
    selectAll = function(doc){
              var pageItems = doc.pageItems,
                        numPageItems = doc.pageItems.length;
              for (var i = 0; i < numPageItems; i += 1){
                        pageItems[i].selected = true;
    // Exports the doc to the destination saving it as name
    exportAsSVG = function(name, doc){
              var file = new File(destination + '/' + name + '.svg');
              holderDoc.exportFile(file, ExportType.SVG, svgExportOptions);
    // Makes sure the name is lowercase and no spaces
    validateLayerName = function(value, separator){
              separator = separator || '_';
              //return value.toLowerCase().replace(/\s/, separator);
              return value.replace(/\s/, separator);
    // Init
    (function(){
              destination = Folder.selectDialog('Select folder for SVG files.', docPath);
              if (!destination){return;}
              var activeArtboard = app.activeDocument.artboards[app.activeDocument.artboards.getActiveArtboardIndex()];
              var ABRect = activeArtboard.artboardRect;
              // create new document with same artboard as original
              holderDoc = app.documents.add(DocumentColorSpace.RGB, new UnitValue ((Math.abs(ABRect[0]-ABRect[2])), "px"), new UnitValue ((Math.abs(ABRect[0]-ABRect[2])), "px"));
              stepThroughAndExportLayers(docRef.layers);

  • Create a new document with settings appropriate for SWF or XFL output.

    I'm studying up for the CS4 ACE exam, and I'm stumped on something. In the "Laying out a Document" section, it says: "Create a new document with settings appropriate for SWF or XFL output." There isn't really anything specific to creating a document for flash, except that you wouldn't add bleed. I can't find anything online that addresses this. Am I missing something here? Any document can be exported to SWF or XFL. This seems rather ambiguous. What is there to know about this?

    You're right that any document can be exported to SWF or XFL. I'm not sure what you're going to be asked on the ACE exam, but here are some resources:
    Help topic:
    http://help.adobe.com/en_US/InDesign/6.0/WS2DECDF40-B6DA-40b6-804F-2703D6C6A460.html
    Tim Cole's first of 3-part series:
    http://blogs.adobe.com/indesignchannel/2008/11/indesign_2_flash_part_i_1.html
    My blog entry:
    http://blogs.adobe.com/indesigndocs/2009/03/exporting_interactive_indesign.html

  • Have started to get  info window from iTune telling "This computer is already associated with an Apple ID. "You can download past purchases on this computer with just one Apple ID every 90 days......" How to handle this situation

    "You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 63 days." How to handle this situation

    https://discussions.apple.com/message/16567363#16567363
    From the  More Like This  section on the right

  • You can download past purchases on this computer with just one Apple ID every 90 days

    I have a mac which my fiancee and I share. There are 2 separate accounts and 2 separate apple ids used to buy different music (i.e. we have 2 separate iphones and music collections).
    I received the following error (see uploaded image) which states that, "you can download past purchases on this computer with just one Apple ID every 90 days".
    Now, when I sync my iTunes and iPhone only some music that I have previously purchases is affected. For some reason they failed to sync with my iPhone and become unavailable in my iTunes ("file cannot be found"). When I deleted the record I saw that it became available for download in iTunes and then discovered this issue.
    I have legally purchased the music and just want to be able to sync the files legitimately. It just seems very restrictive to say that you have to have 2 different machines for every account (i.e. you cannot have multiple users on a device with their own accounts which each have their own Apple IDs).
    Mikhail

    Hi
    No - that is the issue - both my husband and I use the same computer and want to be able to use our individual Apple IDs so can access our download content e.g. I-books that we have purchased through our other MAC devices such as I-Pad.  In the past, we had four people using one computer with no problem regarding Apple ID.   In the newer operating system, we are now restricted to one at a time - it means one of us is blocked out from accessing our content for a period of 90 days.   Have you any suggestions on how we can both use our individual Apple IDs with the same lap-top?  We have set up discrete accounts so we log on to the computer individually.  Many thanks for any help.

  • HT204053 I want to play newly purchased music but cant, i get the message "You can use iTunes Match on this computer with just one Apple ID every 90 days. (mobileme family pack is the problem i think)

    I purchase a new album on my phone but then cannot download it to my laptop -  I get the message:
    "You can use iTunes Match on this computer with just one Apple ID every 90 days. All I can think is that the problem stems from purchasing a mobileme family & some of the music being my daughters. (she is 9 & I need to be ble to listen to more than Katy Perry & Justin Bieber) Please help! :-(

    Welcome to the Apple Community.
    Youll get that message when you change the iTunes account you are logged into, you can't keep changing it.

  • You can download past purchases on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 90 days.

    So i signed into my other itunes account to download some purchase i had made on that account, went to sign back into my new account and download purchases i had made on my iphone adn it tells me "You can download past purchases on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 90 days.". This is a shared family computer with multiple Apple IDs being used on it. Not cool apple. This needs to be figured out. Not acceptable for families that have more than one apple ID to have to wait 3 months to download old purchases. Get real. Any way i can 'override' this?

    http://support.apple.com/kb/ht4627
    http://www.apple.com/feedback/
    Contact itunes support.  They may grant a one time exception at their discretion.
    https://getsupport.apple.com

  • HT201272 I just updated to itunes 10.3 & iOS 6.1 and I cannot download a song to my library! I get the error "This computer is already associated with an Apple ID. You can download past purchases on the computer with just one apple ID every 90 days..." WH

    I just updated to itunes 10.3 & iOS 6.1 and I cannot download a song to my library! I get the error "This computer is already associated with an Apple ID. You can download past purchases on the computer with just one apple ID every 90 days. This computer can be used with a different Apple ID in 75 days." WHAT??
    I've never had problems before - my husband and I have used the same library for years.  My daughter also has her own Apple ID... are we going to have trouble with that, too?  Actually we have 4 Apple IDs - somewhere around 8 Apple devices... this is a huge issue for us... HELP

    Just to be clear - I just bought a new song and can't download it into the library because of this error message.

  • HT4913 iTunes Match:You can use iTunes Match on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 85 days. What can I do?

    I'm subscribed to iTunes Match but when I turn it on I get this message:You can use iTunes Match on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 85 days. What can I do?

    I had this happen back in December/January. I sold my MBP that I used to subscribe to iTunes Match back in December. In January, I bought a used MB and tried to use iTunes Match on it. I was told I had to wait nearly two months to use it on the new computer. I waited and was finally able to use it in the new computer.\
    Sadly, this has more to do with the content providers (Record lables / movie studios) than it has to do with Apple impsoing the restrictions.

  • Automatic Downloads and Strange Error Message: "You can auto-download purchases on this computer with just one Apple ID every 90 days"

    Hi gang-
    Yesterday I noticed that iTunes on my iMac had not auto-downloaded several new songs that I had recently purchased on my iPhone.    In iTunes Preferences, under Store -> Automatic Downloads, I always have Music selected so all songs purchased from any device using my Apple ID normally download automatically.
    To troubleshoot this, I double-checked my Preferences and sure enough, Music was de-selected under Automatic Downloads.   I then Selected it and clicked OK.   Here's where it gets weird and I get this error message:
    This computer is already associated with an Apple ID.  You can auto-download purchases on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 84 days.
    I read and re-read this message and none of it seems to apply to me.   I have only one Apple ID.   I am currently logged in with iTunes to that one Apple ID.   All my iTunes Music ever has been purchased with that one Apple ID.   I am not trying to associate this computer or any other with a different Apple ID.
    I logged iTunes out and then back in again and tried all the above- but same error message.
    So, as it is now, I am unable to turn on Automatic Downloads in iTunes.   
    Anyone know what the heck is going on?
    Thanks!
    Dave

    Hey gang-
    Okay, this gets more and more bizarre.   I sent a support email to Apple and basically they said  "...it seems that someone else associated your Mac with their Apple ID. That's the reason your purchases won't download."
    Yikes!   My wife and I live alone- and we have exactly one and only one Apple ID.    Would somebody have needed physical access to my iMac to do that?
    Support then said "You can view which devices or computers are currently associated, remove unused devices or computers, and see how long before they can be associated with a different Apple ID from the Account Information page in iTunes on your computer."
    Okay- so I logged into My Account in iTunes.   On the list of associated devices, my own iMac is NOT on that list.   But I am logged in under the same Apple ID I've had for years on that iMac.
    So my big question right now is...if my iMac (that I've owned for 5 years) has somehow been dis-associated from my Apple ID, how do I find out what Apple ID it is associated with?
    Thanks gang for trying to help me unravel a mystery.
    Dave
    PS- Here's an Apple Tech article on iTunes associations, but it doesn't really go beyond what we've discussed above:
    http://support.apple.com/kb/HT4627

  • You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 71 days. Whats the deal???

    You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 71 days. Whats the deal???

    You can use multiple AppleIDs to purchase new music but you are limited as to how frequently you can change authorizations for re-downloading  past purchases.  It may well be a measure to deter piracy by stopping a group of people from going around to a friend's computer and downloading purchases on the other person's computer.  It is easy to avoid by making sure you have backup copies on drives at home so you never need to redownload anything.

  • You can download past purchases on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 60 days. Why?

    You can download past purchases on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 60 days.  How can I use more than one apple ID with one MacBook pro ?

    Hi
    No - that is the issue - both my husband and I use the same computer and want to be able to use our individual Apple IDs so can access our download content e.g. I-books that we have purchased through our other MAC devices such as I-Pad.  In the past, we had four people using one computer with no problem regarding Apple ID.   In the newer operating system, we are now restricted to one at a time - it means one of us is blocked out from accessing our content for a period of 90 days.   Have you any suggestions on how we can both use our individual Apple IDs with the same lap-top?  We have set up discrete accounts so we log on to the computer individually.  Many thanks for any help.

  • You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 60 days. This is the message I get when trying to view purchased material!  My ID hasn't changed!

    I can't pull up purchased content without this - You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 60 days. - my ID hasn't changed

    You can use multiple AppleIDs to purchase new music but you are limited as to how frequently you can change authorizations for re-downloading  past purchases.  It may well be a measure to deter piracy by stopping a group of people from going around to a friend's computer and downloading purchases on the other person's computer.  It is easy to avoid by making sure you have backup copies on drives at home so you never need to redownload anything.

Maybe you are looking for

  • Oracle Client 11gR2 installation issue on RHEL v5.4 64-bit

    Hi, I am trying to install Oracle Client software 11gR2 on RHEL v5.4 64-bit. I have resolved all the libraries dependency as well as Kernel changes as suggested by the installer. The error in the log file is as attached. At present I have "skipped" t

  • Embed an images in a textfield

    Hi has anybody tried embedding an image in a textfield using the <img> tag? I've found the image jumps on to the next line or in some way doesnt work the way i intend it. Is there a trick to getting the images to line/flow up with the TEXT correctly?

  • Sharing an IP Gateway on multiple Subnets

    Hi I'm flamboozled with something that doesn't seem like it should be so hard on a Solaris 10 11/06 webserver with sparse zones... I have 4 different subnets: A.B.C.0/29, D.E.F.0/29, G.H.I.0/29 etc. Only one of them currently has a gateway address, a

  • Installation of SAP J2EE engine standalone version

    For administiring J2ee on the WebAs, SAP recommends installing the J2ee engine standalone version on a PC. Where can we find the standalone version? In case, i use the J2ee engine CD available with WebAs, which mode of installation should i choose (1

  • Asynchronous to Asynchronous BPM scenario

    Hi Experts, How we can get the response for the Asynchronous Sender to Asynchronous Reciver BPM scenario? Do we have any special mechanism to get the response in XI? Regards Sara