Anyone using Ichat Theater Preview from within AE 5.5*

I've got AE5.5, and I'm trying to use Ichat theater preview output.  No luck.  Works from within fcp7, all other output options work.  Have a blackmagic intensity pro card installed on my macpro.  Is this working for anyone?  Running Snow Leopard. 
Sorry if this has been discussed before.  New to Adobe forums.  Did some searching here and googled without any luck. 

Reset the LaunchServices database by copying and pasting this one-line command into a Terminal window (/Applications/Utilities/) and hitting the return key, restart, and reassociate the desired file types with Preview:
*/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user*

Similar Messages

  • Using System.err.println() from within the classes of WAS ?

    hi,
    I am using admin.jar,a jar file which is being used by Web Application Server in my own class.
    I am referencing some of the classes from admin.jar from my class.
    I tried to print some trace statements,using System.err.println() from within the classes in admin.jar but they did not reflect in defaulttrace0.trc.
    I made these changes in the admin.jar being used by WAS.
    I restarted the server and even restarted the machine but without success.
    I want to know how to print System.out.println() statements from within the classes in admin.jar.
    Also, am i looking for these statements in the right file for eg. defaulttrace0.trc. or is it some other file that i need to look into.
    I need urgent help on this.
    Reward points assured.
    thanks a lot.
    Saurav

    thanks craig,
    ur answer has helped me a lot.but it didnt quite help me.
    nevertheless i am trying to set different levels of severity.
    Is there anything else that i can do.
    Also,i commented out a line of code today in one of the class DataSourceManagerImpl.java in sapj2eenginedeploy.jar
    for eg. temp.delete in it deploy method.Buth that line still executed.
    I m totally lost as to wht to do.
    I m trying to create a datasource from my application in WAS.For that i m using the WAS APIs.But its not working completely.
    I am using the above jar and its method createdatasource.
    I am callin it from my application's class.
    It creates a datasource and i can see it in JDBC Connector list in Visual Administrator.But it appears with red sign meaning its not started.When i start it from the tool then it starts.
    But in defaulttrace.trc file it shows an error "FileNotFindException". This happens,and i am very much sure, in the deploy() of DataSourceManagerImpl.java class of sapj2eenginedeploy.jar.
    i want to apply println inside this method so i may know where exactly i ma getting the error and get so more info so i may solve my problem.
    pls help me.
    its really urgent.
    thanks again
    saurav

  • Has anyone used iChat or iSight in China?

    I am headed to China next month on business. Has anyone had any experience using iChat to video chat back to the US? Any problems or things I should know?

    Hello j-bird,
    On the iSight forum, under "Search Discussions", type in China and you should get a number of people posting in the past with questions/issues & stories about iChat/AV from there.
    If not or you have a specific question, let us know.
    Respectfully,
    Bill Gallagher

  • Using Web Dynpro WDUrlGenerator from within J2EE Application deployed on NW

    I have two applications deployed on a NetWeaver Application Server 2004s.
    1. A Web Dynpro application.
    2. A J2EE Application
    What I want to do is to be able to build a url to the Web Dynpro application from within the J2EE application. Obviously the problem is using Web Dynpro classes within the J2EE application.
    So I edited the Java Build Path of the J2EE application to include the werbdynproservices.jar file and exception.jar files by extending ECLIPSE_HOME variable in the libraries section. I also checked them in Order and Export. I verified the built .war file and it does contain the two .jar files.
    This was sufficient to get my project build and deployed, however the servlet in my J2EE application shows NoClassDefFoundException when I run it. My guess is there's more I need to do to get the WDUrlGenerator to run in my J2EE class.
    Is this possible or is there a better way? I am trying to avoid the client having to modify a web.xml for each depployment.
    Thanks in Advance.

    This looks like what I want, but I am unable to test it.
    I found the application-j2ee-engine.xml file under the <project-root>/gen_wdp folder. I then attempted to open it with the SAP EARDD editor. It opens with the Source tab selected. If I try to click the General tab I get an error saying:
    "The source page has errors. Other pages cannot be used until these erros are corrected."
    I see nothing wrong with the XML document. It's source is here:
    <?xml version="1.0" encoding="UTF-8"?>
    <application-j2ee-engine>
        <provider-name>local</provider-name> 
        <modules-additional>
        <module>
          <entry-name>EVENTS_WorkflowNotification.wda</entry-name>
          <container-type>webdynpro</container-type>
        </module>
      </modules-additional>
    </application-j2ee-engine>
    When I deploy the application, everything works fine. I was going to edit the XML document by hand, but of course there is no DTD listed so I don't know what's supposed to go in there without the Editor doing it for me.
    Getting closer. Thanks so much.

  • Odd screeching sounds when using iChat Theater

    Whenever I'm sending files over iChat theater there's a prolonged screeching sound much like the one you hear in the soundtrack of the film Psycho. One guess of mine was the volume of the speakers, but then, even when that's low, file sharing still emits those strange sounds. Any ideas what may cause them?
    Mine is a PowerBook G4 running Leopard with a DSL connection. The other end uses a brand new Intel iMac.

    On Laptops go to System Preferences > Sound > Input tab and adjust the Volume downwards.
    If this does not work go to Hard Drive/Library/Preferences and delete com.apple.audio.DeviceSettings.plist and reboot the Mac.
    NOTE: This is the Library that shows up when you open the Hard Drive (NOT the one in your Home Folder OR the one inside System)
    9:56 PM Monday; January 14, 2008

  • Using 'export -f FUNCTION' from within a script doesn't work

    Why doesn't the 'export -f FUNCTION' work as expected in the following:
    #!/bin/bash
    target="$1"
    [[ -z "$target" ]] && echo "No target specified." && exit 1
    work() {
    bsdtar -xOf "$target" .PKGINFO | egrep -w 'pkgname|arch|pkgdesc|group|conflict|depend|replaces' | sed -e 's/pkgname/\npkgname/' >> /scratch/pkgs.log
    export -f work
    find /scratch/repo -name "$target*.pkg.tar.xz" | parallel work
    It errors out when called:
    % ~/bin/repo/check_pkgs broadcom
    zsh:1: command not found: do_work
    zsh:1: command not found: do_work
    zsh:1: command not found: do_work
    zsh:1: command not found: do_work
    zsh:1: command not found: do_work
    zsh:1: command not found: do_work
    zsh:1: command not found: do_work
    zsh:1: command not found: do_work
    zsh:1: command not found: do_work
    zsh:1: command not found: do_work
    zsh:1: command not found: do_work

    moetunes wrote:The command you are exporting is called work. The command it fails on is do_work
    That was a copy/paste error based on me trying multiple scripts.  Sorry about the confusion.
    % ./test linux
    zsh:1: command not found: work
    zsh:1: command not found: work
    falconindy wrote:
    It's also the wrong solution to be exporting functions...
    Yay for ineffective crossposting... https://bbs.archlinux.org/viewtopic.php?id=153461
    Exporting functions is recommended in the parallel man page.
    The command must be an executable, a script, a composed command, or a function. If it is a function you need to export -f the function first. An alias will, however, not work (see why http://www.perlmonks.org/index.pl?node_id=484296).
    Also, how is this a cross post?  The post you referenced is about parsing input, this one is about calling a function from within the parent script.
    Awebb wrote:Why does zsh report a problem with a bash script?
    No idea
    Last edited by graysky (2012-11-24 14:35:15)

  • Has anyone used the Applesause Polish from Invisible Shield!

    Has anyone used that stuff?
    Does it work?
    What about on a 3G iPod?
    Thanks

    I bought it and I think it´s really good. I test it against a macbook pro 13" and I found it very similar in times, sometimes the Sonnet reader beat the built in reader, usually not but sometimes it did.
    It´s a little tricky to put the cards into the reader but I guess that becuse that way it´s harder to push the card out by mistake.
    I also love that it can live on my macbook pro becuse it fits perfectly, no need to put it on and off evertime I use it.
    But the one you are saying is not the one I bought, becuse it´s almost 50 usd the one I have
    https://secure1.sonnettech.com/product_info.php?cPath=24_130&products_id=390&osC sid=d09730751ecf7cabe0210f347b4e4b20
    I also bought the dual compac flash reader and I also love it, it´s extremly fast
    Sorry that I didn´t answer faster but I was working and I never get the advice that I had a message.

  • Anyone using the Canon MV850i from the UK Apple store for iChat AV?

    Just want to check it really does work with iChat and iMovie before purchase.
    Thanks
    Paul.
    Mac mini   Mac OS X (10.4.5)  

    Hi Paul
    It is not in the list http://www.apple.com/macosx/upgrade/camcorders.html BUT read under the tabs and before the list.
    Also The list will not load for me properly. It would normally have a date of Modification on the bottom.
    From memory that was Jan 2005 - so newer cams will not be in the list anyway.
    8:09 PM Sunday; February 19, 2006
    iChat Resouce Web pages

  • Anyone using Garritan Personal Orchestra from an external HD?

    I'm trying to transfer samples to my new external drive, and am having trouble with GPO. I tried making an alias for the GPO library folder, but with no luck. Anyone know how to do this? Thanks.

    To restore the /User folder, you can use the procedure outlined in section III.C of "Mac OS X: How to back up and restore your files."
    For the /Applications folder, you may or may not have much luck restoring its items from the backup. The reinstall of OS X (plus updates) will properly install bundled apps, so there is no need to restore them. For third party apps, some may work OK if just drag-copied into the new /Applications folder, but others won't. This is because many apps, particularly those that use installers, install supporting files in other locations, like /Library/Application Support, or in the Help system. Without a copy of the /Library or /System folder, you have no way to restore these items without doing a reinstall.

  • Has anyone used SuperDuper to go from C2D to SR?

    Has anyone here upgraded to the new santa rosa MBP from the C2D MBP and used SuperDuper to clone their system? I need to do just that and was wondering if the computer will boot and be fully functioning. I think this is the easiest way to transfer everything since I won't have my C2D MBP when I receive my SR MBP.
    If this is not possible because of hardware issues, will the clone of my current system mount as an external fw drive on the SR? This way I guess I could manually copy my files over to SR.
    Thanks

    I would not advise doing this unless the build number on the SR machine is exactly the same as the one on the C2D. With most all new hardware releases the OS X build is usually unique for that hardware until the next general version of OS X is released. Therefore, cloning from the C2D very likely won't work.
    To check the build versions select About This Mac from the Finder's Apple menu. Click on the OS X version number (10.4.9, for example) to reveal the current build version. If the build version of the SR installed OS X is not the same as that of the C2D then do not clone either operating system to either machine.
    Instead use Migration Assistant.

  • Anyone using 802.1x credentials from login window

    I have created a multitude of mobile configs in profile manager(server) but cannot get it to pass the user credentials from the login window in the dot1x reply to an identify, it always uses the machine name.  Has anyone done this ? Windows does it fine(machine credentials when no one logged on and username/password when they log on) and from what I can glean online it looks like it should be doable. It also looks like I ought to be able to use the domain\userid format when logging on but it doesn't seem to recognize that - traces show no activity(dot1x or ldap) when used.

    I am having the same problem at my university network. I believe it has something to do with this part of the article you quoted:
    "Once configured, when a network user enters their user name and password at the Mac OS X login window, the system attempts to connect to the 802.1X network with the same user name and password. This connection is necessary to authenticate the user to a network server."
    It's not perfectly clear, but it seems the username and password for the 802.1X connection must match the username and password at login. Lame, if you ask me.
    I'm also having a different problem on my network: My wife and I have separate accounts on our Mac, and every time we switch between users the 802.1X disconnects for some reason. Very annoying, but I guess it has something to do with a genuine user authentication - not a computer authentication, if that makes sense.

  • Has anyone used av hook up from iPad 1 to tv-if so which cable?

    What cable have you used for hook up?

    iPad1, 64GB, 3G. I updated to iOS5 a couple of days after it was released (servers were too slow to connect on the first day. )  I had only one crash, and that was my fault.  (Moved Newsstand to a folder, which is not supported.)  Otherwise, all is fine.  As others have noted, on the iPad1, it's a bit slower, but nothing that's a dealbreaker IMHO.
    The most difficult thing has been the amount of updates to the apps.  Nearly every app I have had an update for iOS5 so it was like I was seeing 3-5 new updates every day.  But I've kept with the updates and I think that has helped with my lack of crashes/lockups.
    My only real complaint is with the way the iPod app changed to the Music app and how it now treats podcasts.  (The "previously played" indicator is now missing.)  And a few minor gripes like not having location based reminders (iPhone only feature. )  But otherwise, I'm reasonably satisfied with the update on my device.
    If I had to make a recommendation, I'd be on the fence.  If there is a "must have" feature you want (e.g.: Airport configuration utility, Messages, Twitter integration,) then go ahead an update.  Otherwise, not updating now is probably not going to inconvinience you.  Eventually, there may be "iOS5 only" apps but by then, you'll probably be ready for a new iPad. 

  • Has anyone used bluetooth hotspot in car for ichat

    Has anyone used ichat on ipad through bluetooth conntection in car?

    You might try the [Approval Workflow Engine (AWE) for HCM 9.0|https://metalink3.oracle.com/od/faces/secure/km/DocumentDisplay.jspx?id=747740.1&h=Y] red paper. You can find it on Metalink3 at [https://metalink3.oracle.com/od/faces/secure/km/DocumentDisplay.jspx?id=747740.1&h=Y|https://metalink3.oracle.com/od/faces/secure/km/DocumentDisplay.jspx?id=747740.1&h=Y].

  • Ichat video preview not working in FCP

    I am attempting to work with a client utilizing the iChat Theater preview in Final Cut Pro. His Mobile.Me address is in my buddy list. I initiate the preview in FCP and it says that I need to invite a buddy, yet when the chat box pops up and I attempt to initiate a chat by selecting "video chat" it will immediately grey out (the video chat line) when I enter any name at the bottom, leaving only "text chat" selectable. Does the "buddy" need to be logged into their MobileMe account beforehand for this to work?

    Hi,
    Yes the Buddy needs to be Logged in.
    In fact I would do it the other way round.
    I would have FCP launched.
    Start A Video Chat.
    Select iChat Theatre from the File Menu of iChat.
    Choose FCP in the Navigation thingy it should then go to the open item.
    With smaller files and something that does not take to Launch you can drag the file over the Video Chat you are having.
    Two white dotted line boxes appear giving tow option of Share with iChat Theatre or Send File.
    10:02 PM Wednesday; February 3, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Turning off music in iChat theater photo presentation

    Can anybody please tell me how to turn off the annoying and unnecessary music when showing a slideshow using iChat theater?
    Thanks

    Go to iPhoto.
    iLife 08 version
    When you have a Slide show created already you can select the Music Option that produces a drop down and at the very top of this is a Check box for Play Music.
    When I go to iPhoto as I have a Slide Show already there is a Play button under the left hand menu items.
    This brings up the same Preferences and selection window for the music (from the tab)
    iChat opens iPhoto and the Play button can then be used although the Share stops and has to be restarted after the Music setting has been made.
    In earlier iPhoto it seems there is a Slideshow icon for the setting access.
    So either do it before your start or after the connection and restart the share.
    2:10 PM Saturday; November 24, 2007
    Message was edited by: Ralph Johns (UK)

Maybe you are looking for

  • Example ---Defining Cell Variants: TableSingleMarkableCell-Getting error

    Hi All,       We are trying an example of cell variant concept of table as given in NetWeaver help. But after deploying we are getting folllowing error. Please guide me. <b>Create a value attribute attributePointer, switch to the Properties, click …

  • Several Software issues with N73

    Hey Im in South-Africa and got a N73 on a contract upgrade. Since i got the phn i noticed several issues/bugs with the software. Im not complaining about the phn. I think it's a great phn, Im only highlighting the problems so that in the next firmwar

  • Preview images disappearing

    HI Everybody, When I download my bank statements in Preview, there are no check images. Even the check images that I used to be able to view in old statements have disappeared!

  • Chinese font changed for everything in my mac

    The Chinese font changed for everything in my mac and my internet browser. How do I change back to my original font?

  • Languages on itunes

    Hi everyone…I have a small problem that I can’t seem to fix. I live in Denmark and when I download the new itunes on the pc (from the US / international site)..and follow the instructions and all that..when it asks me about the language..i choose Eng