Comments are welcome!

I've written a small app using AppleScript and Growl.
It puts the lyrics of the current iTunes' selected or playing song in a (Growl)window.
Both Growl and my app are free.
My point is, if you like the app as it is great. Keep it and have fun. However, if you do not or have any criticisms and suggestions, I'd like to hear them.
Thank you.
Deivy

Hi James,
first, I do not have any connections with the Growl team, unfortunately.
Growl is an application that receives messages from other applications and passes these messages to the user.
So, if you use HarwareGrowl, which I really recommend, if you connect a device (say a printer) to your USB port, it will display a window with a message stating that "the printer X was connected in USB port y" or something to this order. Which is excellent to diagnose any possible USB connection problem.
In the case of the script I wrote, the window will display the lyrics of the current playing song.
You can read more about Growl in its website.
Independent of using my script, I really recommend Growl.
Deivy

Similar Messages

  • First PKGBUILD, comments are welcomed

    Hi,
    I adopted the orphan package Selfoss and modified the PKGBUILD and .install files. Since this is my first one, I thought I post it here first. So if anybody has any input I would really appreciate it.
    The two big differences between my PKGBUILD and the original is that I moved the config file to /etc/selfoss/.. and that I keep the old data folder (on upgrades). I keep the data folder because the selfoss homepage states that you should on upgrades
    Upload all new files and folders excluding the data folder
    My main concern is this folder thing (which I do in the .install file). My suspicion is that I maybe don't need to restore the old data folder. I made some quick tests, and it looked like pacman kept everything that had been added or modified after the last install. But I really don't know when or how pacman will change stuff on a upgrade. So I started looking for answers. First on the wiki, like on pages about ABS, PKGBUILD, creating packages and the Arch packaging standards and then on the forum. But I didn't find it..
    Anyhow, here's my PKGBUILD and .install . Thanks in advance!
    PKGBUILD
    # Maintainer: Maxim Andersson <[email protected]>
    # Contributor: Tetsumaki <http://goo.gl/YMBdA>
    pkgname=selfoss
    pkgver=2.9
    pkgrel=1
    pkgdesc="The new multipurpose rss reader, live stream, mashup, aggregation web application"
    arch=('any')
    url="http://selfoss.aditu.de/"
    license=('GPL3')
    depends=('php>=5.3')
    optdepends=('apache: is depedency if you do not use lighttpd or nginx'
    'lighttpd'
    'nginx'
    'mariadb: is depedency if you do not use postgresql or sqlite'
    'postgresql'
    'sqlite'
    'php-sqlite: is dependacy if you use sqlite'
    'wget: for automatic updating feeds with cron'
    'curl: for automatic updating feeds with cron')
    conflicts=('selfoss-git')
    backup=('etc/webapps/selfoss/config.ini')
    install=${pkgname}.install
    source=("http://selfoss.aditu.de/${pkgname}-${pkgver}.zip"
    "${pkgname}.install")
    sha256sums=('9bf3642c7de146c1a89c336ad5fc77e1823d125d7dbfed9060c6c7c2cdc8ec39'
    'f59a0de2ee13d83a263a8f1a0c25ee3542e1981d6ead19af299999818975e142')
    package() {
    rm -rf README.md ${pkgname}-${pkgver}.zip
    install -d "${pkgdir}"/usr/share/webapps/${pkgname}
    cp -rf . "${pkgdir}"/usr/share/webapps/${pkgname}/
    # move config to etc
    install -d "${pkgdir}"/etc/webapps/${pkgname}
    sed '4,$s/^/;/' "${pkgdir}"/usr/share/webapps/${pkgname}/defaults.ini > "${pkgdir}"/etc/webapps/${pkgname}/config.ini
    chmod 755 "${pkgdir}"/usr/share/webapps/${pkgname}/{data/cache,data/favicons,data/logs,data/sqlite,data/thumbnails,public}
    chown -R http: "${pkgdir}"/usr/share/webapps/${pkgname}
    # vim:set ts=2 sw=2 et:
    selfoss.install
    link_config() {
    ln -sf /etc/webapps/selfoss/config.ini /usr/share/webapps/selfoss/config.ini
    chown http: /usr/share/webapps/selfoss/config.ini
    post_install() {
    link_config
    echo ""
    echo "==> Installed in : /usr/share/webapps/selfoss"
    echo "==> Change RewriteBase in .htaccess"
    echo "==> Check http://selfoss.aditu.de/ for details."
    echo ""
    echo "==> Config is now at /etc/webapps/selfoss/config.ini"
    echo ""
    pre_upgrade() {
    # save old config (from pkgbuild 2.8)
    [[ -f /usr/share/webapps/selfoss/config.ini && ! -f /etc/webapps/selfoss/config.ini ]] \
    && install -Dm644 /usr/share/webapps/selfoss/config.ini /etc/webapps/selfoss/config.ini
    [[ -f /usr/share/webapps/selfoss/config.ini && -f /etc/webapps/selfoss/config.ini ]] \
    && install -Dm644 /usr/share/webapps/selfoss/config.ini /etc/webapps/selfoss/config.ini.backup
    # temporarily backup data folder
    rm -rf /tmp/data
    cp -rf /usr/share/webapps/selfoss/data /tmp/ 2> /dev/null
    post_upgrade() {
    link_config
    # restore data folder
    if [[ -d /tmp/data ]]; then
    rm -rf /usr/share/webapps/selfoss/data
    cp -rf /tmp/data /usr/share/webapps/selfoss/
    fi
    rm -f /usr/share/webapps/selfoss/public/{all.css,all.js}
    [[ -d /usr/share/webapps/selfoss/data/icons ]] \
    && mv -f /usr/share/webapps/selfoss/data/{icons,favicons}
    echo ""
    echo "==> For a clean update:"
    echo "==> Change RewriteBase in .htaccess"
    echo "==> Refresh your browser cache (CTRL+R in most cases)"
    echo "==> Check http://selfoss.aditu.de/ for details."
    echo ""
    echo "==> Config is now at /etc/webapps/selfoss/config.ini"
    echo ""
    For reference, here's the AUR page with the old PKGBUILD.

    Ok, so here's how my PKGBUILD and .install looks like now.
    PKGBUILD
    # Maintainer: Maxim Andersson <[email protected]>
    # Contributor: Tetsumaki <http://goo.gl/YMBdA>
    pkgname=selfoss
    pkgver=2.9
    pkgrel=1
    pkgdesc="The new multipurpose rss reader, live stream, mashup, aggregation web application"
    arch=('any')
    url="http://selfoss.aditu.de/"
    license=('GPL3')
    depends=('php>=5.3')
    optdepends=('apache: server, depedency if not using lighttpd or nginx'
    'lighttpd: server, depedency if not using apache or nginx'
    'nginx: server, depedency if not using lighttpd or apache'
    'mariadb: database, depedency if not using postgresql or sqlite'
    'postgresql: database, depedency if not using mariadb or sqlite'
    'sqlite: database, depedency if not using postgresql or mariadb'
    'php-sqlite: dependency if using sqlite'
    'wget: for automatic updating feeds with cron'
    'curl: for automatic updating feeds with cron')
    backup=('etc/webapps/selfoss/config.ini')
    install=${pkgname}.install
    source=("http://selfoss.aditu.de/${pkgname}-${pkgver}.zip")
    sha256sums=('9bf3642c7de146c1a89c336ad5fc77e1823d125d7dbfed9060c6c7c2cdc8ec39')
    package() {
    rm -rf "${srcdir}"/{README.md,${pkgname}-${pkgver}.zip}
    install -d "${pkgdir}"/usr/share/webapps/${pkgname}
    cp -af "${srcdir}"/. "${pkgdir}"/usr/share/webapps/${pkgname}/
    # create config in /etc
    install -d "${pkgdir}"/etc/webapps/${pkgname}
    sed '4,$s/^/;/' "${pkgdir}"/usr/share/webapps/${pkgname}/defaults.ini > "${pkgdir}"/etc/webapps/${pkgname}/config.ini
    ln -sf /etc/webapps/${pkgname}/config.ini "${pkgdir}"/usr/share/webapps/${pkgname}/config.ini
    chmod 755 "${pkgdir}"/usr/share/webapps/${pkgname}/{data/cache,data/favicons,data/logs,data/sqlite,data/thumbnails,public}
    chown -R http: "${pkgdir}"/usr/share/webapps/${pkgname}
    # vim:set ts=2 sw=2 et:
    .install
    post_install() {
    echo ""
    echo "==> Installed in : /usr/share/webapps/selfoss"
    echo "==> Change RewriteBase in .htaccess"
    echo "==> Check http://selfoss.aditu.de/ for details."
    echo ""
    echo "==> Config is now at /etc/webapps/selfoss/config.ini"
    echo ""
    pre_upgrade() {
    # save old untracked config (from pkgbuild 2.8) and make it tracked
    [[ -f /usr/share/webapps/selfoss/config.ini && ! -h /usr/share/webapps/selfoss/config.ini ]] \
    && install -Dm644 /usr/share/webapps/selfoss/config.ini /etc/webapps/selfoss/config.ini
    post_upgrade() {
    rm -f /usr/share/webapps/selfoss/public/{all.css,all.js}
    echo ""
    echo "==> For a clean update:"
    echo "==> Change RewriteBase in .htaccess"
    echo "==> Refresh your browser cache (CTRL+R in most cases)"
    echo "==> Check http://selfoss.aditu.de/ for details."
    echo ""
    echo "==> Config is now at /etc/webapps/selfoss/config.ini"
    echo ""
    pre_remove() {
    # remove untracked files
    find /usr/share/webapps/selfoss/data/ -type f -exec rm -f '{}' ';' 2> /dev/null
    rm -f /usr/share/webapps/selfoss/public/{all.css,all.js}
    Thanks for all the time you spent explainting stuff! Really appreciate it. Can't wait to adopt a new PKGBUILD or maybe make a new one
    The only thing I wasn't able to do was to put the data directory in /var/lib/. On upgrades pacman complained about the new link (ln -s /var/lib/.. data), because it was already tracking a directory with the same name ('data'). But that's no big deal.
    Last edited by thesilentboatman (2014-02-10 17:13:22)

  • Contribution, Ideas and comment are welcomed

    By seeing this problem of classpath every day, can't we create a small jar file that it can check for jar file needed to be put in the classpath. A small application just with a File Choose to choose the jar file
    Any suggestion!

    no point. manipulating the classpath should be something all developers can do. a deployed application isn't going to be able to ask users to locate jars in that way, or at least I hope the developer that does it gets fired. learn to use the classpath on your development machine, and deployment becomes cleaner. you wouldn't believe some of the "deployments" that appear, only able to run on the developers machine or something, because they relied on local classpath hacks

  • Site Survey Theory .... All Comments, Thoughts, and Theories are welcome

    Hello All,
    I am seeking opinions about a survey methodology that was told to me today.  I have my own thoughts about it but I just want to make sure I'm not off base so any help is greatly appreciated.  The requirements for the wireless network are as follows:
    - Data and Voice
    - Clients will utilize all bands but newer devices will be pushed to 5GHz 
    - Clients are laptops and iPads right now but the future goal is to implement BYOD
    So, here is the methodology that was told to me ... "We survey only in the 5GHz spectrum because if you have coverage in that spectrum (5GHz) the coverage in the 2.4GHz will be the fine or even better than that.  Therefore, we feel comfortable not capturing the data in the 2.4GHz spectrum." 
    Thoughts about the above statement are welcome!!!
    Thanks,
    Malwan

    The essential question for a high-density design is how many channels for each band will be needed to match the client base? This can be a tricky question since even dual band capable clients do not always select the faster 5 GHz band. Since bandwidth in 2.4 GHz is going to be limited, 5 GHz must be relied on to reach the goal.
    Dual band adapters have been shipping with most laptops for some time. This does not mean that every laptop is a dual band client, but many are. Simply having a dual band client does not guarantee that it will choose 5 GHz over 2.4 GHz. The Microsoft Windows operating system defaults to a Wi-Fi channel search that starts with the 5 GHz channel 36 and continues searching through all of the 5 GHz channels that the client is capable of. If no 5 GHz AP is found then it will continue the search in 2.4 GHz starting at channel 1. Unless the Windows default is changed or the user has chosen a third party Wi-Fi utility to set spectrum preference to 2.4 GHz, the client radio will first try to associate to a 5 GHz AP. Apple Computer's latest release for Atheros and Broadcom chipsets also searches 5 GHz first.
    The Cisco BandSelect feature enables the infrastructure to optimize these types of client connection choices. Where possible, it helps make sure that devices are attaching to the 5 GHz spectrum channels where interference sources tend to be significantly lighter. A much greater channel selection leads to the alleviation of bandwidth challenges.
    Tablet computers and smartphones have begun entering the market at a staggering rate. The vast majority of smartphones shipping today operate in 2.4 GHz only. While many of them are 802.11n clients, of these most have implemented a single input single output (SISO) rather than Multiple Input, Multiple Output (MIMO). A SISO device is only capable of supporting MCS7 data rates, or 54 Mbps.

  • R3load EXPORT tips for 1,5 TB MAXDB Database are welcome!

    Hello to ALL;
    this post is addressed to ALL MAXDB-GURU's !!
    I'v few questions to MAXDB Performance-Guy's for R3load Export on MAXDB!
    (remark to my person:
    I'm certified OS/DB migration consultant and have already done over 500 OS/DB migrations since 1995 successfully)
    BUT now I'm face with following setup for Export:
    HP- IA64 BL870c,  4 CPUu2019s Dual-Core + Hyperthreading activ (mean's 16 "CPU'S" shown via top or glance)
    64 GB RAM, HPUX V11.31;
    MAXDB  7.7.07
    ECC 5.0; Basis/Aba 640.22
    SAP-Kernel 640-Unicode Patch 381
    8 sapdatas are configured on unique 200GB LUN's and VG's in HP-UX; on storage-side the 8 220GB LUN's are located on (only) 9 300GB-Disks with Raid-5 Level and within HP-UX each VG/LVOL is mirrored via LVM to a second desasterdatacenter (200m distance)
    LOGFILES:
    2 x 4 GB LUN Raid-1 on Storage and via LVM  also mirrored to failover-center
    MAXDB-Datasize: 1600 GB Overall and within this 1350 GB used, TEMPUsage about 25 GB !
    MAXDB-Parameter-Settings
    MAXCPUu2019s 10  (4 x IA64 QuadCore+Hyperthreading shows 16 Cores within top and galcne
    Cache_SIZE= I/O Buffer Cache = 16 GB (2.000.000 Pages)
    Data-Cache-HitRatio:  99.61%
    Undo-Cache = 99,98%
    the following sapnote for MAXDB Peformance and Migrations are well known and already processes
    928037, 1077887, 1385089, 1327874, 954268, 1464560, 869267,
    My major problem is the export-runtime with over 4 days on the first dry-run (6 R3load's running on Linux-APPL-Server), and 46h on second runtime, 6 R3loads running on DB-Server IA64)
    the third trail-run was aborted by me after 48hours and 50% export-dump-space was written. In all 3 dry-runs, no more than approx 3.5GB DUMP-Space were written per hour!
    My first question to all MAXDB-Guru'S: How can I influence/optimize the TEMP - Area in MAXDB?? I didn't find any hint's in SDN or SAPNOTES or MaxDB Wiki or google....As fare as I know, this TEMP area "resides" within MAXDB-datafiles, thus it's seperated on my 48 datafiles, spreaded over 8 LUN/VG/disks. But I see LESS throughput on disk's and MAXDB-Kernel uses only ONE of ten's cpu-cores (approx 80% - 120% of 1000%).
    The throughput or cpu-usage doesn't change when I use 2 or 4 or 10 or 16 R3load' processes in parallel. The "result" is always the same: approx. 3,5 GB Export-Dump and 1 CPU MAX-DB Kernelprocess is used !
    so the BIG Question for me: WHERE is the bottleneck ?? (RAID-5 Disk-LUNS mirrored with LVM ???)
    on HP-UX scsi_queue_depth_length I'v increased default value from 8 to 32 to 64 to 128 --> no impact
    2nd question:
    I'v read  OS-Note 1327874 - FAQ: SAP MaxDB Read Ahead/Prefetch, and we are running MAXDB 7.7.07.19! (MaxDB 7.8 is not suppored via PAM for IA64 640-UC-Kernel) and as far as I understood, this parameter will no HELP me on EXPORT with primary-key-sequence ! is this correct?  THUS: which parameter HELPS for speeding up Export-Runtime?
    MAXCPU is set to 10, but ONLY 1 of them is used??
    so this post is for ALL MAXDB GURU'S!
    who will be intrested to contriubte on this "high-sophisticated" migration-project with 1.5TB MAXDB-Database-size and ONLY 24h Downtime !!
    all tips and hints are welcome and I will give us coninued updates to this running project until WE did a successfull migration job.
    PS: Import is not yet started, but should be done within vSphere 5 and SLES 11 SP1 on MAXDB 7.8 ....and of yours in parallel to export with migration monitor, BUT again a challenge: 200km distance from source to traget system !!!
    NICE PROJECT;
    best regards Alfred

    Hi Alfred,
    nice project ... just some simple questions:
    Did you open a message at SAP? Maybe you could buy some upgrade support, this could be usefull to get direct access to the SAP support...
    Which byte order do you use? I know Itanium could use both. But it should be different, otherwise you would use a backup for the migration.
    And the worst question, I do not even want to ask: What about your MAXCPUS parameter? Is it set to more than 1? This could be the problem why only one CPU is used.
    Best regards
    Christian

  • I rented and downloaded two movies from iTunes via my iPad. They show up as purchased in items but won't play. They do not show up in iPad visor app at all. Any ideas on what happened and how to fix are welcome. Thanks

    I rented two movies from iTunes using my iPad. They show us as purchased but will not run from there. I get a message saying I have 24hours to watch then it just goes back to iTunes. I looked in video app where they usually go and nothing is there. Any ideas for a fix are welcome?
    Thanks

    You did try tapping on one of them in that list in the iPod app! This has happened to me and I was able to start the movie from there. You could try restarting the iPad, go into the iPod app and try again.
    Now I'm stumped unless it is a corrupt download. You did download right onto the iPad - correct? If you downloaded in iTunes, there is a Move tab or function that you have to select to transfer the movies to the iPad when you sync. They just don't sync over without selecting move.

  • IN OBIEE IS IT  POSSIBLE COMMENTS ARE STORED IN TRACKING TABLE

    HI,
    CAN ANYBODY HELP ME OUT IN OBIEE IS IT POSSIBLE TO STORE THE COMMENTS IN TRAKING TABLE.AND IS IT POSSIBLE COMMENTS ARE ENTERED ALONG WITH THE DASHBOARD PROMPT..
    ANYBODY KINDLY GIVE THE SOLUTION

    please look at the write back feature of OBIEE.

  • Comments are saved where??

    Hallo!
    Does anyone know where iWeb's blog comments are saved? In which file?
    I have got the following problem: I spent the last 6 weeks not at home but with my girlfriend who has an iBook. So while I can't use my PC notebook for iWeb I had the idea to use her Mac. I opened my domain file with her iWeb, made the changes and.... stupidly uploaded not to mine but to her .Mac account. Instead of thinking (meaning: just switching her .Mac settings to mine and upload again) I downloaded my webpage from her idisk and uploaded the changed files to my idisk. As you can imagine, all the RSS etc. was now enabled for her .Mac account - and all my blog's comments were gone.
    I still have my old domain file back home, so I wonder where the comments are saved so that I might be able to get them back. If they are saved in the domain file somewhere, is it possible to just upload the old domain file and then the new one again afterwards (and get the comments back)?
    If the comments are only saved online I guess they are gone for good...
    Thanks to anyone who knows something that could help me!
    MA
    iMac (Intel Core Duo 2.0 GHz)   Mac OS X (10.4.6)  

    Hi!
    I started iWeb with my old domain-file (not the one I changed at my girlfriend's ibook) and all the comment were still there. Then I published ALL to .Mac.
    When I checked online, all comments were back again. After that I quit iWeb and relaunched with the new domain-file which showed the comments in iWeb, too. Republished ALL to .Mac again and everything worked fine. "Search" finds stuff in the new entries as well now, too.
    I do not know if this helps you. Did your comments ever appear online? I am sure they are saved somewhere on .Mac and not on the computer itself, so if you see them in iWeb (after several republishs) then they should be "Up There".
    ma
    iMac (Intel Core Duo 2.0 GHz)   Mac OS X (10.4.8)  

  • Project server 2013 Time sheet comments are missing or deleting automatically.

    HI,
    For few users the timesheet comments are missing or automatically deleting in my EPM 2013 environment, i am not getting why this was happening & it was not happening always for few users this was happening & not all the times some timesheets only
    the comments are deleting & only comments are deleting the remaining timesheet hours are fine.
    Does any have this kind of this issue , can any one please help me on this.
    Thank You, Kumar KSV

    Hi Kumar,
    This might be a normal behavior depending on how you configured the time tracking process. See this
    excellent recent blog from Michael Wharton.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Notification Comments are storing in which database table?

    Hi All,
    Can anyone help me to find the table name in which notification comments are storing (like checklist notification or Leave approval notification)

    Hi All,
    Can anyone help me to find the table name in which notification comments are storing (like checklist notification or Leave approval notification)

  • Have renewed my ExportPDF Subscription, but still pop's up with "Your trail has expired" window when go to convert via Print driver window. Comments/ help welcome thanks :-)

    Have renewed my ExportPDF Subscription, have the confirmation email, but still pop's up with "Your trail has expired" window when go to convert via Print driver window. Comments/ help welcome thanks :-)

    Hi azza675,
    ExportPDF converts PDF files to Word and Excel formats (and several others). What you describe, sounds like you're trying to convert a file *to* PDF. Did you ever start a trial of Acrobat, perhaps? (Whereas you can create PDFs with Acrobat, ExportPDF doesn't let you convert files to PDF.)
    What happens when you log in directly to ExportPDF at https://cloud.acrobat.com/exportpdf?
    Best,
    Sara

  • Comments are not displaying normally (Ref: TA-20964)

    Status: Investigating
    Affects: Some users
    Description: Users have been reporting that their comments are not displaying and have been replaced with a Tagged TOS image.
    We're currenly working to resolve this issue to get your comments back up as normal. Thank you all for your patience!
    Please feel free to Contact Us to report this issue or you can click 'Me Too' on this post to let us know.

    Win 7.
    I see the entire page here in IE9, IE8 (Compatibility View), Firefox and Chrome.

  • Comments are now Supported

    It appears that comments are now supported in Smart Playlists.

    Dear Balajee,
    Yes, it is true...
    Now i am able to insert more than 60 char length in input ready query. by using below actions in web template:
    I created on column in input ready query and named as "Comment" . I used this query in web template and created "Modifications" by using DocumentContent" Module in Analysis Web Item. by using this functionality it is allowing More than 60 char length in input ready query.
    If you closely observed what i did is Created one Column in Input Ready Query which is Query specific. This column data will hold in Documents area Data Warehousing Workbench instead of Planning Cube.
    To display comments i have created another BI query & used it in Web template , here issues is calling Comments into BI Reporting area ( which is not Input ready query).
    I hope you understand now....
    Thanks,
    Venkat Vanarasi.

  • Comments are query specific....

    Dear Folks,
    As i understand that Comments are query specific. You can't create a new query with the same reference characteristics to read the comments.
    As per my business scenario i have to read Comments which are query specific.
    What is did so far:- Created  Input Ready Query where i created one column and named as a Justification which is required to displaying justification where I want the Justification to go . I Created web template by using Input ready query. Created Modification Document Content to enable Row Cell to insert Justification against Key figure. Now it is working fine. Once save justification particular cell then it is storing in Document in RSA1.
    Now i wanted to display in another query by using reference same Justification Characteristic.. how do i do this.
    Can you give views on this.
    Thanks,
    Venkat Vanarasi.
    Edited by: vanarasi venkat on Dec 6, 2010 11:31 AM

    Dear Balajee,
    Yes, it is true...
    Now i am able to insert more than 60 char length in input ready query. by using below actions in web template:
    I created on column in input ready query and named as "Comment" . I used this query in web template and created "Modifications" by using DocumentContent" Module in Analysis Web Item. by using this functionality it is allowing More than 60 char length in input ready query.
    If you closely observed what i did is Created one Column in Input Ready Query which is Query specific. This column data will hold in Documents area Data Warehousing Workbench instead of Planning Cube.
    To display comments i have created another BI query & used it in Web template , here issues is calling Comments into BI Reporting area ( which is not Input ready query).
    I hope you understand now....
    Thanks,
    Venkat Vanarasi.

  • Why does the file Name for file attached with Annotations "Attach File" (paperclip) become Unknown when Comments are Published?

    Our company recently purchased Adobe Acrobat Pro XI for the purpose of using it for shared electronic reviews.  We are using Send for Shared Review created in Adobe Acrobat Pro XI, and all the Comment tools work as expectedexcept the paperclip in Annotations.
    When a Word or Excel or Image(png,jpeg) file is attached using the Annotations paperclip, the initiator can initially see and open it. But after Publish Comments is selected and the review file is closed, the file "Name" changes to "Unknown" (although the Description has the correct file name and extension).  The Modified information is Unknown, as is the Size and Compressed Size.
    When the review file is then re-opened, even the initiator cannot open the file, although:
    The file location is marked with the paperclip within the document.
    The file name is shown in the Comments List with the initiator's name.
    In the Attachments list (the paperclip beneath the Thumbnails and Bookmarks) the Name appears as Unknown, Description shows the file name, Modified is Unknown, Size is Unknown, and Compressed Size is Unknown.
    The file Name cannot be edited, although the file Description can be.
    We have followed the procedure described in the tutorials but cannot figure out how to troubleshoot this situation.  Since this feature was the reason for the purchase of Adobe Acrobat Pro IX, we would any help. Please don't leave out any basics since we are all new users.
    We have several people with Adobe Acrobat Pro XI and the rest have Adobe Reader XI and it is a Windows platform.  Can someone please give us some advice how to get this feature to work as described?

    FYI Rave,
    There are some other forum entries with this exact same issue...:
    Cannot Open Attachments in PDF
    Why does the file Name for file attached with Annotations "Attach File" (paperclip) become Unknown when Comments are Published?
    Can someone help us get the COMMENTS ATTACHMENT TOOL to work as described in Acrobat Pro XI?

Maybe you are looking for