Plug-ins won't work...need help

i just bought Eureka plug-ins volume 4, i was wondering if any knows how to get them to work, I have them downloaded but am not sure how to import them in to FC, and when I open one I get the error "FILE ERROR WRONG TYPE", can anyone help>?
Power Book G4   Mac OS X (10.4.6)  

Did you put them in the correct place? [boot drive]/Library/Application Support/Final Cut Pro System Support/Plugins
The next time you launch FCP after putting them in that folder, they should show up in FCP Video Filters folder in the Browser.
-DH
EDIT: I should add that I don't know what plugins are compatible with FCP 5.1, but the above should work for earlier version.

Similar Messages

  • Plug-ins won't work with aperture 3.5.1

    Just updated to aperture 3.5.1 and now none of my plug-ins won't work what can I do to fix this problem. Any help woud be great.

    How do they not work, error message, crash, etc?
    What plugin and want Aperture and OS versions did you upgrade from?
    In general if after an upgrade you have a problem like this you should check the developer sites for updated plugins designed to work with the new version of OS and Aperture.

  • Upgraded and now plug ins won't work

    I recently upgraded to Final Cut Studio 2 and further to FCP 6.0.4. Now certain plug ins won't work--such as Magic Bullet Looks, Core Melt Editing Pack and Slick FX.
    Any ideas on what I can do to get things working again?
    Thanks!

    Check with the vendor for each of the plugins to see if they have an update or upgrade available to make them compatible with your version of FCP, QT and OS.
    -DH

  • Re installed photoshop CS5 onto new computer & now plug ins won't work?

    I recently bought a new computer & re-installed photoshop CS5.1 successfully, but can't get the plug ins to work (phototools 2.5 & perfect effects 3, which were a free download with purchase). I am running windows 7 64bit. I copied & pasted them into the plug ins folder (in both applications of photoshop - there is the 32 bit version on 'program files (x86)' & the 64 bit version in 'program files'), but neither will work.

    You probably won't get those plugins to work by just copying them.
    I'd remove the plugins that you copied and pasted and use the phototools 2.5 & perfect effects 3 plugin installers, as they probably install some other files besides just the plugin itself.

  • Exchange Active Sync won't work need help

    I have been reading a few dozen of these post that people are having issues with there iphone sync with exchange. I am TOO!.
    For some i can get into owa and from the iphone safaria.
    The iphone was able verfy the ssl certificate, but nothing is syncing with mail server
    My network infrastructure.
    1. Clustered mail server . Running exchange server 2003.
    2. firewall- port 443 has been verified to be open and able to acces owa from iphone safari
    3. I have NO isa setup in my network.
    4. Called SSL verisign company and everything checked out to be fine.
    5. virtual folders have been verified to be correct.
    6. checked dns report no errors.
    7. AD exchange feature mobile services and protcols was verfied to all on.
    8. turned off wifi
    9. checked all creditals.
    And it just won't push anything. I have come to the conclusion that is either IIS or Iphone is using a multiply protocol ports to access the exchange. But i don't know i need HELP
    Simple troubleshooting steps to start with:
    1. Check your version of Exchange. Must be at least 2003 w/SP2.
    2. Check your security certificate. If you go to your "https://webmail.yourdomain.com/owa" or "https://webmail.yourdomain.com/exchange" and receive a certificate error, you may want to look into an external certificate from a recognized CA. I used SBS through my registrar.
    3. Check to ensure your "Front-End" and "Back-End" server are not both requiring SSL. That will cause issues with OMA.

    You don't want to check OWA (Outlook Web Access) as it is a full mail client for a notebook or desktop.
    The iPhone uses ActiveSync OMA for syncing. Thus, you want to check https://www.domain.com/OMA (where www.domain.com is the URL to the Exchange server - same URL as the OWA url) with a notebook or desktop. The "s" in https is needed at OMA requires SSL.
    You should see a login prompt for username and password followed by a list of Inbox messages. If you don't, the server is not correctly configured for OMA.
    Once OMA works from a desktop or notebook, it is an easy procedure to add an Exchange account to a phone. Just follow the iPhone on screen examples and provide only the path to the Exchange server and not the "/Exchange" following.
    This information can be found on many threads in this forum using the Search feature.

  • Pleeeeeaaaaaaaaae help new ipod won't work need help

    So I'm a total technophobe so please any help write it for idiots so i can follow it lol.
    So I get my new ipod this morning and very happy I am until I plug into into my computer. My computer recognises it as an ipod but then comes up with the message error during installation, then it says the data is invalid. it does this if I plug the ipod in or if i use the new hardware wizard. So far I have tried unistalling itunes, re installing windows xp. When I try to remove the device from device manager it will not remove from the list.Ive tried it in different usb ports, I've tried system restore and nothing is working pleasssssssssssseeeeeeee help ive been at it for 7 hours now and i feel like crying
    Ive been trying

    in the device manager it has a yellow question mark and according to the error code this is because the device is incorrectly configured i have no clue how to fix this
    I am reluctant to uninstall usb drivers as I have discovered today the system disc for my computer is broken so i wont be able to to reinstall major components of puter.
    thank you for any help u can give

  • 9.2.0 OCCI's setString Won't Work, Need Help w Thks

    Start exploring occi.h (oracle version 9.2.0) but hit a problem w no clue to solve it.
    #include <iostream>
    #include <occi.h>
    using namespace oracle::occi;
    using namespace std;
    int main()
    // declare Environment, Connection, ResultSet, Statement
    env=Environment::createEnvironment(Environment::DEFAULT);
    con=env->createConnection("myname", "mypws", "myConString");
    stmt=con->createStatement("select * from aTable where aFld=:1 and bFld=:2");
    stmt->setInt(1, 10);
    stmt->setString(2, "myValue");
    rs=stmt->executeQuery();
    rs->next();
    // cout result, all fields empty, seems a result not found
    stmt=con->createStatement("select * from aTable where aFld=10 and bFld='myValue'");
    rs=stmt->executeQuery();
    rs->next();
    // cout result, got the record and print expected result.
    // close connection on env, rs, stmt, con
    the diff. between 1st & 2nd SQL stmt is one is parameterize and the other is not. If in 1st SQL stmt, I hard code :2 to 'myValue' and then execute setInt() only, it works as well. So it is the 'setString()' function that won't work.
    Any idea?
    You help is really appreciated.
    Thanks
    Message was edited by: chris
    user459175

    Hi Nikeda
    The bFld is in char(10).
    You are correct, so when I change the sql stmt to "select * from aTable where aFld=:1 and trim(bFld)=:2", it works. Or when I change "myValue" to "myValue<+ 3 space", it works as well.
    Thanks

  • Usb 1.0 won't work - need help urgently

    Happy holidays and hope Santa is working overtime
    Got iPod nano for my son and mrs. and can't get them to work properly. Long time mac users, G3 iBook at home (mac 10.3.9), g4 iMac at office but neither have usb 2.0 as older machinese.
    For some reason, even after downloading 7.5 iTunes, when we connect new nano with usb connector supplied in box, only get that apple icon popping up; can't connect for some reason, can't see nano on desktop.
    Tried it with old Sony Vaio, running WinXP but a gain older model, no usb 2 and only usb 1 ports. Can't read there either.
    Funny, when I plug with my old 3rd gen iPod charger, using firewire with common plug, it's charging fine.
    Can someone explain if it's the usb port that's a problem? Mrs. leaving to visit mother for few weeks early tomorrow morning and I have appointment with genius bar at 10 am - but too late to help her.

    Yep, on my iBook, got message finally that needed 10.4.8.
    Re-tried with WinXp (not sure if SP2) and got it connected, trying to rip some CD to sync and completed about 5 cd. After ejecting nano, couldn't get it to 'turn-on' which is weird - so i'm leaving it connected to pc to charge (instructions say 3 hrs).
    My suspicion is this is a lemon.
    Btw, can i charge this generation nano with the 'traditional' firewire charger that came with my old iPod (3rd gen)? If we do get it to work, my wife won't have pc to charge with when traveling and I'd like to give her my charger to take along?
    Thanks,

  • "add printer" utility won't work, need help

    I have an IMac “Lamp”. After I upgraded to 10.4.7 the ‘add printer’ utility will not work and so no printer is available.
    I had an older HP printer and one fellow at HP said that the problem was with the printer. I bought a new HP Photosmart 8250, installed the software and the same problem exists. The computer can see the printer and recognize it specifically as being plugged into the port but the ‘add printer ‘ utility still doesn’t work.
    A nice Canadian lady who works for HP spent well over an hour on the phone with me guiding me through quite a few moves dumping various files but to no avail.
    Does anyone have any ideas?

    Hi..
    I have a Poer Book G$ )S X 10.4.5. I am having the same problem with my printer utility....won't add printer. I am trying to install a new printer, HP 2575, all-in-one. With the instruction of HP support, I downloaded the latest driver, uninstalled all my other printers, re installed the HP 2575, threw out many files, etc., all with no success. My husband was able to install the printer on his PC (windows)...so it is a MAC problem. Now, there is nothing in my library/printer folder. My system does not list any printers either. When I plug the printer into my MAc with the UBS cable, it shows on the list of printers, but I can't add.
    Someone please help if you can.
    Beverly

  • Nik plug-ins won't work in PSE 12

    First let me say the main problem lies with my computer.  It is underpowered for photo editing.  Nevertheless I can usually do what I need with PSE10.  Nik mostly works there in .tif, occasionally  I need to convert to jpeg.  Nik doesn't work at all in PSE 12, as soon as I hit "save" the image disappears, even takes down Elements with it. Also, I tried to run full version Photoshop but my computer said "no." I use Lightroom 4 without problems.
    I am maxed out at 16 Gb of ram.  Hopefully a new computer is on the horizon, but not likely for months.
    Does anyone know why  PSE 12 crashes and PSE 10 dosen't?

    One more thing.  Nik worked fine in Lightroom 5, go figure.  There doesn't seem to be an update per see, but the reinstall seems to work.
    I am disappointed that Sony doesn't work a little harder to make sure their ARW (RAW) files will open in these Adobe products.  Both Zoner Studio and Picassa will open ARW without updates!  Lightroom 4 aqnd PSE 10 are seviceable but I resent the extra steps with.dng conversion or having to buy newer software.
    Thanks again for the swift reply and all the help.

  • Which iTunes plug-ins won't work in 64 bit mode?

    When I open iTunes 11.0.2 on mi iMac (recent upgrade to Mountain Lion) I get the following message:
    I have gone to the info window of iTunes and checked the  box, but it has made no difference.
    Any suggestions! I could, of course, just check "Do not show this message again".

    Yea! I'm having the same problem over here!

  • Plug Ins for Orchestra work

    What are the plug-ins you find work best for orchestra production (I use VSL), and do you tweak the standard settings on them to produce the most realistic sound?

    Now lets go back to your question,
    1) you have a good arrangement, that means the parts do complement well
    2) you have good samples (VSL)
    3) you play the parts on your keyboard - not mechanically, not quantized.
    first problem: you play all parts by yourself, no interaction between the musicians. In an orchestra (at this point) the musicians would try to get a "tutti" sound, each instrument has to "fit in the mix". Thats difficult, when you have to do it part by part.
    4) Your parts are all recorded. Now you will pan the parts like an orchestra is positioned.
    5) Creation of sound. Lets see how an orchestra is recorded normally. You would use a pair of omnidirectional microphones. Recording in AB which produces many phase differences. This is how the room will be created. Rarely you will see an AB-recording.
    You would use spot microphones for some groups and solo instruments of the orchestra. These spot microphones will be added to the AB-main-microphone, panned like you hear the instruments on the AB-Mics.
    To create a realistic sound with virtual orchestra you first will have to create that tutti room sound with a good true stereo reverb. Pan your sound sources like a real orchestra and add some reverb.
    In a real orchestra recording, the spot microphones would bring out some details of specific instruments and bring the solo instruments to the front.
    I would suggest to use the sends of the instruments-channels to add some reverb. Less reverb for the instruments in the front, more reverb for the instruments in the back. But reverb is not the whole thing. Room is created by volume and phase differences. If you want your trumpet to be placed to the right you should not only pan it to the right but also use a sample delay to delay the left channel of the trumpet by a few milliseconds. This will sound much more realistic than just panning (which only adjusts the volume of the right and left channel).
    The ear is very sensitive for phase differences.
    And its even more complex since orchestra recordings are normally done with a lot of spot microphones, so there will be a lot of phase differences (which sometimes also may be a problem).
    A sound engineer who is recording classical music would never use compression or Eq. He would choose the best microphone for each instrument. Compression kills the dynamics, although you will hear some compression of orchestra tracks in the cinema.
    You may use some eq anyway. In an orchestra a musician will hear which frequencies and sound is needed and adapt the sound and volume. When you play all instruments by your own you will have to do some fine tuning. If there are instruments that kill each other with the same frequencies you may clean the picture with eqs.
    Hope that helps,
    Eddie

  • After Effects PLUG-INS WON'T Install

    After Effects CS5 64-bit PLUG-INS WON'T Install..
    Pls help me... I know how to install plug-ins.. Just paste the File or Folder that i downloaded to C:\Program Files (x86)\AdobeCreativeSuite5\After effects\Support files\ Plug-ins.But After that I open After Effects and in Effects panel none of the plug-ins show. all the forum saying this.. But i already try it many time . even resetting the PC or AE.. I really need the Plug-ins so please anyone reply..
    Its sad that my other Question about Adobe media Player in this site no one answered it. anyway All the plug-ins that i buyed and download are saying the same procedure. that i said earlier,  just to copy and paste. but none of the readme file correct.

    >  I know how to install plug-ins.. Just paste the File or Folder that i
    downloaded to C:\Program Files (x86)\AdobeCreativeSuite5\After
    effects\Support files\ Plug-ins.
    That's the wrong path.
    This is the right path (as provided in "Plug-ins"):
    C:\Program Files\Adobe\Adobe After Effects CS5\Support Files\Plug-ins
    > Its sad that my other Question about Adobe media Player in this site no one answered it.
    You didn't ask such a question here in the After Effects forum. I don't know what question you're talking about.

  • Error regarding plug-ins/won't open - unpackaged file is 4 GB - which is huge

    When I open a certain file (which has not had any issues) it gives me an error regarding plug-ins/won't open. The odd part is that the unpackaged file is 4 GB - which is huge. The file also doesn't contain that much information to be that size.

    1. Super appreciate your help.
    2. It is saved on my desktop - there are no .idlk files
    3. I sent the file to another person and they cannot open it
    4. The concern is that it is a 4 GB file - which is not normal for an unpackaged file - does that not seem large? Generally even the most populated of docs is in the MB category
    5. All other files open fine
    6. I copied and pasted under a new name, rebooted a billion times

  • Plug-ins Don't Work in Reader XI; Work Fine in Reader X

    We're looking to upgrade from Reader 9.x to Reader XI.  A bunch of us in IT have been running Reader X without issue for some time so we didn't anticipate any problems with XI. I tested the upgrade process on a machine with 9.x and although it worked fine, none of our add-ins worked.  I performed the following on a machine with XI with no positive results:
    Performed repair or 'modify' installations of the applications in question that load add-ins/plug-ins into Adobe
    I verified the .API files were in in the proper location
    One plugin (caseMap) goes into reader\plug_ins
    Another plugin (Interwoven) goes into reader\plug_ins\Interwoven
    Verified protected mode was disabled via registryreg add "HKEY_USERS\DefUser\Software\Adobe\Acrobat Reader\11.0\Privileged" /v bProtectedMode /t reg_dword /d 0 /f
    Again: Going from 9.x to X we don't have a problem, and usually adding the .API file is all that's necessary to get the plug-in working again.  But when going from 9.x to XI or X to XI, the plug-ins no longer work.
    Has something drastically changed between X and XI that would make these add-ins cease to function?
    I've reached out to the vendors & am awaiting responses.  In the mean time, is there anything I failed to check or something else I can do?

    Thanks for the response.
    We tend to not assume it'll work & blindly fire off updates.  You see, when we (IT Only) upgaded to X from 9, the new 'protected mode' feature caught us off guard.  We assumed we had done something wrong with the packaging and so spent a few days making sure we crossed our t's and dotted our i's before escalating to the vendors.  And when we reached out they came back with a very simple "ohh yeah just check off a box", making us feel a bit foolish.  I wanted to be sure there wasn't some other new measure put in place to further try to secure Reader.
    As it turns out,
    LexisNexis had to update their package for CaseMap 10 for Reader XI, and they have no plans to patch earlier versions.
    Autonomy / Interwoven is set to release FileSite 8.5 SP3 Update 6 in Q1 which will support XI.
    As you stated, vendors have to produce updates.

Maybe you are looking for

  • Verity spider and custom fields

    Has anyone customized the verity spider so that it populates the custom fields (custom1 through 4) or been able to add other colums (especially a date) to the result set that is returned from cfsearch. I can populate the collections with the spider b

  • Can I use .msn email address on iMAC?

    Still have an old msn email account that I use for some business - Now that my PC has crashed again - I know I can download messenger, but I just want to be able to get a hold of the msn email account to check emails. Mostly use my .mac but still nee

  • How do I sync my I phone so its not slow anymore?

    I need help figuring out how to sync my phone because it is very slow and seems behind when I use the dial pad or texting.  Can someone please possibly help me with this? Thank you - T

  • I have mac air late 2009 model identifier 2,1 running os 10.6. i want to know can i upgrede it 10.8?

    i have mac air late 2009 model identifier 2,1 running os 10.6. i want to know can i upgrede it 10.8?

  • Using HLEVEL with multiple hierarchies

    Hi all, Is there a way to pass a parameter to the HLEVEL keyword to specifiy which hierarchy (Parent H1,H2, H3, etc.) to use when pulling the HLEVEL? We would like to use HLEVEL for report formatting however we need the ability to choose the hiearchy