How to link to things in Pictures or Movies folder?

On my iDisk I already have some photos and movies that I want to link to in iWeb. How do I do this? I know about the Sites folder and using homepage.mac.com. Is there an address for the other folders or do I need to move the stuff to the sites folder?

There's also an Apple Knowledge Base article on the subject:
http://docs.info.apple.com/article.html?artnum=42989
I think the link Kyn provided is better written, but I figured the more the merrier.
Old Toad's suggestion does not create a link to an existing file, it copies the file you identified into the domain file, and then publishes it within the iWeb website structure. The link is then to this copy of the file, not the original file. (Old Toad said as much, but it is a distinction that is easy to miss, so I thought it bore repeating)
Both approaches have their advantages and disadvantages. I have generally preferred a true link to an existing file, because then I can edit it later if needed and not worry about whether or not iWeb is publishing the correct file. But if you know you won't need to edit the file and it's not already "in place," Old Toad's method is simpler and keeps everything together. If you are publishing to a folder for uploading to another host or burning to a CD, it's probably the better choice, too, unless you specifically want to link to a file on-line at a different location.
kabing

Similar Messages

  • How can i delete the duplicate pictures and movie clips on my macbook pro

    how can i delete all the duplicate pictures and movie clips on my macbook pro. it is telling me i have no memory

    By 'no memory' may I assume you are out of space on your hard drive?
    Obviously you can delete them one by one, but this is tedious and will take a long time and you wish to do this quickly and efficiently.
    This is my suggestion and it may not be worth a lot:
    If all of your duplicates have a unique characteristic common to them that the originals do not, this MIGHT work.  For example if you make a duplicate of an image, it will have the same title as the original, but will insert the word 'copy' in its' title.  (It should do some thing similar with movie clips).
    Go to Spotlight in System Preferences.  Click on Privacy (near the top of the pane) and then the + sign (near the lower left hand corner).  This will result in a drop down menu.  Select all the places you do not want Spotlight to search.  You should leave only Music and Movies unless you have pictures/movie clips in other places.
    Enter into spotlight the unique characteristic (ie; copy) and it should (I hope) list all your duplicates.  Perform a Select All, and put them in Trash.
    Otherwise do them one by one or write an Apple Script Program.
    If my convoluted idea does not work, perhaps you will be lucky and a more savvy person with a real solution will come forth!
    Caio.

  • How can I change the location of my movie folder

    Hello,  I just consolidated two mac computers into one mac mini.  Now both my wife and I want to share the same actual computer (new mac mini) and share media folders so we are not duplicating photo imports and movies.  I figured out how to map the iTunes library and the iPhoto library to a shared folder, but cannot get how to map the 'movie' folder to a single folder for both accounts.  This would be needed so we can share and work on the same iMovie projects between the two accounts.  Does anyone have any suggestions?

    You might get better answers by asking this in the iMovie Discussion group

  • How to link Javascript code stored in a separate folder to a Form

    I have some Javascripts stored in a differnt Folder. If I want to achieve some different functionality in my forms , how and where do I link this folder. I tried in the Form Edit mode to attach it in the HTML code in the Script tag with the SRC attribute but not been successful.
    Help on this will be highly appreciated
    Thank you all in anticipation
    Cheers
    Nitin

    Hi,
    Simplest way would be to drag the script object to be under the root node (form1). On both pages would would then be able to reference the function by:
    testScript.doThisNow();
    If you leave the script object under page1, then from page2, the following should work:
    page1.testScript.doThisNow();
    Hope that helps,
    Niall

  • Can anyone tell me how I can take photos from Pictures and move them  into iPhotos so that I can share them on photo stream to my Apple TV?

    I have tried all morning to get my picture files to move into iPhotos. I want to push them using photo stream to my Apple TV. My picture files were originally from a Windows programme, I have too many photos to loose or just lay unviewed on my Mac!

    Have you tried the import function on iPhoto?  Have you tried just dragging them into the iphoto app?

  • Link Material Document generated for material movement due to production

    Hello Expert,
    I am creating a zreport for Material Consumption during Production. I am assuming Confirmation entry in PP module as a base of this report and linking to Material Movement data in MM Module. But I am not able to link this data from tables.
    Can you pls guide me how to link Material Document generated for material movement due to production confirmation entry and actual production confirmation entry.
    Thanks
    Shailendra

    Hi Shilendra ,
    You can create a report with the logic. That all the materials which are created due to backflushing confirmation are created with movement type 131 and the component material are consumed by movement type 261.So you can create the report with this logic.
    Dont forget to award Points if it helps.
    Lekhram

  • How do I delete things off my iCloud? Like pictures?

    How do I delete things off my iCloud? Like pictures?

    To limit what is backed up to iCloud
    Settings>iCloud>storage and backup
    select your current device backup and all backed up content is listed below you can turn off what u want

  • How to restore the "Linked" attribute of a picture to "false"?

    Just after importing a picture, the "linked" attribute of the
    picture member is "false". When distributed, the data of picture is
    packed in the DCR file.
    If some lingo code changed the "filename" of the member,
    like follow:
    member("MyPicMember").filename = ".\NewPicture.jpg"
    The content of the picture would be changed. And as a
    result, the "linked" attribute of the member would be changed to
    "true" at the same time. A triangle appears on top right conner of
    the icon of the picture member. If distributed again at this time,
    the data of picture is not packed in DCR file. Picture file must
    exist beside the DCR.
    Now I want to restore the "linked" to "false" (because I
    want to write new projects based on the old, I want to let the
    picture data in the DCR again). I found it is difficult to restore
    it. The "linked" attribute can not be modified, whether in Property
    Inspector or in code. I found the only method is delete the member
    and import again, manually, one by one. But there are many pictures
    in my program, so it makes me tired.
    Anyone tell me a good method to restore them? I hope it can
    use code to do it.

    put the following handler in a movie script:
    on mUnlinkBitmaps
    cl = the activecastlib
    sel = the selection of castlib cl
    anz = sel.count
    repeat with n = 1 to anz
    repeat with m = sel[n][1] to sel[n][2]
    memref = member(m, cl)
    if memref.type = #bitmap then
    fname = memref.filename
    if fname.length then
    memref.importfileinto(fname, [#trimwhitespace:0])
    put "imported:"&&memref
    end if
    end if
    end repeat
    end repeat
    end
    select the members you want to import (or "select all" to
    import all linked bitmaps) and type
    mUnlinkBitmaps
    into the message window and press return.
    you can also take a look at my handlermenu tool:
    http://www.farbflash.de/cgi-bin/blosxom.cgi/Dokumente/Director/Tools/handlermenu.html
    which has this among other authoring utilities in the
    utilities menu.

  • I am planning a long vacation and taking my laptop but it is my home computer that my new ipad and ipod touch are synced too. I know i can backup to the cloud over wifi but how can i do things like delete photo albums

    I am planning a long vacation and taking my laptop but it is my home computer that my new ipad and ipod touch are synced too. I know i can backup to the cloud over wifi but how can i do things like delete photo albums instead of having to manually delete pictures one by one on the Ipad. Is there any way also to add my pictures to the ipad other than through email. i am assuming that i can't just install itunes on the laptop and sync to that. I have been told that i always have to sync to my original synced home computer for that.

    The links below have instructions for deleting photos.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPad Tip: How to Delete Photos from Your iPad in the Photos App
    http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
    Another Way to Quickly Delete Photos from Your iPad (Mac Only)
    http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
    How to Delete Photos from iPad
    http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
    How to: Batch Delete Photos on the iPad
    http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
    (With iOS 5.1, use 2 fingers)
    How to Delete Photos from iCloud’s Photo Stream
    http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
     Cheers, Tom

  • Kichat: Where to Find Links to Things About iChat (Replacement)

    Original
    kichat: Where to Find Links to Things About iChat
    Where do I Find Links to Things About iChat ?
    Useful Other Web Pages
    On AIM
    AIM 5.9 If you are using 10.4.8 or lower your PC buddy will need this version
    Download Newest AIM site PC version of AIM 6.1.x.x Download site reportedly works with/to 10.4.9
    Another site explaining how to set up the AIM application
    AIM for Mac Doh?!?!? (Text Only)
    On Internet Speed Checks
    Thanks to Defcom on all of these. Now and then when starting out or encountering problems, it is worth checking if you have the Connection Speed you think you have (or indeed pay for). Most need you to have JAVA installed and active. Most of the common Browers will have the required Pug-inactive.
    Check Your Broadband speed DSLreports. Speed check with a Javascript enabled site
    ADSLGuide's Speed Test Another Java based Test site in Britian.
    Speed Test at Audit My PC As the Link says
    SpeedTest.net A test site just for Testing. Nice Graphical interface (bit "blokey" Men will like it). Shows a section of the world with the most local servers. You can choose ones from further afield
    BroadbandMaX.co.uk As it says Another British based single server test site. Uses javasript and Flash rather Java to run test. Has speedometer style graphics.
    On ADD-ONS
    iChat ADD-ONs
    OK. iChat may not do all the things you may come across when trying out different IM applications.
    iChat 2 stuff first
    iCAR Away Message maker. BEWARE CONFILCTS WITH iCHAT 3
    iProfile 1.2: Add an AIM profile. Beware of using with Tiger/iChat 3
    "iTunes Calling.." Doug Adams' Utility for showing what your iTunes is playing as a Status Message. Not needed for iChat 3
    iChat Status A System Preference control item that can run several applescripts (included) from it's interface to put info from other applications in the Status message. Not siutable in it's current form for iChat 3
    Edit Sept. 2006 And March 2007 No revision yet.
    Live Icon Moving Buddy icon add on. It lives !! Was written by Ecamm but found on VersionTracker only. (Thanks Defcom !!) The VersionTraker page does say it is iChat 2.x Only !!
    iChat 2 and 3 compatible stuff
    Ecamm.com (iChatUSBCam) A utility for making G3/500 and slower work with USB cameras and external iSight cameras. Originally for iChat 2.x but the current version is Universal and works on Intels as well.
    iChatUSBCam has been updated for the changes in 10.4.9
    10.4.9 adds USB Video Class (UVC) drivers to the OS which work with iChat.
    You may have to Update and delete the Drivers you have (IOXperts or Macam) the delete com.apple.ichat.plist as well to get your camera working again.
    John Kennedy's Video Page All sorts of stuff. Camera driver links, other products - basically an eclectic look.
    iGlasses Enhancement for Picture control for External cameras.
    iChat Streaming Icon Another moving icon Utility. Seems to be OK in iChat 3.x
    iChatter More from Ecamm.com Speaks iChat Text chats.
    Conference Recorder Yet more from Ecamm. Allows you to record iChat Video chats.
    Not tried in iChat 2 or is iChat 3 specific
    Showmacster Adds the ability to show Video clips, icons, pics as slide shows and more.
    ChatFX Adds the ability to live feed of Photobooth type distortions and more. Was originally Intel Macs only but NOW Universal!! Can be power hungry as Video is effectively processed twice.
    Chax An Add-on that does much. Allows Auto Accept of Files and Text chats. Tabs Text chats into one window. Has many items that add to the iChat Menus and a set of Preferences added to the iChat Prefernces window.
    PowerBoost More from Ecamm. This time a Utilty for slower Macs to be able to Multi-Video chat.
    On Other Applications
    Multi-service (AIM, Jabber, MSN, Yahoo! etc.) Text Only apps.
    ProteusX A Mac based multiple service Text Chat Instant Messenger client.
    Edit: March 2007. Web site has not been online for several months now.
    Fire Another Multi-service Text only Client for Macs.
    Adium X Another text based multi- service client.
    Mac based AIM Client(s)
    AIM for Mac The Mac Version of AIM.
    Alternatives to iChat but Video chatting capable apps
    iVisit A Mac and PC alternative. (does not use AIM or MSN or Jabber)
    Yak For Free Like Skype and iVisit is a Cross Platform Video, Audio and IM application. They beat Skype to a Mac version.
    Skype Cross Platform IP telephony and Chat client. Now has a Mac version for Video chat
    PalTalk.com
    Yahoo! Messenger for Mac Beta of Yahoo! 3
    Gizmo Says it can link to almost anything. Frre to Download. Looks like calls to lanlines cost like Skype does.
    Apps for PCs in addition to lose listed above
    Trillian PC based alternative to AIM using the AIM servers. Will connect to iChat
    Apps to connect to other Services
    Mercury Messenger A JAVA based MSN Client. JAVA makes it cross platform. Has a beta for Video and Auido chats.
    aMSN Another MSN Video chat Client
    <href="http://messenger.yahoo.com/">Yahoo! Messenger for Mac Beta of Yahoo! 3
    On Other iChat Set Up and Info Pages
    CherryPop Homepage Alternative pages about setting up iChat.
    John Kennedy's Homepage Links to Camers Drivers and other useful stuff. A bit dated now
    Ryan's iChat set up pages Well worth a beginners visit.
    MVLDesign.com Mac to PC (AIM 5.9) and iChat help page.
    Chatter Lists pages
    This might be useful to those who ask it regularly.
    If your looking for iChat Buddy Lists You may want to register at these.
    MyiSight.com
    iChatters.com
    Globalchat chatfinder.com
    .Mac Buddy Central (Thanks to Iveta Staks.)
    iChat Club : (Thanks to Phillippe Alary)
    iChatVillage
    iChat Rooms Listing
    Some of them cost. Also do a Google search for more, including the AIM chat rooms.
    These require that you make note of the chatroom and enter it in the window that pops up when you use the "Go to Chat" item in the iChat File menu.
    6:10 PM Friday; March 30, 2007

    Original
    kichat: Where to Find Links to Things About iChat
    Where do I Find Links to Things About iChat ?
    Useful Other Web Pages
    On AIM
    AIM 5.9 If you are using 10.4.8 or lower your PC buddy will need this version
    Download Newest AIM site PC version of AIM 6.1.x.x Download site reportedly works with/to 10.4.9
    Another site explaining how to set up the AIM application
    AIM for Mac Doh?!?!? (Text Only)
    On Internet Speed Checks
    Thanks to Defcom on all of these. Now and then when starting out or encountering problems, it is worth checking if you have the Connection Speed you think you have (or indeed pay for). Most need you to have JAVA installed and active. Most of the common Browers will have the required Pug-inactive.
    Check Your Broadband speed DSLreports. Speed check with a Javascript enabled site
    ADSLGuide's Speed Test Another Java based Test site in Britian.
    Speed Test at Audit My PC As the Link says
    SpeedTest.net A test site just for Testing. Nice Graphical interface (bit "blokey" Men will like it). Shows a section of the world with the most local servers. You can choose ones from further afield
    BroadbandMaX.co.uk As it says Another British based single server test site. Uses javasript and Flash rather Java to run test. Has speedometer style graphics.
    On ADD-ONS
    iChat ADD-ONs
    OK. iChat may not do all the things you may come across when trying out different IM applications.
    iChat 2 stuff first
    iCAR Away Message maker. BEWARE CONFILCTS WITH iCHAT 3
    iProfile 1.2: Add an AIM profile. Beware of using with Tiger/iChat 3
    "iTunes Calling.." Doug Adams' Utility for showing what your iTunes is playing as a Status Message. Not needed for iChat 3
    iChat Status A System Preference control item that can run several applescripts (included) from it's interface to put info from other applications in the Status message. Not siutable in it's current form for iChat 3
    Edit Sept. 2006 And March 2007 No revision yet.
    Live Icon Moving Buddy icon add on. It lives !! Was written by Ecamm but found on VersionTracker only. (Thanks Defcom !!) The VersionTraker page does say it is iChat 2.x Only !!
    iChat 2 and 3 compatible stuff
    Ecamm.com (iChatUSBCam) A utility for making G3/500 and slower work with USB cameras and external iSight cameras. Originally for iChat 2.x but the current version is Universal and works on Intels as well.
    iChatUSBCam has been updated for the changes in 10.4.9
    10.4.9 adds USB Video Class (UVC) drivers to the OS which work with iChat.
    You may have to Update and delete the Drivers you have (IOXperts or Macam) the delete com.apple.ichat.plist as well to get your camera working again.
    John Kennedy's Video Page All sorts of stuff. Camera driver links, other products - basically an eclectic look.
    iGlasses Enhancement for Picture control for External cameras.
    iChat Streaming Icon Another moving icon Utility. Seems to be OK in iChat 3.x
    iChatter More from Ecamm.com Speaks iChat Text chats.
    Conference Recorder Yet more from Ecamm. Allows you to record iChat Video chats.
    Not tried in iChat 2 or is iChat 3 specific
    Showmacster Adds the ability to show Video clips, icons, pics as slide shows and more.
    ChatFX Adds the ability to live feed of Photobooth type distortions and more. Was originally Intel Macs only but NOW Universal!! Can be power hungry as Video is effectively processed twice.
    Chax An Add-on that does much. Allows Auto Accept of Files and Text chats. Tabs Text chats into one window. Has many items that add to the iChat Menus and a set of Preferences added to the iChat Prefernces window.
    PowerBoost More from Ecamm. This time a Utilty for slower Macs to be able to Multi-Video chat.
    On Other Applications
    Multi-service (AIM, Jabber, MSN, Yahoo! etc.) Text Only apps.
    ProteusX A Mac based multiple service Text Chat Instant Messenger client.
    Edit: March 2007. Web site has not been online for several months now.
    Fire Another Multi-service Text only Client for Macs.
    Adium X Another text based multi- service client.
    Mac based AIM Client(s)
    AIM for Mac The Mac Version of AIM.
    Alternatives to iChat but Video chatting capable apps
    iVisit A Mac and PC alternative. (does not use AIM or MSN or Jabber)
    Yak For Free Like Skype and iVisit is a Cross Platform Video, Audio and IM application. They beat Skype to a Mac version.
    Skype Cross Platform IP telephony and Chat client. Now has a Mac version for Video chat
    PalTalk.com
    Yahoo! Messenger for Mac Beta of Yahoo! 3
    Gizmo Says it can link to almost anything. Frre to Download. Looks like calls to lanlines cost like Skype does.
    Apps for PCs in addition to lose listed above
    Trillian PC based alternative to AIM using the AIM servers. Will connect to iChat
    Apps to connect to other Services
    Mercury Messenger A JAVA based MSN Client. JAVA makes it cross platform. Has a beta for Video and Auido chats.
    aMSN Another MSN Video chat Client
    <href="http://messenger.yahoo.com/">Yahoo! Messenger for Mac Beta of Yahoo! 3
    On Other iChat Set Up and Info Pages
    CherryPop Homepage Alternative pages about setting up iChat.
    John Kennedy's Homepage Links to Camers Drivers and other useful stuff. A bit dated now
    Ryan's iChat set up pages Well worth a beginners visit.
    MVLDesign.com Mac to PC (AIM 5.9) and iChat help page.
    Chatter Lists pages
    This might be useful to those who ask it regularly.
    If your looking for iChat Buddy Lists You may want to register at these.
    MyiSight.com
    iChatters.com
    Globalchat chatfinder.com
    .Mac Buddy Central (Thanks to Iveta Staks.)
    iChat Club : (Thanks to Phillippe Alary)
    iChatVillage
    iChat Rooms Listing
    Some of them cost. Also do a Google search for more, including the AIM chat rooms.
    These require that you make note of the chatroom and enter it in the window that pops up when you use the "Go to Chat" item in the iChat File menu.
    3:01 PM Sunday; April 8, 2007

  • I'm debutante in oracle 10g how to create a database with picture?

    I'm debutante in oracle 10g how to create a database with picture? help please

    d7401ec1-d4d6-4e54-9eb4-2181ac367d0c wrote:
    I'm debutante in oracle 10g how to create a database with picture? help please
    Oracle 10g is obsolete.  Oracle 11g is already at terminal release.
    Have you installed the Oracle rdbms software?
    Installing Oracle and Building the Database
    If you are going to be a professional DBA, you need to learn to
    1) read the documentation
    2) wean yourself from dependence on pictures and GUIs.
    3) read the documentation
    =================================================
    Learning how to look things up in the documentation is time well spent investing in your career.  To that end, you should drop everything else you are doing and do the following:
    Go to  docs.oracle.com.
    Locate the link for your Oracle product and version, and click on it.
    You are now at the entire documentation set for your selected Oracle product and version.
    BOOKMARK THAT LOCATION
    Spend a few minutes just getting familiar with what is available here. Take special note of the "books" and "search" tabs. Under the "books" tab (for 10.x) or the "Master Book List" link (for 11.x) you will find the complete documentation library.
    Spend a few minutes just getting familiar with what kind of documentation is available there by simply browsing the titles under the "Books" tab.
    Open the Reference Manual and spend a few minutes looking through the table of contents to get familiar with what kind of information is available there.
    Do the same with the SQL Reference Manual.
    Do the same with the Utilities manual.
    You don't have to read the above in depth.  They are reference manuals.  Just get familiar with what is there to be referenced. Ninety percent of the questions asked on this forum can be answered in less than 5 minutes by simply searching one of the above manuals.
    Then set yourself a plan to dig deeper.
    - *Read a chapter a day from the Concepts Manual*.
    - Take a look in your alert log.  One of the first things listed at startup is the initialization parms with non-default values. Read up on each one of them (listed in your alert log) in the Reference Manual.
    - Take a look at your listener.ora, tnsnames.ora, and sqlnet.ora files. Go to the Network Administrators manual and read up on everything you see in those files.
    - *When you have finished reading the Concepts Manual, do it again*.
    Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.
    =================================

  • Did you know how to link the text in two or more text boxes?

    Did anyone know how to link the text in two or more text boxes in Pages 5.0? Thanks for your answer.
    Qualcuno sa come collegare il testo in due o più caselle di testo nella versione 5.0 di Pages. Grazie per le vostre risposte.

    It's just one of the many, many features that have been eliminated or changed. Leave feedback for the Pages team using the link in the Pages menu and review & rate the new versions in the Mac App Store.
    If you previously had iWork '09, those apps are still in your Applications folder in a folder named iWork '09. You can continue to use them to get things done.

  • How can i find all included pictures which are not in a album? (only in the Library)

    How can i find all included pictures which are not in a album? (only in the Library)

    Hi there,
    I'm afraid I don't quite understand your question. All images are in your Library and only those you specifically select from that Library would be in an Album. What platform are you using? Revel Mac, Elements, web browser, etc?
    Here is a link with some helpful information:
    FAQ: File Basics: How do I Upload, Download, Share, and Delete files in Revel?
    Thank you,
    Glenyse

  • How can i save music and pictures so all users can access them?

    how can i save music and pictures so all users can access them?

    Hi, this should be your answer as for sharing music. For photos though, I would assume you can do the same thing. Hope it helps!
    http://support.apple.com/kb/ht1203

  • CS3:How to link a file to a InDesign document?

    Hello all,<br /><br />I looked at in the LinkWatcher sample code to get an idea how to link a file to a document, I came up with the code below, the last line of code needs pageitemUID instead of pageUID which I  used it here:<br /><br />IDFile outFile = Utils<ImyUtils>()->getMyFile(); // it reads the file <br />InterfacePtr<IDataLinkHelper> dataLinkHelper(::CreateObject2<IDataLinkHelper>(kDataLinkHelperBoss)); <br />InterfacePtr<IDataLink>      dataLinkNew(dataLinkHelper->CreateDataLink(outFile)); <br /><br />IDocument* theFrontDoc = Utils<ILayoutUIUtils>()->GetFrontDocument();<br />IDataBase* database = ::GetDataBase(theFrontDoc); <br /><br />InterfacePtr<IDocument> piDoc(theFrontDoc, UseDefaultIID()); <br /><br />InterfacePtr<IPageList> pageList(piDoc, UseDefaultIID()); <br />     <br />UID pageUID(kInvalidUID);<br /><br />if (pageList->GetPageCount() >  0)<br /> {<br />     pageUID = pageList->GetNthPageUID(0);<br />}<br />// I try to link the file to the front document, although it say pageitemUID, as a second //parameter, but I don't want to link the file to a particular page item. is this a right thing to do?<br /><br />int32 result = dataLinkHelper->AddDataLink(database,pageUID, dataLinkNew); <br /><br />as I execute the code it doesn't add the file in  Link palette in CS3, but when I pass a UID of one page item such as text frame, it will add the name of file to link palette with a "1" comes to  end of row that shows how many times this file was included in the frame. but in case I have not a page item can I use the pageUID instead ?<br /><br />Thanks In Advance,<br />Mor

    Lee,
    Sorry I think I didn't use the right terminology, somehow I want to include/link the file (not with menu item 'place') programmatically in my current open Indesign document, then I expect to see the filename in Link palette. I can do this with linking to a page item in doc but I don't want to assign it to a particular page item, rather I want to assign it to doc. Is any approach to do it?
    Thanks again,
    Mor

