Which folder to copy?

I'm going on a vacation without my mac, but I would like to keep my blog updated from my parent's in law computer. I'm not sure which folder I should copy and replace on my parent's in law mac to be able to update my blog?
iMac G5   Mac OS X (10.4.5)  

the "domain file" is located: username/library/application support/iweb
you would need to place that file in the same location on the other computer.
if they currently are using iweb you would need to remove their file first so as to not overwrite it.
I would probably create another user on their computer and use that to not confuse the issue.

Similar Messages

  • Any single file in my local folder of RoboHelp 10 which can be copied onto the application server?

    Pleasant Hello Pals, ( This is Vipin Nambiar from Bangalore)
    I am currently evaluating Adobe Robohelp 10 version for one of my technical architecture writing. Requesting help at the very earliest for the below-said big time hurdles.
    I have completed my technical writing for a in-house application system and have generated and viewing the primary layout (courtesy File -> View -> Primary Layout. ) as Contents, Index, Glossary and would like these to be hosted onto the server so that all the users of this application can access these Contents, Index, Glossary and act as a knowhow notes to use this application.
    Is there any single file in my local folder of Adobe RoboHelp 10 which can be copied onto the application server ?
    (My Adobe RoboHelp 10 local folder contains
    a.)Sub-folders called !Language!, !ScreenLayout!, !SkinSubFolder!, !SSL!
    b.)File Types called *.ALI File, *.APJ File, *.Bitmap image, *.BRS File, *.Cascading Style Sheet Document, *.CPD File, *.FPJ File, *.GIF image, *.GLO File, *.H File, *.HHC File, *.HHK File, *.HHP File, *.HTML Document, *.HTT File, *.JPEG image, *.JScript Script File, *.LDB File, *.PPF File, *.PSS File, *.Robohelp HTML Project File, *.SSL File, *.XML Document)
    Any help here will serve me in plentious

    First, your username cannot be changed and it is not a good idea to have email addresses visible on any forum, unless you enjoy reading spam.
    This question is covered in the online help. When you create an output it is generated to whatever folder you specify in the single source layout. Everything that is in that folder needs to go on the server.
    If the help is in !SSL! > WebHelp, then everything in that folder including sub-folders is what needs to go on the server.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Which folder do I use to backup Thunderbird in Windows 8.1

    Our previous notebook(which failed)was running Windows 7 and we would copy the 'profiles'folder
    Our new notebook runs under Windows 8.1
    Which folder do we copy (cannot find 'profiles')

    Help menu (alt+H) > troubleshooting information
    Press the show folder button under profiles.
    Windows explorer is not in your profile folder.
    As the location contains a random string it is impossible to say exactly where a profile is, But this method asked Thunderbird to tell you.
    Needless to say it will default to a location below the Thunderbird folder is appdata. Appdata is a special application data folder provided by windows and hidden by default. The is a setting in windows to show hidden files and folders.

  • While copying photos from pc to ipad only one folder gets copied, while copying photos from pc to ipad only one folder gets copied

    while copying photos from pc to ipad only one folder gets copied and while trying for other folders, the previous one which copied earlier does not appear.

    Are you selecting all of the folders to sync?
    Note that if you deselect a folder it will be removed.

  • Choosing which folder to save downloaded files to as soon as file is downloaded?

    I'm completely new to this so if there's a simple solution to this, do forgive me and thanks in advance for your patience!
    So I've just started messing about with Automator today and read about Applescript.
    I'm basically trying to find a way of having a prompt for me to select which folder I'd like to save downloaded files to, as soon as the files are downloaded into that folder.
    I've tried a couple of things:
    Setting up a Folder Action in Automator for my Downloads folder.
    'Revealing items in Finder'
    'Get selected items in Finder' (thinking that this somehow grabs the items that were revealed and selected in the previous step)
    Then running an Applescript (as an 'action' in Automator) to do something like this:    
    on adding folder items to this_folder after receiving these_items
      tell application "Finder"
      set the destination_folder to [choose folder with prompt choose folder]
      end tell
    end adding folder items to
    Or something like this:
    on run {input, parameters}
      tell application "Finder"
      select files
      move files to [choose folder with prompt choose folder]
      end tell
      return input
    end run
    As you can probably tell, I really haven't a clue (although this is addictive and I can't deny I'm enjoying myself)... I've tried a few more variations based on scripts I've seen dotted around the web doing similar things but I didn't hold on to them so I can't show you them. The script  actually runs really smoothly, and runs through with no errors - I copy a file into my downloads folder (to test) from another folder. The Downloads folder opens up automatically, selects and shows me the file I've just added then pops up with the window prompting me to choose a folder. It's just that when I do end up choosing the folder, the file doesn't move at all. The window disappears then pops back up again, then disappears after I press 'Choose' for the second time, as though something has happened. I suppose the files that the Finder revealed, selected and 'got' had no connection to the following action/script?
    What do I need to change? As I said, completely new to all of this so please do treat me like I'm a bit stupid!
    Thanks!

    Others have already given alternative pointers to solve your specific problem, but I can understand the desire to roll your own
    From your script samples, you're on the right track, but are missing a couple of key concepts. I'll try to clarify.
    Your script:
    on adding folder items to this_folder after receiving these_items
      tell application "Finder"
      set the destination_folder to [choose folder with prompt choose folder]
      end tell
    end adding folder items to
    First up, let's correct that 'choose folder' command. Specifically, the prompt - it should be a string (enclosed in quotes). As it stands, conceptually, you're kind of invoking 'choose folder' again, and the result of that is used as the prompt on the first 'choose folder'. Not going to work so well.
    Instead, your choose folder should look more like:
      set the destination_folder to choose folder with prompt "Select a folder:"
    Note how I've quoted the text and now it's interpreted correctly - the selected folder will now be stored in destination_folder.
    Now that you have the destination folder, what you need is the files to move. Fortunately, Folder Actions provide this for you in the way the command is called:
    on adding folder items to this_folder after receiving these_items
    In this case, these_items is a list of the newly added files., so all you need to do is move these files to the destination_folder:
    on adding folder items to this_folder after receiving these_items
      set the destination_folder to choose folder with prompt "Select a folder:"
      tell application "Finder"
      move these_items to folder destination_folder
      end tell
    end adding folder items to
    Note how I've moved the 'choose folder' line outside of the 'tell application "Finder"' block - there's no need for it to be in there, and this way it will prevent the context switch where the Finder comes active to ask you for the folder.
    Incidentally, this is a 'pure' AppleScript implementation, not an Automator action. The Automator action would be radically different in that the files would be passed into your workflow - you'd need to store these in a variable, then prompt for the destination folder and store that in another variable, then use the move Finder items action to move the files, like:
    Personally, I prefer the AppleScript option

  • Which folder was last modified?

    Hello,
    We copied user data to new server from the old server. There was a two servers with similar folder name. And unfortunately, we copied the data from the wrong server. Both servers are running 2008R2.
    I need to make a re-copy from correct "old" server to new server and I must tell which of these two folders was the one last used. Is Date Modified timestamp 100% accurate way to tell which folder was last modified?

    Date Modified is the accurate way to know when were the contents modified. When you modify anything inside the folder the date modified attribute of the folder gets changed. You can try this on your computer.
    One root folder on our server shows Date Modified date is 1st January, but browsing the folder reveals subfolder with a file, which has Date Modified timestamp 1st February.
    When you modify the contents within a folder, the date modified timestamp changes for that folder, however you cannot see the timestamp changed if that folder is within a parent folder. (i mean you cannot see the actual datemodified timestamp for parent
    folder).
    Prajwal Desai, http://prajwaldesai.com

  • Can someone inform me where to place my LUCAS FX CD's (which folder)?

    6 CD's.
    I tied putting them in Library/Audio/Apple Loops/Apple/ilfe Sound Effects and they did not show up in either iMovie or Soundtrack pro....
    Wondering which folder they should go into in order for them to show up correctly?
    I also have some custom MP3's, how do I get those to show up in STP?
    Thanks, as always!

    basically, these files can be placed anywhere that makes sense for your hard drive setup. i've installed SFX audio files on a 2nd internal SATA drive i use for media stuff like this.
    after you copy over the files (they should be AIFF format), you can open them in the Apple Loop Utility application (this should be installed in the Utilities folder). you can use this utility to tag the files with metadata information regarding what type of sound effect it is, etc. this can be time consuming, but makes it easier to find them later in SoundTrack Pro.
    once they're all tagged, go to the Loop Browser in Soundtrack Pro and click the Setup... button. from this drop-down dialog, you can click the "+" button to add a new folder of audio files. select the folder of audio files that you've tagged and then OK to add it to the list. finally, in the setup dialog, click "Index Now" which will bring in all the tags for those audio files and make them searchable and place them into the proper bins as you navigate the loop browser window.
    hope that helps.
    scott
    PowerMac G5 2.5GHz   Mac OS X (10.4.5)  

  • How can I get the Voiceover Keyboard shortcuts to show up in a form in which I can copy

    I have low vision & have been trying to learn to use Voiceover on both my iPhone & my Mac mini for months. Very frustrating.
    1. How can I get the Voiceover keyboard shortcut commans to show up in a form in which I can copy & paste them into a pages document so I can print it out & use for quick reference?? The one that shows up when I press VO +HH won't let me copy & paste it, & it won't show up in the Help section no matter what subject I enter. The help topics shown do not correlate with the topics I'm entering. why is that??
    2. Please make the cursor able to be wider, like in the software program Zoomtext, that I used when I had a PC. The razor-thin cursor (in this text box!) in Pages is impossible for me to see.
    Thank you for any help you can provide.

    http://www.applevis.com/guides/voiceover-keyboard-shortcuts-mac-os-x
    You should be able to copy them from there.

  • How can I get Bookmarks to ask me in which folder to store the bookmark?

    On my other computer & my wife's computer, when I click on 'Bookmarks' I am asked which folder I want to use to store the bookmark.
    It used to work that way on this computer but now it does not ask where to save the bookmark. I just saves it in the 'Recently Bookmarked' folder.
    How can I get back to asking me which folder to use?
    Thanks for any help.

    Any chance you have the McAfee Site Advisor extension installed in Firefox? <br /> If so, disable it until McAfee fixes it.

  • Why has iTunes seperated a album which I have copied over from my external hard drive into iTunes? How can you pull all the songs back together into one album again?

    Why has iTunes seperated a album into indevidual songs, which I have copied over from my external hard drive into iTunes? How can you pull all the songs back together into one album again?

    Steve MacGuire a.k.a. turingtest2 - iTunes & iPod Hints & Tips - Grouping Tracks Into Albums - http://www.samsoft.org.uk/iTunes/grouping.asp (older post on Apple Discussions http://discussions.apple.com/message/9910895)
    Quick answer:  Select all the tracks on the album, File > get info, and either give them all a single "album artist", or check the "compilation" flag (as in https://discussions.apple.com/message/17670085).
    If these are from multiple-CD sets you may also need to enter the appropriate information in the disc number fields.  If they are not a multiple CD set you still need to make sure the disc number fields are set correctly or all empty.

  • Adobe pro - print settings: How do i make a custom page size list, which i can copy to my other comp

    Adobe pro - print settings: How do i make a custom page size list, which i can copy to my other computers who have adobe pro installed?

    your right.. i ment acrobat pro :-)
    my problem is that i use the PDF printer to export CAD drawings as PDF´s.
    As it is now, there are some pre-defined page sizes in the print settings, and i know i can add custom pages manually one at a time.
    What i want is to copy the list of my danish standard page sizes, and use them on my other versions of acrobat.
    Its like 70 different sizes, and i have them made manually on my current computer, but i hope its possible to copy the list to other computers.
    Maby its some script where i can define the sizes, and then copy to another computer. Im just not that much of a computer genius :-)
    Hope i got through this without to many spelling mistakes...
    Thanks for helping.

  • HT201653 We are a retail shop which has a copy of AppleCare Protection plan. The box is not sealed. How can I tell if the product has been registered or not.

    We are a retail shop which has a copy of AppleCare Protection plan. The box is not sealed. How can I tell if the product has been registered or not.

    Since the only thing needed in that box is the small piece of paper with the (very long) registration code on it (usually found inside the booklet), see if that is actually there and, if it is, call Apple at 800-275-2273 and ask to be transferred to the Applecare department. Here is the link to the Applecare plan - just in case you may need it, see the fax numbers listed under para. 9 (Cancellation).
    http://www.apple.com/legal/sales-support/applecare/appmacnaen.html

  • Which folder to put custom sso dlls in 6.1?

    Anyone know into which folder(s) to place custom sso dlls in G6/6.1?

    have you tried in PTHOME\VERSION\webapp\portal\web\bin?
    Should be in there...
    Edited by fsanglier at 12/18/2007 2:40 PM

  • In which folder can I find the abap instance profile?

    Hi,
    In which folder can I find the abap instance profile?
    This is the parameter that I want to change:
    "profile parameter em/address_space_MB = 250 in the instance profile"
    Greets
    Stefan

    Hi Michal,
    my actual problom is, that during the Java-Add-In-Installation an error appears. (CJS-20057)
    j2ee-engine (dvebmgs00) do not start during this installation.
    I also change the value of max. heap size and try a rebase as it is shown in note 129813.
    nothing chances.
    this error appears all the time.
    can anybody help me please?
    Thanks.
    Greets
    Stefan

  • In which folder i should put eps parser.8by in elements 13, to open eps files??

    I have to be able to open eps.files in photoshop elements. it worked fine in 9, it did'nt occur to me that in newer versions you get less in stead of more..i regret buying it now
    So: in which folder i should put epsparser.8by in elements 13, to open eps files??

    Unfortunately, that EPS Parser.8BY only works in the 32 bit version of photoshop elements 13.
    If your windows system is 64 bit, then you would have the 64 bit version of photoshop elements 13 and the EPS Parser.8BY is an 32 bit plugin and won't work in the 64 bit version of pse 13.
    (i don't believe you can install the 32 bit version of pse 13 on a 64 bit windows system)
    So the solution would be to keep pse 9 and use it for things that pse 13 won't do.
    What features from previous versions are not available in Adobe Photoshop Elements 12?
    Also, from the release notes
    Following file formats are no longer supported in Photoshop Elements and the corresponding files will not be imported into the new catalogs:
    JPEG 2000, Filmstrip (FLM), Wireless BMP (WBM, WBMP), PCX, Targa (TGA, VDA, ICB, VST), Photoshop RAW (RAW), PICT File (PCT, PICT), Scitex CT (SCT), Photoshop EPS (EPS), EPS TIFF Preview (EPS), Generic EPS (AI3, AI4, AI5, AI6, AI7, AI8, PS, EPS, AI, EPSF, EPSP).
    In addition, on Mac OS following formats are no longer supported: IFF Format, Photoshop 2.0, Alias PIX, PICT Resource

Maybe you are looking for

  • How can i move music from one account to another

    I have 4 different accounts in Itunes and i wish to move all the music into one account help please !!!!

  • After update to Firefox 6.0 two websites are opening Welcome/Upgrade requests whenever I open the browser

    I found that " Read it Later" and " Lat Pass" are inveriably opening webpages whenever I open Firefox. This is annoying. Being disgusted I have ultimately uninstalled Firefox - though I have been using it for over 5 years. Another point - what is the

  • Job Cancelled in SM37

    Hi all, Job is cancelled in sm37 daily from 7th december onwards. We have 4 process chains in our project and all the chains are ok when i am checking in RSPC,and the data is being loaded into the respective cubes and ods. The error message is like J

  • How can I get Vendor Balances to Payroll

    Dear Experts, I  came across a scenario, My client is paying some ammount in behalf of employee like Mobile Bill and keeping this ammount in Vendor account, How can I take that Balance in to payroll to deduct in Payroll? is there any Standard way of

  • Making a 16:9 Mpeg.

    Hi, I'm exporting a 16:9 movie to compressor but my mpegs are coming out in 4:3. Can anyone tell me how to make them into 16:9? Thanks very much. Simon.