Is there 1 Glossary file with all terms & def's?

I have created a complete glossary list in RH7 for my
project. One of my teammates would like to use the same glossary
terms because the RH project he is working on is very similar to
mine. Is there a way to grab a copy of the glossary terms and
definitions from my project? I am assuming there is a file, but
don't know the name and location.
Any help is MUCH appreciated!!! :)
Natalie

Hi Natalie
As Peter said, if you want to do this "behind the scenes",
copy the .GLO from your PC to your teammate's PC.
OR... you can also view the right-click the Glossary editor
in RoboHelp and choose to Import a glossary. You would then browse
to the desired Glossary file and pull it in.
Cheers... Rick

Similar Messages

  • HT3964 I just opened up my MacBook Pro after a few days of not using it and it was frozen. I turned it off and back on and all I see is a white screen, there was a file with a question mark flashing for a bit but I can't do anything, please help me!!

    I just opened up my MacBook Pro after a few days of not using it and it was frozen. I turned it off and back on and all I see is a white screen, there was a file with a question mark flashing for a bit but I can't do anything, please help me!!

    Jerricayoung,
    you have a 13-inch Mid 2012 MacBook Pro. It’s modern enough that it supports booting into Recovery mode. To do so, hold down a Command key and the R key as you start up. It should eventually show a Mac OS X Utilities menu. Select Disk Utility from that menu; when the Disk Utility window appears, select the bootable volume from the left-hand side of the window. (It’s typically called “Macintosh HD”.) When the volume is selected, some buttons will appear on the right-hand side. If it’s not greyed out, press the Verify Disk button; if it is greyed out, or if it reports on errors that it found, press the Repair Disk button. Once the verification/repair is completed, exit Disk Utility and select Restart from the Apple menu; that will restart your MacBook Pro in its normal mode. With luck, that will be enough to get you to your normal login screen, rather than the white screen.

  • Uploading document using Powershell is throwing error- There is no file with URL

    Hi.
    I am trying to upload multiple documents to a sub folder in a library using powershell.
    I am getting the error as : ForEach-Object : Exception calling "Add" with "3" argument(s):
    "<nativehr>0x80070003</nativehr><nativestack></nativestack>There is no file
    with URL 'server/TestLibrary/User_image/ab_3f_wht_ist_small_gif.gif' in this Web."
    I have used the below code:
    function UploadImages($weburl)
    $docLibraryName = "TestLibrary"
    $localFolderPath = "C:\Users\Imgs\user_image"
    Add-PsSnapin Microsoft.SharePoint.PowerShell -erroraction silentlycontinue
    $web = Get-SPWeb -Identity $webUrl
    $docLibrary = $web.Lists[$docLibraryName]
    $subFolderName="user_image"
    Add-PsSnapin Microsoft.SharePoint.PowerShell -erroraction silentlycontinue
    $web = Get-SPWeb -Identity $webUrl
    $docLibrary = $web.Lists[$docLibraryName]
    #Attach to local folder and enumerate through all files
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles() | ForEach-Object {
    #Create file stream object from file
    $fileStream = ([System.IO.FileInfo] (Get-Item $_.FullName)).OpenRead()
    $contents = new-object byte[] $fileStream.Length
    $fileStream.Read($contents, 0, [int]$fileStream.Length);
    $fileStream.Close();
    write-host "Copying" $_.Name "to" $docLibrary.Title "in" $web.Title "..."
    #Add file
    $folder = $web.getfolder($docLibrary.Title + "/" + $subFolderName)
    write-host "folder is " $folder
    $spFile = $folder.Files.Add($folder.Url + "/" + $_.Name, $contents, $true)
    $spItem = $spFile.Item
    Write-Host -f Green "Added Images to Library !!!"
    $web.Dispose()
    How to fix this?
    Thanks

    HI,
    Is the name of the image or the sub folder name the issue?
    I have the images with the name as "ab_3f_wht_ist_small_gif.gif".  folder name "User_image"
    There are underscores on the file name, but there is no space. When I add the file from the library (using the UI), the image is getting added.
    But adding through the powershell is giving the issue.
    I have checked this:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/e810ad03-81ef-4fa6-aab8-ddc896a13ebf/getting-error-during-uploading-a-document-using-powershell?forum=sharepointdevelopmentprevious
    but did not help.
    Thanks

  • How can I copy a file with all attributes

    Is there a way within Java to copy a file, with all its file attributes?
    I have seen a number of custom methods posted on these forums for copying the contents of a file to a new file with the same name in another location. The problem is that these methods don't copy the file attributes, particularly the creation date.
    If there is no way to do this in Java, is there a way to have Java execute an operating system command, such as "COPY" or to access the O/S to change the file attributes?
    Thanks for any help you can provide.

    This is how runtime executes a batch file.
    try {
      Process p = Runtime.getRuntime().exec("cmd /c start c:\\batfile.bat");
      p.waitFor();
    } catch (Exception e) {
        System.out.println(e.toString());
    }

  • Powershell: There is no file with URL error during file upload.

    I am trying to put together a PowerShell script that I could use to upload files from a local directory, into a Document Library in a Record Center Site. Here is what my script looks like...
    #Open web and library
    $web = Get-SPWeb $webUrl
    $docLibrary = $web.Lists[$docLibraryName]
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    Write-Host "Local Directory:" $localFolderPath
    ForEach($file in $files)
    Write-Host "Looping through files"
    Write-Host "Current file:" $file
    ElseIf ($contentType = "MyContentType")
    #Open file
    $fileStream = ([System.IO.FileInfo] (Get-Item $file.FullName)).OpenRead()
    # Gather the file name
    $FileName = $File.Name
    #remove file extension
    $NewName = [IO.Path]::GetFileNameWithoutExtension($FileName)
    #split the file name by the "-" character
    $FileNameArray = $NewName.split("_")
    $check = $FileNameArray.Length
    #Add file
    $folder = $web.getfolder($docLibraryUrlName)
    write-host "Copying file " $file.Name " to " $folder.ServerRelativeUrl "..."
    $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stream]$fileStream, $true)
    $spItem = $spFile.Item
    write-host "Success"
    #populate columns
    $spItem["Application Number"] = $FileNameArray[0].ToString()
    $spItem["Site Number"] = $FileNameArray[1].ToString()
    $spItem.Update()
    $fileStream.Close();
    Each time I run my script, I get this error message 
    Exception calling "Add" with "3" argument(s): "<nativehr>0x80070003</nativehr><nativestack></nativestack>There is no file with URL 'http://myRecordLibrarySite/myRecord Library/12587_B2317.PDF' in this Web."
    At C:\powershellscripts\Upload-FilesIntoSharePoint.ps1:72 char:6
    +                     $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stre ...
    +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : DirectoryNotFoundException
    I have not been able to nail down why the script is failing. Any ideas why? Thanks for the help.

    I just figured out the issue with adding the file. I went in this direction, and my code has progressed forward.
    $folder = $web.getfolder($docLibrary.rootFolder.URL)

  • Lost a file with all my photos in it?  HOW??

    I closed one of the two Bridge windows that were open and suddenly I no longer had my 2010 folder of all the photos I have taken this year!!  HELP!!  How do I get it back.  Apple did all they could and it's not in the trash.  Did I seriously just lose all those photos??  I have searched for the folder to no avail.
    Any help is greatly appreciated.  I have a client I need to get pictures to this week.
    photobell

    First of all, we'd need to know what version of Bridge, Photoshop and the OS you are using.
    One of the earliest versions of Bridge was indeed known occasionally to disappear files and/or folders, but that was a long time ago, in CS2 I believe.  Later versions do not do that.
    Do a search for the names of the files and or folder(s), not with the pretty useless Spotlight or the Finder Search (which uses the same, limited Spotlight search engine).  Instead, try the free EasyFind.  http://www.versiontracker.com/dyn/moreinfo/macosx/8707
    Second, I'll assume you mean folder when you type "a file with all my photos in it". Unless you put the folder in the trash and then deliberately emptied the trash, it's more likely you just accidentally stuck the folder inside another one, or accidentally renamed it.  EasyFind will find it or its contents.
    If EasyFind fails to find a trace of any of the files or of the folder, then the files are indeed gone. but that 's highly unlikely unless you deliberately empied the trash.
    Good luck.
    Wo Tai Lao Le
    我太老了

  • Java Swing frame for modification Excel file or Word file with All menu...

    Hello All,
    Can Any one help me for making java Swing frame for modification Excel Data or word file with all Menu.. Plz send me java Code for that.. I am bit new in Swing.
    i am waiting for ur help..
    Thanks
    Samir

    hi pbrockway2 ,
    Can you go through this program Sir, i am trying to call Excel content below of menu. when i will press Edit button then excel content should come below with Cut, copy, paste , Save Button..
    Plz help me sir...
    import javax.swing.*;
    import java.io.*;
    import java.awt.event.*;
    public class TestReader
    private static void createAndShowUI()
    JFrame.setDefaultLookAndFeelDecorated(true);
    JFrame frame=new JFrame("Test Reader");
    JButton button=new JButton("Edit");
    button.addActionListener(new ButtonListener());
    frame.getContentPane().add(button);
    frame.setVisible(true);
    frame.pack();
    static class ButtonListener implements ActionListener
    public void actionPerformed(ActionEvent event)
    openTheFile();
    private static void openTheFile()
    try
    String commands[]=new String[3];
    commands[0]="cmd.exe";
    commands[1]="/C";
    commands[2]="INSTALL.LOG"; // here file name is supposed to be in the working dir
    Runtime rt=Runtime.getRuntime();
    Process proc=rt.exec(commands);
    StreamGobbler errorGobbler=new StreamGobbler(proc.getErrorStream(),"ERROR");
    StreamGobbler outputGobbler=new StreamGobbler(proc.getInputStream(),"OUTPUT");
    errorGobbler.start();
    outputGobbler.start();
    catch (Exception e){}
    public static void main(String args[])
    SwingUtilities.invokeLater(new Runnable()
         public void run()
         createAndShowUI();
    static class StreamGobbler extends Thread
    InputStream is;
    String type,root;
    StreamGobbler(InputStream is,String type)
    this.is=is;
    this.type=type;
    public void run()
    try
    InputStreamReader isr=new InputStreamReader(is);
         BufferedReader breader=new BufferedReader(isr);
         String line=null;
         while ((line=breader.readLine())!=null)
         System.out.println(type+">"+line);
    catch (Exception e)
         System.out.println(e);
    Thanks
    SamiR

  • There is a URL with all my apple hardware. When I sell a iPhone, I must cancel it from the list - how does it function?

    There is a URL with all my apple hardware. When I sell a iPhone, I must cancel it from the list - how does it function?

    There is no requirement that you add or delete items, but it can be helpful. The URL is https://supportprofile.apple.com/ and to delete, you click the "Edit Products" button near the top right of that page.

  • My old computer crashed and deleted my iTunes media file with all my playlist. However, my iPod has the playlist I lost on the computer. How can I replace (reverse synch?) my iPod media information back onto my (now reinstalled) virgin iTunes media folder

    My old computer crashed and deleted my iTunes media file with all my playlist.However, my iPod has the playlist I lost on the computer. How can I replace (reverse synch?) my iPod media information back onto my (now reinstalled) virgin iTunes media folder?

    Yes it's possible to sync music back from a iPod back into iTunes that (I assume) wasn't purchased on the iTunes Store.
    Apple allows iTunes Store purchases on devices to be reversed back into iTunes, just not cd rips and stuff like that. For that it's a one way trip to the device from iTunes.
    I likely can't suggest such software here, but if you visit iLounge you can ask what is the latest software that works for your platform.
    Really it only takes a mere few minutes to backup your iTunes Library and stick in a few cd/dvd's or a external drive. iTunes even has a menu command for it to make it oh so simple. Please use it and backup all your data.
    Hard drives fail, computers burn up, thieves steal, stuff gets forgotten. Plan for something happening because it will.
    Good Luck

  • Where can I get complete INSTANCECONFIG file with all possible tags?

    Can any one provide me the complete instanceconfig file with all possible tags?
    Thanks,
    Zubair.

    Zubair- you should distribute points to the fellow OTNers who helped to answer your question (mark their answers as correct or helpful - just a forum etiquette)

  • I can't open a file with all these InDesign Plugins...

    Hello,
    I was passed-off a CS3 InDesign file with a 20+ InDesign Plug-ins added to it and it says it won't open without the extensions. Is there any a way for me to open the file without finding all the plug-ins, downloading and adding them to my system?
    Thank you!

    Maybe I think it is CS3 and it's not. On my desktop it has the purple InDesign icon so I thought it meant that it was CS3. Thre are two alert boxes that pop up when I try to open the file. The first one says plug-ins are missing, do you want to open? I clicked OK. The next one says upgrade plug-ins to latest versions or latest version of INdesign.
    Is there any way to open it? How do I know for sure what version it was created in? The Get Info box says it is an InDesign CS3 Document.

  • File with all photos disappeared

    Hi all,
         A few days ago, I finished sorting out my thousands of pictures out into neat files, which I then stored on a main file on my Desktop. When I was done, I dragged that file from the Desktop to Finder, under the menu on the left, where it says Downloads, Documents, etc. It stayed put, so I moved on to do other things.
         Today, I noticed it's not there! I've searched for the file everywhere, and looked in Trash, of course. There is no way I would have deleted that file. And if I had, it would still be in my Trash, along with all the other things I have in there from over a month ago (the last time I cleared out the Trash).
         I just used a data recovery program, and as I thought, there is nothing to be found. There must be literally thousands of pictures in that file, and I need them back! Any ideas? I'm a first time MAC user, and for now, I'm hating it

    I'm not sure what you mean by: When I was done, I dragged that file from the Desktop to Finder, under the menu on the left, where it says Downloads, Documents, etc. and figuring out what you actually did is likely to be important.
    Do you remember the name of any of the pictures? If so, click on the magnifying class up in the top right of the menubar to get the Spotlight search window. Type in the name of the picture file and wait a second. (Typing in a partial name will work too, as will typing in an extender such as .jpg)
    If you scroll down to the bottom of the list of found items you should see the option Show all in Finder... which will open a window with everything that was found. Double click on that option to open that window.
    If/When you find one of your pictures, select it in the window and look at the bottom of the window. You should see a disk hierarchy showing the location of the picture. That should help you figure out where the main folder is hiding so you can go find it and place it in the Pictures folder of your drive space.

  • Is there an iba-folder with all resources?

    I have trouble finding some images, which are in my iba-file.
    As I know, iBooks Author saves all files which are part of the iBook itselfs. Is there a way to get to the folder with all files of the iBook?
    For example in Hype, you can open the folder with all resources, thumbnails and the html-file by right-clicking on the hype-file.
    I hope, you can help me!

    The book or the iBA file? .iba? or .ibooks?
    I'll assume .iba.
    Change the file name suffiz from .ina to .zip, then double-click to unpack. That should create a folder with all the assets inside.
    Good luck.
    Ken

  • Create a dir if there exists a file with the same name

    Hi..
    I want to create a directory with file.mkdir(). But I recognize a problem when there is allready a File with the same name.
    Is there any solution to handle a dir and a file with the same name?
    eg: Dir "C:\Windows" and File "C:\Windows"
    wami

    This explains it... use "java Test2 asdsfd" for example. While this example doesn't show it,
    if you try to create a dir with another slash on it c:\blah\ , it still can't be done.
    import java.io.*;
    public class Test2
    public static void main (String args[]) throws Exception
         if (args.length < 1){
         System.out.println("Test2 [name]");
         System.out.println("creating bogus file " +args[0]);
         FileOutputStream fo = new FileOutputStream(args[0]);
         fo.write(55);
         fo.write(55);
         fo.write(55);
         fo.close();
         File x = new File(args[0]);
         if (x.mkdir()) System.out.println("made dir " + args[0]);
         else System.out.println("failed to make dir " + args[0]);
         System.out.println("deleting file " + args[0]);
         x.delete();
         if (x.mkdir()) System.out.println("made dir " + args[0]);
         else System.out.println("failed to make dir " + args[0] + " again !");
    }

  • Can HTML Help render a flash file with all bells and whistles?

    I use Captivate to generate a .swf file, and inserted that .swf  into my RH8 project and generated HTML Help.
    When I look at the .CHM file, the flash plays, but not ideally.
    a) It plays immediately when the topic is opened, and there's no way to re-start it except to close and re-open the topic.
    b) There are no stop/start/pause buttons on the flash video. Could I have added those in Captivate?
    Is the .CHM-player capable of flash videos with controls?
    What did I miss?
    Thx.

    Hi Bruce
    Ugh, from what you are describing, you are going at things all perfectly from the "Adobe approved and recommended" way of operating, but it's a method I don't personally use or recommend. Please tell me if I'm right with my assumption here.
    I'm assuming (based on what you have stated) that you didn't launch Captivate separately, create the demo and publish it, then close Captivate and open RoboHelp HTML and insert what Captivate created. I'm guessing you used the wonderful (cough) integration that exists where you are in the middle of a topic and BAM! It suddenly hits you that a Captivate demo would be PERFECT here. So you cease your chain of thought while editing the topic and from inside RoboHelp you click File > New > Captivate demo and RoboHelp magickally opens Captivate to record the demo. You finish and close and the demo magickally appears inside RoboHelp.
    Did I guess right?
    Assuming I did, your case is precisely why I avoid working that way and why I don't recommend it. When you work this way you give up control of many Captivate capabilities and you enter into a realm of frustration.
    I recommend using Captivate as the separate application it is. Open it separately. Record and create the Captivate parts separately. Then bring it into RoboHelp once it's reached prime time.
    Please advise and we will proceed accordingly with getting you squared.
    Cheers... Rick
    Begin learning RoboHelp HTML 7 within the day - $24.95!
    Click here for Adobe Certified Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

Maybe you are looking for

  • Why doesn't Firefox completely uninstall ?

    Why does Firefox 22 on a Mac Os not completely uninstall? when I remove the application on the Mac by dragging the application to the garbage and then reinstall, my book marks are still present. Why? All applications should completely uninstall but F

  • How to restore Mac

    So, I was trying to get a Dual-Boot set up with my 5,4 Mac Book Pro (2009), but in the process my Mac run out of battery without a warning, and now there is no sign of my Mac OS X partition or the recover mode partition. I can only see the damaged wi

  • Calendar dates move forward

    Can anybody help when i sync my iphone to my sony laptop on vista op sys. All my iphone calender dates move forward 1 day.

  • Click event on DVT Line Graph

    Hi, Is it possible to attach a javascript click event on a DVT Line graph component? I know ADF DVT has clickListener but what happens is that it is triggered only when you click any of the series data but clicking the the column label or row label d

  • How to create new "Planning delivery schedule instruction"

    Hi All, I need new call control parameters created in VA32 for all shipping scenarios.  For some new shipping frequencies. Kindly help how to create. Thanks in Advance.