Embedded file

Hi all,
I inserted a file into my web page but i am unable to access it when i point to the file's address
http://web.me.com/liorsitkovsky/Oldbarnchess/home_files/db.pgn.
I can access the web page and then click on it but I am using an Iphone that needs direct access to the file.
Any help would be appreciated.
Lior
Message was edited by: liorsitkovsky

"Compress" (.zip) by archiving the file prior to the upload.

Similar Messages

  • Error this object is corrupt or is no longer available while trying to open a embedded files in word 2007 or 2013

    Hi All
    Word 2007 and 2013 always show this error
    This object is corrupt or is no longer available while clicking a embedded files( like pdf, doc and xls). I tried reinstall office 2007, and office 2013. But still have same problems.
    I surf internet, find out solution like turnning  off the add-on,  but not working for me, and I do not install Norton AntiVirus.
    Does anyone know what the solution of this issue is, I do not have any idea right now.
    Thanks in advance!!!!!

    I notice there is a cross post on Answer Forum:
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-word/error-the-object-is-corrupt-or-is-no-longer/fde2160e-fc19-4f90-81db-4f569fac7b95
    Is Dinel's suggestion helpful?
    Tony Chen
    TechNet Community Support

  • Problem with Embedded Files/Collections

    I have written a Pdf file (fragments below) to act a container to other pdf's. Initialy it all looks good, however when I click on the embedded file inside Acrobat Reader instead of displaying the contents I get a thumbnail of the acrobat logo with the Open and Save options underneath. If I click open it opens a new Reader window with the container file displayed again, not the embedded file. However if I click save it saves the embedded file down to disk correctly.
    How can I make it so that when the file is clicked in the attachments window it opens directly into the main reader window?
    5 0 obj
    <<
    /Params <<
    /Size 5298
    /ModDate (D:20081002163423+01)
    /CreationDate (D:20081002163423+01)
    >>
    /Length 5298
    /Type /EmbeddedFile
    /Subtype /application#2Fpdf
    >>
    stream
    endstream
    endobj
    6 0 obj
    <<
    /Type /Filespec
    /EF <<
    /F 5 0 R
    >>
    /F (Options Report.pdf)
    /Desc (Options Report)
    >>
    endobj
    7 0 obj
    <<
    /Type /Catalog
    /Pages 8 0 R
    /OpenAction[4 0 R /Fit]
    /Names << /EmbeddedFiles 9 0 R >>
    /Collection <</Type /Collection /View /T>>
    >>
    endobj
    9 0 obj
    << /Names [ (Options Report) 6 0 R ]
    >>
    endobj

    Leonard, I have uploaded the completed file to http://forum.planetpdf.com/webboard/wbpx.dll/~planetpdfforum/read?167447,3
    I could not see how to upload files to this forum.
    As stated above the file opens in Acrobat Reader v7 to the cover page, and allows the embedded files to be opened in seperate application windows, as it does in version 9. However under Acrobat Reader v8 when an embedded document is opened it just re-opens at the package level, not the embedded doc.
    Thank you in advance if you can look at this.

  • Extract All Embedded Files in All Folders and Save Each? Copy/Paste from PDF to Word?

    I have most of what I need here, but I’m missing 2 important pieces. 
    #1)  I want to copy/paste from all PDF files in a folder and paste the copied data into a single Word file. 
    It works fine if I have ONLY Word docs in my folder.  When I have PDF files and Word files, the contents of the Word files are copied in fine, but the contents of the PDF files seem to come in as Chinese, and there is no Chinese in
    the PDF, so I have no idea where that’s coming from.
    #2)  I want to extract all embedded files (in all my Word files) and save the extracted/opened file into the folder.  Some embedded files are PDFs and some are Excel files.
    Here the code that I’m working with now.
    Sub Foo()
    Dim i As Long
    Dim MyName As String, MyPath As String
    Application.ScreenUpdating = False
    Documents.Add
    MyPath = "C:\Users\001\Desktop\Test\" ' <= change this as necessary
    MyName = Dir$(MyPath & "*.*") ' not *.* if you just want doc files
    On Error Resume Next
    Do While MyName <> ""
    If InStr(MyName, "~") = 0 Then
    Selection.InsertFile _
    FileName:="""" & MyPath & MyName & """", _
    ConfirmConversions:=False, Link:=False, _
    Attachment:=False
    Dim Myshape As InlineShape
    Dim IndexCount As Integer
    IndexCount = 1
    For Each Myshape In ActiveDocument.InlineShapes
    If Myshape.AlternativeText = PDFname Then
    ActiveDocument.InlineShapes(IndexCount).OLEFormat.Activate
    End If
    IndexCount = IndexCount + 1
    Next
    Selection.InsertBreak Type:=wdPageBreak
    End If
    On Error Resume Next
    Debug.Print MyName
    MyName = Dir ' gets the next doc file in the directory
    Loop
    End Sub
    If this has to be done using 2 Macros, that’s fine. 
    If I can do it in 1, that’s great too.
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

    Hi ryguy72,
    >>When I have PDF files and Word files, the contents of the Word files are copied in fine, but the contents of the PDF files seem to come in as Chinese, and there is no Chinese in the PDF, so I have no idea where that’s coming from.<<
    Based on the code, you were insert the file via the code Selection.InsertFile. I am trying to reproduce this issue however failed. I suggest that you insert the PDF file manually to see whether this issue relative to the specific file. You can insert PDF
    file via Insert->Text->Object->Text from file.
    If this issue also could reproduced manually, I would suggest that you reopen a new thread in forum to narrow down whether this issue relative to the specific PDF file or Word application.
    >> I want to extract all embedded files (in all my Word files) and save the extracted/opened file into the folder.  Some embedded files are PDFs and some are Excel files.<<
    We can save the embedded spreadsheet via Excel object model. Here is an example that check the whether the inlineshape is an embedded workbook and save it to the disk for you reference:
    If Application.ActiveDocument.InlineShapes(1).OLEFormat.ClassType = "Excel.Sheet.12" Then
    Application.ActiveDocument.InlineShapes(1).OLEFormat.DoVerb xlPrimary
    Application.ActiveDocument.InlineShapes(1).OLEFormat.Object.SaveAs "C:\workbook1.xlsx"
    Application.ActiveDocument.InlineShapes(1).OLEFormat.Object.Close
    End If
    And since the Word object model doesn't provide API to save the embedded PDF, I would suggest that you get more effective response from PDF support forum to see whether it supports automation. If yes, we can export the PDF as embedded spreadsheet like code
    absolve.
    Hope it is helpful.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is it possible to convert a Word document with embedded files?

    I am using Acrobat 8 Professional and have tried converting a word file, which contains embedded word, excel and pdf files within it.  The document converts but the embedded files are not accessible.  I have tried converting the document using print and also the 'Convert to adobe' button in
    Word.
    I saved the embedded files separately is they are, i.e. Word, Excel, or pdf and also saved them all as pdf's and then manually inserted them into the converted file using the Link button.  I can open the embedded files, but when I send the converted document to others, they cannot open the files.  Has anyone found a solution or maybe it's not possible with this version of Acrobat.
    Thanks.

    Hi uois21,
    Would you send your document as an email attachment? 
    I will check it from my end.Please add the link to this forum post for reference.
    I have sent you my contact details on your email id.
    Regards,
    Florence

  • MacBook Air with Mavericks: how do I download a web based Word doc with embedded Word files. At moment I cannot access the embedded files on the web (NHS mail) but can on a PC.  Help please.

    MacBook Air with Mavericks.  I need to download agendas with embedded files. This is through an encrypted email account. My Mac is blocked from even opening the embedded files on line and I can't save any of this to my laptop.  It works fine on my PC laptop.  Help please.  I know this is a problem for other people too, but would love the solution!

    Gee, Pat, this is a  real big help.
    Nobody could possibly think anyone would ask for help without first trying to fix the issue oneself. Or maybe you do. I have opened the file and looked under security. I have changed it to owner-notebook (which is what the techs called me) and clicked accept but geepers it didn't work.
    Maybe someone else has an idea.
    Take Ownership of a File or Folder
    The above should be a link. At least I copied and pasted the link. I did what was stated in there. It isn't like brain surgery. But it is not working. I ended up being able to open some pdf files after transferring them from one partition category to another. I wish it was that easy as you seem to think.
    Thanks for the help. Have a great year.

  • Convert .doc file with embedded file(s)

    Dear all,
    I have around 1 million documents that need to convert from .doc / .xls to PDF, and I've found that some .doc files embedded with other files into it, like a .doc inside another .doc, or .xls inside another .doc, for those files, after converted them using LC PDFG, the embedded files will become an icon image, is there any methods to convert those documents so that the embedded files are also "attached" inside the result PDF? Thanks!
    Regards,
    Bearyung

    Hi Joel,
    The feature you are looking for, is currently not available in Acrobat.
    But you can create an interactive link (to open Word/Excel) using Acrobat. Please look at the following link:
    http://acrobatusers.com/tutorials/creating-and-editing-links
    Regards,
    Anoop

  • Embedding files into a .pdf file

    How do I embed files into a .pdf file?  It worked in word but when I converted to .pdf format, I lost the ability to open the embedded file with a click...

    Challenge no. 2 below Pat.  Thanks!
    Dave Janzow
    Director, Business Development, Life Sciences
    UNITRANS INTERNATIONAL CORPORATION
    peace of mind > every time
    [private information removed by moderator]
    All business transactions are based on Unitrans Intl Corporation's terms and conditions, available on request.
    Unitrans Intl Corp. is a certified member of C-TPAT (Customs Trade Partnership against Terrorism).
    Our SVI number for Customs House Brokerage is: unibro00850.
    Please refer to our website for further information on the C-TPAT program.

  • FB 4.7 publish in flashIDE workers not sending/receiving + FB 4.7 access to embedded files

    Alright, this have been a painful day trying to solve this and I am pulling my hair out.
    So I decided to download the FB4.7 trial for some test with AIR13, and after an indecent amount of hours trying to install the latest player and android sdk (why the hell isn't it like in the IDE?), I have 2 major issues and so far not impressed at all by FB4.7.
    I have developped a project using the Flash IDE. Everything works perfectly BUT the workers. I don't get any error message, and my app doesn't trace the messages I'm supposed to receive from a worker. To be sure I coded that properly, I created a test project in FB4.7, copied pasted my code and my worker is working and I can trace messages sent and received from the worker to my main app. Why don't i see these traces when I fire my app from the IDE ? If i can't test workers in the IDE, this is a major issue. It doesn't even throw any error, just doesn't trace anything.
    Sooooo because It wouldn't work in the IDE, I copied my files to another location, created a project in FB4.7. If I run/debug in FB4.7 the worker works, but now I am unable to access embedded files in the app. In Flash IDE, I embed a folder that contains a bunch of files, and can access the file with 'app:/folder/file', which was very usefull because I have a ton of assets and this is the softest solution not to have a stupid class with 200 [Embed.. ] ******** hardcoded lines.
    So question 1 : how to have worker working in Flash IDE ?
    And question 2, if question 1 is a no go : since I do not want to modify my working code (in the IDE), how can I have the same behavior debugging from FB4.7 when it comes to using 'app:/' ?
    Also, just a notice about this sketchy forums, If I go back to my own post, the view count increment (lol). Let me know if this is coded in CF cause it looks like someone doesn't know about sessions

    Did you find a solution for this?

  • Is there a way to view embedded files in a Word doc that you have PDF'd?

    We embed as objects different types of files (i.e, pdf, excel, etc.) into our word documents.  When those documents are PDF'd, you cannot open the files as they become pictures.  Is there anyway I can have the embedded files open in PDF as they do in the Word document?

    You can embed PDF file in word document by converting PDF to Doc, for this conversion you need PDF to Doc converter.
    Or you can also embed PDF file in word as image by convert PDF to Image and attach image of PDF page in Doc, for this conversion you need PDF to Image converter.
    There are many PDF converter available on web that can perform this conversion like Adobe Acrobat, Nitro and Classic PDF etc. I am using classic PDF, it can easily perform both of above conversion along with many other features. It is reliable and afordable PDF software.
    If you have any question feel free to ask.

  • InDesign asking for location of embedded files

    I embedded two links in an InDesign document before I sent them to another designer, so I would only have to send one file and not 3. However, the designer called to say InDesign was asking him to locate the embedded files or something, and he couldn't work with the document. Does anyone know why InDesign would ask to locate the files even though they've been embedded?

    I didn't have any problems when I saved the file to another folder and reopened it from there. I'm sure I didn't copy/paste the files - they were originally linked, before i right-clicked on them in the links panel and chose 'embed file'. The icons beside the files in the links panel indicate that the files are embedded. I also checked my sent emails and opened the file that I had sent them, which had the files embedded and not linked.
    I still don't know why this happened - maybe the other designers were trying to unembed the files and didn't understand the message that pops up when you attempt to do so... but even then you can choose to extract the embedded files from the InDesign doc to a specified location; you don't have to link to the originals.
    Thanks for everyone's help, though. I ended up getting around the issue by just zipping the files.

  • Error publishing "Application with runtime embedded" file

    I am trying to publish an "Application with runtime embedded" file out of Flash Pro CC. I am getting an error that I think indicates that certain necessary files that get packaged with the SWF to create the App are not able to be copied. The error message occurs at the end of the process after the SWF file has been published and after it has tried to gather the AIR files.
    iMac 27" 3.4 GHz Intel Core i7, 8 processor cores,  32gb ram,  OS X 10.8.4
    Flash Pro CC Ver. 13.0.0.759 (up to date)
    Error Message
    Unknown error.
    unexpected failure: Copy failed
    java.io.IOException: Copy failed
    at
    com.adobe.air.nai.MacPackager.copyWithPermissions
    (MacPackager.java:54)
    at
    com.adobe.air.nai.AppBundlePackager.assembleInternalFiles(AppBundlePackager.java:52)
    at
    com.adobe.air.nai.Native Packager.createPackage(NativePackager.java:132}
    at
    com.adobe.air.ADT.parseArgsAndGo(ADT.java:572)
    at com.adobe.air.ADT.run(ADT.java:419)
    at com.adobe.air.ADT.main(ADT.java:469)
    I can publish the exact same file as an AIR package and have it work.
    I have repaired my permissions in the off chance that Flash could not access the files due to bad permissions. 
    I don't what my next steps should be. My chat with support netted nothing but the suggestion I post to this forum. Anyone have any ideas?
    Thanks in advance

    Hi,
    Please let us know, which Player Target you are trying to publish to : AIR for Desktop/AIR for Android.
    Are you trying to use AIR3.6 or any other SDK using Manage AIR SDK?
    If possible, provide the scenario file so that we can repro the issue.
    Regards,
    Meenakshi

  • I need to edit embedded file, but selection is grayed out

    I need to convert embedded RGB files to CMYK, but when I go to "Edit Original," it is grayed out. In some cases, I no longer have the original. Can I make the RGB to CMYK change by working with the embedded file? How do I get to it? Thanks.

    Select the file in the links panel and then choose unembed from the
    panel menu.
    If the graphic isn't in the links panel then it was copy/pasted in and
    there's nothing you can do really. It's not going to be high quality
    anyway, just a low res preview proxy image.
    Bob

  • Color space of embedded files

    Is there a way to determine the color space of a file that is embedded in Illustrator?

    Usually an embedded file is the same color space as the AI file.
    Only when you open a PDF generated elsewhere this might also be something like multichannel.

  • Embedded files 'disappear' when viewing signed version of a document

    Hello,
    We've just come across a weird issue when viewing signed documents containing embedded files in Adobe Reader. If we use the 'Click to view this version' link in the Signatures panel, the embedded files are not shown in the Attachments panel, even though they are covered by the signature.
    I've uploaded a sample document that illustrates the issue to Google Drive, here is the link: https://drive.google.com/file/d/0B1wk9toh5e7AZVBIb2V6a2lDMWM/view?usp=sharing
    Thanks,
    Ken

    "View this version" comes with a disclaimer in the top bar that most functions are disabled in this view. If attachments are shown in the "Attachments" panel, then they can be opened
    (otherwise what's the point to show them at all), and Acrobat uses a default app for this MIME type (i.e. Notepad for .txt files) to open it and has no control what the user could do there. User could definitely copy this file to a different location and this is akin to copying some of he PDF's content which is a prohibited operation in this view.
    You can treat the disclaimer in the top bar as the Adobe official statement along with my read on what it means with respect to annotations.
    IMO to "View this version" for the last signature when there are no changes after the file was signed is meaningless because both versions are identical. It is only when some changes were made after a signature that you may want/need to view the signed version.

  • Maintaining resolutions when placing embedded files

    Hi,
    I am just getting the hang of placing embedded files into my documents and the issue I am having is when I place an embedded psd into another document it seems to shrink it down and lose it's sharpness. Why is this and how do I fix it?
    Thank You!

    If your images are different resolutions they will appear as different sizes. Please post screen captures of your problem.
    Benjamin

Maybe you are looking for