Taking Files Home Then Returning - Imported Graphics

I'd be interested in techniques for copying Frame files from the office shared drive for homework purposes, then returning the files to the office, when those files have graphics imported by reference from the office shared drive.
Right now all the graphics links get broken when I do this, and require painstaking reconstruction. Not worth the trouble.
I use Frame 7.2 on Windows XP.

These are good ideas. I'm not sure if Monica's will work for me because my office Frame and graphics files are on a network shared drive ("H"), and my home PC is self-contained (all files on C). I haven't tried it lately, but I think when the Frame files hunt for imported graphics at home they will look for an H drive. Is there a way around that?
Accessing the office drives from home as Jack suggests is a possibility but our Citrix-based system has quirks that have always stymied my efforts.
I think what I'm looking for is a way to "turn off" the imported graphics links before saving the Frame files to my jump drive. I can work without the graphics at home. Then I could turn them back on when I copy the files back onto the office network drive.
Perhaps this is a wish list item....

Similar Messages

  • File structure for Sets Import - FM_SETS_FIPEX1

    Hi Folks,
    I've been tasked with migrating Funds Group and Commitment Group records into SAP ECC6.  I've discovered the import option, but cannot get a file loaded, probably because the import file structure is incorrect.  Could someone please provide me with the Import file structure, and even an example of the file layout (i.e. what does 'Type' mean?, when to use id 'H', 'R' or 'X').  
    Points will be awarded for helpful solution.
    Cheers,
    Steve

    The trick is to set up a test Group set on-line, and use the Export option on the FM_SETS_FIPEX1 transaction (under the 'Extras' Menu), to extract an example of the file.  Then the import file can be created using the same file structure. NB:  The File is positional based, so saving as tab delimited or comma delimited won't work, as the '#' or ',' delimiters in the file will occupy critical positions in the upload file, causing an error during the load.

  • What file types should I import?

    Hey Everyone.
    I've been using the same process for years to create my videos and burn them to DVD.
    I capture and edit with FCPro and Motion.
    I export out of FCPro with the
    File>export>Export using compressor from the final cut menu.
    This opens up compressor.
    I always set the compressor settings to DVD Best Quality 90 minutes.
    Then I import those MPEG2 files into DVDSP and continue the process from there.
    It dawned on me today that I may not be doing this in the correct way. I started thinking... an MPEG 2 file is a compressed file. Then I import that file in DVDSP... does it compress it again. Doesn't it recompress it into a VOB file... so in essence I'm compressing it twice.
    Can someone clarify this for me.... Thanks in advance.
    -Fraky

    It dawned on me today that I may not be doing this in the correct way. I started thinking... an MPEG 2 file is a compressed file. Then I import that file in DVDSP... does it compress it again. Doesn't it recompress it into a VOB file... so in essence I'm compressing it twice.
    Some things will be recompressed, mainly on menus if you make them a certain way,, but otherwise DVD SP will not recompress m2vs that are on tracks or otherwise...in other words encoding assets outside DVD SP with Compressor for m2v and AC3/Dolby is the way to go.
    The VOBS are not recompressed, they are muxed.
    In other words it sounds like you are generally doing things fine

  • An internal error occurred while writing imported graphics in this document. The file has been saved

    An internal error occurred while writing imported graphics in this document. The file has been saved, but has lost some image data. Please report this error to Adobe Technical Support.
    How do i fix this, there are no images in the document
    thanks
    emma

    We are running FM version 7.2b144 on MS Win xp Pro (32 bit), and I did not notice this until service pack 3 was installed. I believe I have found a work around to the situation and another contributing cause. If graphic files are placed directly in an anchored frame instead of importing by reference, the file somehow becomes misplaced. If you right click the graphic and open the Object Properties dialog box, and see the phrase "no referenced file" below Main Editor: Referenced File: in the lower left hand corner, this has happened. I found if I removed all graphics files without references and imported them by reference, the source file may then be properly saved. I am also using a program called CCleaner, which removes cookies, temp files, browsing history and the like from a system. If the program settings are chosen too aggressively, and the application runs when FM has a file open, this same error will occur, even if all files are referenced properly. I don't know if SP3 has some similar application which is now running in the background and causing this.
    To summarize, if you want to retain SP3, I have eliminated this error by confirming the links to referenced graphics files and avoiding using 3rd party "cleaners" while FM is open.

  • LONG_RAW conversion (using OLE) to file system then import into BLOB column

    To whom it may concern (I will call "hero" or "savior" if you can solve this for me),
    I posted this message an another thread; but then later thought it would be better in its own thread.
    I was wondering how to extract the Adobe Acrobat Reader files (PDF) from OLE component stored in a LONG_RAW database column. I was able to successfully extract the MS-Word, MS-Excel, MS-Powerpoint, and MS-Project to the operating system. I was not able to extract the Adobe PDF files. The PDF files do not return an error message nor do they write out to the file system?
    Leonid previous posted some suggestions on how to convert the data. Can anyone expand on tasks #4 and #5 (see below)?
    You can use this library to do the following task:
    1. Get the type of an object stored inside OLE Item. Get information about the OLE server.
    GetCLSID, GetProgID, IsIDispatchSupported
    2. Get information about the object
    IsLinked, GetSourceDisplayName
    3. Get information from the object in formats supported by its IDataObject interface.
    EnumFormatEtc, RegClipFormat, GetData
    I suppose it's the best way to extract pictures!
    4. Save the object into an external file throu IPersistFile interface. It works only if IPersistFile::Save method is implemented by the OLE server. Unfortunately, some OLE servers don't support this method even don't return a correct error code.
    SaveToFile
    Works with: MS Word, MS Excel
    Not works with: Adobe Acrobat (I'm not sure. Maybe I've done something wrong), MS Photo Editor
    5. Extract the 'Contents' stream from a structured storage /a compound document/.
    ExtractToFile
    It isn't a documented way, but it can be used to extract PDF files.
    I have tried the following two scenarios for the PDF extraction:
    -- First Attempt
    ret:=OLEXTRA.SaveToFile( application, v_FILENAME_WO_EXT || '.pdf' );
    if ret <> 0 then
    show_message( 'SaveToFile Error code='||ret );
    end if;
    -- application does not return an error message
    -- application does not save the PDF file to the operating system.
    -- Second Attempt
    ret:=OLEXTRA.ExtractToFile( application, 'stg.pdf', 'fname.pdf' );
    if ret <> 0 then
    show_message( 'ExtractToFile Error code='||ret );
    end if;
    -- application does not return an error message.
    -- application does not save fname.pdf to the operating system
    -- application saves the stg.pdf to file system, but cannot open in Adobe
    Thanks in advance for the help,
    Mike

    There is no way from PL/SQL in Forms - you'll have to call out to C or Java Code to do it.
    You can link in Pro*C or OCI code into forms as a user exit in which case it can share the forms connection but that's not for the faint hearted.
    Using Java - called from the Java Importer feature in 6i+ you'll end up creating a separate connection.
    Frankly if you can do it in a generic enough way through a VB executable stick with that.
    Forms can get images in an out of a long raw using read_image_file and write_image_file but that does not extend to any binary file - just images.

  • I want to make a schedular which read xml files from a folder ,import in Indesign template then export as a pdf....

    i want to make a schedular probably in Coldfusion or using javascript ,  which read xml files from a folder ,import in Indesign template then export as a pdf....

    I don't think you understand: I want to open Dreamweaver and build a brand new site, then when I am done I want to host the dreamweaver site on the Business Catalyst platform. I dont want to use anything in BC to build the site, I just want to use the hosting platform. I do not want to import a BC site into dreamweaver or anything like that. I just want to use BC the same way I would use godaddy, or uhost or any other hosting provider. Based on your response you said that "of course its possible to build a BC site in Dreamweaver" I dont want to build a BC site, I want to build a Dreamweaver site and host it on the BC platform. Like I said before it doesnt seem like this is possible. As of now we can only build a new site in MUSE and integrate it into BC without using a BC template. Can you understand what I am saying. I DONT WANT TO USE A BC TEMPLATE, I WANT NOTHING TO DO WITH BC WHILE I AM BUILDING THE SITE WITH DREAMWEAVER, JUST LIKE MUSE DOES.

  • Using Firefox 3.6.20 and Windows XP Home SP3. Firefox sporatically deletes bookmarks from the bookmarks toolbar. Additionally, when I try to import from a saved HTML file, Firefox does not import the complete file. Results are inconsistent.

    Using Firefox 3.6.20 and Windows XP Home SP3. Firefox sporatically deletes bookmarks from the bookmarks toolbar. Additionally, when I try to import from a saved HTML file, Firefox does not import the complete file. Results are inconsistent.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • I am trying to import movie files into to iMovie. They are home videos so I use handbrake and VLC to put them onto the computer and convert them to MPEG-4 files. I successfully imported two of the videos but the others are not working, they are all MPEG-4

    I am trying to import movie files into to iMovie. They are home videos so I use handbrake and VLC to put them onto the computer and convert them to MPEG-4 files. I successfully imported two of the videos but the others are not working, they are all MPEG-4 files. Now, they are not compatible. How to I get them into imovie?

    Hi
    I use
    • DV-PAL or DV-NTSC - or -
    • AIC
    Yours Bengt W

  • I purchased Lightroom 5, loaded it on my Mac, and updated to version 5.6. I then tried importing photos from my Sony DSC-RX100iii. Unfortunately it only imports JPEG files but no RAW files. What is the problem and how do I fix it?

    I purchased Lightroom 5, loaded it on my Mac, and updated to version 5.6. I then tried importing photos from my Sony DSC-RX100iii. Unfortunately it only imports JPEG files but no RAW files. What is the problem and how do I fix it?

    Than LR should have brought in the RAW files as well. ACR is the RAW
    processing engine used by LR under the covers so anything not supported by
    ACR would not be supported by Lightroom.
    Are you shooting RAW plus JPEG? By default, Lightroom will stack then
    unless you tell it not to. Check to see if there is a small badge on the
    preview that looks like two sheets of paper with a number. That is how
    Lightroom indicates a stack. You can unstack them by clicking on the badge.
    There is also a menu item to stack/unstack photos. Otherwise, I would have
    to research but not sure why Lightroom would ignore the RAW photos but
    still import the JPEGS.

  • In the past when I have imported my dslr video/audio files and then my zoom audio files Final Cut Pro has organized them in pairs in my library. For some reason my video/audio and my audio are being organized seperately. How do I fix this? Thanks!

    In the past when I have imported my dslr video/audio files and then my zoom audio files Final Cut Pro has organized them in pairs in my library. For some reason my video/audio and my audio are being organized seperately. How do I fix this? Thanks!

    Thank you Russ! Seems as though the timestamp on my audio files was completely incorrect so it placed the files far away from the corresponding video. I've modified the timestamp information and this has helped. The hour/minute information is incorrect but at least now I'm in the ballpark. Thank you!

  • How do i expoert files from Outlook and import them into iphone? operate with Mac OSx at home and trying to convert contacts and calendars from work and carrying on iphone. txs

    How do I export calendar and contact files in Outlook and import them into iphone 4. I operate Mac OS X at home and wish to carry my work information with me on my iPhone.

    You do not export anything.
    Instead, sync the content from Outlook to your device via iTunes.
    Try reading the manual, it's included on the device or here.

  • Why do I get this message every time I travel with my laptop and then return home: To improve reliability, Time Machine must create a new backup for you.

    Why do I get this message every time I travel with my laptop and then return home: "To improve reliability, Time Machine must create a new backup for you."
    I get this on my new MacBook Air, but never got it on my old MacBook Pro.
    Thanks!

    See #C13 in Time Machine - Troubleshooting.

  • Export and then re-import source files from InfoPath 2010

    Hi all,
    While looking in to my form being oddly large I exported all the source files and noticed that there was a large image file in there (which wasn't on any of the views, so I don't know how it was there). I need to delete this file, then re-import all the
    files to become an InfoPath form again. Can someone please tell me how I do that? I don't seem to be able to find anything in the menus....
    Thanks!
    Alex

    Hello Alex,
    I don't think you can import modified infopath form to become a new form. Event you export forma nd delete any file or image then also you will get error when open the menifest.xsf file.
    Better you try to find image in form and delete image from form itself. Just check all the views, form controls (specially hyperlink),  to remove that image.
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • HT3576 When I pull the notification screen down after about 5 seconds the screen goes black and then the apple appears for about 30 seconds and then returns to the home screen, this is an iPhone 4 running ios7 , any ideas??

    When I pull the notification screen down after about 5 seconds the screen goes black and then the apple appears for about 30 seconds and then returns to the home screen, this is an iPhone 4 running ios7 , any ideas??

    One problem though, the top button on my phone is jammed so i cant power off the phone, anyway of resetting the phone without using the top button ?

  • Suddenly the apps I downloaded won't work. The screen "blinks" for a second as if the app is loading, and then returns to the home screen. All the apps that came with the iPod seem to be working fine. How to get them all working again?

    Suddenly the apps I downloaded won't work. The screen "blinks" for a second as if the app is loading, and then returns to the home screen. All the apps that came with the iPod seem to be working fine. How to get them all working again?

    First try a hard reset.  To do this, press and hold both the Sleep/Wake and Home buttons together long enough for the Apple logo to appear.
    If still no luck, try downloading another free app from the App Store.
    More troubleshooting here.
    http://support.apple.com/kb/ts1702
    Lastly, try to restore the iPod from a previous backup or restoring it to factory settings.
    B-rock

Maybe you are looking for

  • Interakt File Upload incompatible with Firefox?  Recommend ASP Upload tool?

    Hi, I've been using Interakt's File Upload tool for quite some time but have recently been made aware that it doesn't work in Firefox! Anyway, I notice that Interakt no longer exist now, having been bought out by Adobe some time ago as it turns out.

  • How to remove songs from ipad ios 5.1.1?

    My kids loaded songs on my ipad with their accounts.  Every time I log on I am prompted for their Apple IDs.  I want to remove the songs.  How??

  • "What you hear" in Windows Vi

    I have an HP Pavilion with Vista installed (and Realtec audio) and just got Soundblaster USB (model SB0490) with the Vista drivers. What I can't get this to do is to be able to hear what I am trying to record. For instance line-in is from my radio, c

  • Active Job

    Hello, 1.Is it possible to cancel a background (status-->Active) scheduled by another user? 2.If yes what is the procedure? 3.I tried in my system but confused with the procedure. Thanks in advance Regards, Sanjeeva

  • Duplex printing with hp p1102w printer mac book pro with retina display

    duplex printing with hp p1102w printer mac book pro with retina display