Maybe you are looking for

  • ITunes 8 / Genius / Can't enable / Unknown error (-9846)

    I have a 99G music library (about 23000 songs). I have been trying to turn on Genius since I downloaded iTunes 8 on Tuesday (about 25 attempts, at all times of day). It gets to the 3rd phase (receiving results), and about 25% of the way through, I ge

  • IPhoto library not updated when viewing through web browser, why?

    I post a lot of pics to my blog on Tumblr. When I do I go to Tumblr, choose "Photo" and it brings up the screen with the options. I click the universal "browse" button and it brings up the finder. I click on the "Photos" icon under the "Media" sectio

  • Deletion from multiple tables

    Hi, I am having three tables Payment (Parent) Header (Child) Items (Grand Child) one payment can have multiple header and the header can have multiple item in it. P H H -- level 1 I I I I -- level 2 e.g one payment is having 2 headers and each header

  • IMac Upgrades

    Hi, I am interested in upgrading my iMac for better video editing. I currently have an intel duo 2GHz with 2GB of ram (667 MHz) and the graphics card shows a ATY Radeon X1600 with VRAM of 128 MB. My question is...what I can I do to improve this set u

  • Dump in Cargo Management tab

    Dear all, After the application of SP10 TM 110, the system is raising a dump when selecting the tab Cargo Management in a Ocean Freight Booking. It seems like attribute CONT_CNT_VAL_AQ_CA is missing after the SP upgrade. I havent found any note about