Has anyone successfully used the Zoom R16 with Audition?

I’ve tried just about everything, but can’t seem to get Audition to run with the Zoom R16.  As noted in a recent post, I updated both the Zoom R16 firmware and widows driver, but that doesn’t seem to make the 2 work harmoniously. 
Has anyone had success getting the 2 to work together?  If so, what’s the trick?!
Thanks in advance
C

CharlestonPro wrote:
As noted in a recent post, I updated both the Zoom R16 firmware and widows driver, but that doesn’t seem to make the 2 work harmoniously.
I'm intrigued - what is actually disharmonious?

Similar Messages

  • Has anyone successfully used the Intuit Quicken compatible with Lion upgrade for investment tracking?

    Has anyone successfully used the Intuit Quicken compatible with Lion upgrade for investment tracking?

    Although I gave up investment tracking for personal reasons (I had used Quicken Deluxe 2002 for many years for that reason), my understanding is that the new Quicken 2007 for Lion/Mt. Lion is completely the same feature wise as Quicken 2007 for PPC.  It will run on Snow Leopard, too.
    For $15, why not download it and just try it and LET US KNOW!

  • Has anyone successfully used the ZTE Open C with an AT&T microcell?

    I have a ZTE Open C and have had no issues with initial setup w/AT&T. However, like most newer phones the voice signal reception is very weak.
    I've had an AT&T Microcell before, but I don't have one now. For those that are unaware, the microcell allows 3G phones to connect via a 3G signal, but the call is routed through a home broadband internet connection.
    Has anyone successfully used a ZTE Open C w/Firefox OS AND used an AT&T microcell? If yes, did you need to do anything special on the phone or with Firefox OS.

    I don't use a ZTE Open C, however, I do have a ZTE Open (Original) on AT&T and so I'll see if I can help ;D
    I know someone who has a Microcell, and I have used it myself a few times. However, the microcell only works if you have entered in your phone number into settings of the Microcell.
    Check the Microcell settings.
    Check the data connection settings on your FxOS device
    Make sure your Microcell is properly connected to WiFi
    and check the AT&T support page for more info
    For a while, it actually hasn't actually worked for me. I apologize if this doesn't solve your problem :D

  • Has anyone successfully implemented the JSF Viewer with Facelets?

    We have recently started integrating Crystal into one of our web apps that is using JSF + Facelets + Seam.
    I've built a taglib for the jsf viewer and configured it in web.xml and faces-config. I'm pulling an IReportSource from a backing bean using com.crystaldecisions.reports.sdk.ReportClientDocument  and that is using a .rpt file stored on a directory. This all seems to be working, as I can step through the code and see the IReportSource being generated.
    However, when the page loads, I am seeing the crystal javascript being converted in the page source, but nothing is loading on the page. 
    Has anyone seen an issue similar to this tied to Facelets? I've seen numerous documentation on Crystal and JSP, but very little on JSF  or Facelets.
    Has anyone been able to get a setup like this or similar to work properly?
    I've also noticed an error when adding the viewer:
    java.io.IOException: Recover report client document state failed.
    at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.readExternal(SourceFile:1492)
    at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.readExternal(SourceFile:131)
    at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1792)
    I believe this to be related to me switching over to the serializable ReportClientDocument: com.crystaldecisions.sdk.occa.report.application.ReportClientDocument  versus using the nonserializable version.
    When using the non-serializable version, I am seeing a constructor issue with the JPEReportSource
    Exception: java.io.InvalidClassException: com.crystaldecisions.reports.reportengineinterface.JPEReportSource; no valid constructor
    Has anyone seen this issue before or able to offer any suggestions?

    Well, according to the tutorials I have seen on the internet, I believe CrystalReport was successfully implemented and tested with jsp, to have it working with Facelets, we need to do a little bit of work around. We need to make a new JSF custom component and assign it to an external renderer. then we can use it to view the report
    please follow these and it should work after then,
    1- bring the following jars into your libs
    commons-configuration-1.2.jar
    Concurrent.jar
    CrystalCommon.jar
    CrystalContentModels.jar
    CrystalDatabaseConnectors.jar
    CrystalFormulas.jar
    CrystalQueryEngine.jar
    CrystalReportEngine.jar
    CrystalReportingCommon.jar
    icu4j.jar
    jrcadapter.jar
    jrcerom.jar
    keycodeDecoder.jar
    MetafileRenderer.jar
    rasapp.jar
    rascore.jar
    rpoifs.jar
    serialization.jar
    URIUtil.jar
    webreporting.jar
    webreporting-jsf.jar
    xercesImpl.jar
    xml-apis.jar
    2- bring the folder "crystalreportviewers115" right under the "WebContent".
    3- implement the custom FacesComponent and make it extend the "UIReportPageViewer" as follows;
    import packagename.CustomReportRenderer;
    @FacesComponent ("packagename.newReportViewer")
    public class UIReportViewer extends com.crystaldecisions.report.web.jsf.UIReportPageViewer implements Serializable{
        public UIReportViewer () {
            this.setRendererType("packagename.CustomReportRenderer");
    4- implement the renderer and make it extend the "ViewerHtmlRenderer" as follows;
    @FacesRenderer(componentFamily="CrystalReports.DHTMLViewer", rendererType="packagename.CustomReportRenderer")
    public class CustomReportRenderer extends com.crystaldecisions.report.web.jsf.ViewerHtmlRenderer implements Serializable {
    5- make a new tag library xml file next to the web.xml so the application can find the tag configurations. name it "taglib.xml" and add the following inside it;
    <facelet-taglib xmlns="http://java.sun.com/xml/ns/javaee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee"
        version="2.0">
        <namespace>http://new-jsf-custom-components/</namespace>
        <tag>
            <tag-name>ReportViewer</tag-name>
            <component>
                <component-type>packagename.newReportViewer</component-type>
                <renderer-type>packagename.CustomReportRenderer</renderer-type>
            </component>
        </tag>
    </facelet-taglib>
    6- configure the web.xml with the following
      <context-param>
            <description>
            State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
            <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
            <param-value>server</param-value>
        </context-param>
        <context-param>
              <param-name>javax.faces.FACELETS_LIBRARIES</param-name>
            <param-value>/WEB-INF/taglib.xml</param-value>
        </context-param>
        <context-param>
            <param-name>crystal_image_uri</param-name>
            <param-value>../../crystalreportviewers115</param-value>
        </context-param>
    7- implement the reportViewer.xhtml and make sure you have the following;
    - in the tag libraries add the namespace schema xmlns:crystalnmcps="http://new-jsf-custom-components/"
    - add the new reportViewer component
    <crystalnmcps:ReportViewer reportSource="#{youController.reportSource}"  displayToolbarLogo="false" parameterFields="#{youController.parameterFields}"  allowParameterPrompting="false" />
    Now run your app.
    I hope this helps. good luck

  • Has anyone successfully used new custom templates with bookings?

    I have been trying to use an alternate list template for bookings as a fallback for the standard list I have which is outputting json.
    I saw recently in the september release that custom templates are out (thank goodness).
    I have tried:
    {module_booking,a template="fallback_list.tpl"}
    {module, booking,a template="fallback_list.tpl"}
    This is from http://helpx.adobe.com/business-catalyst/partner/using-custom-templates-modules.html it looks wrong to me.
    Then I tried renaming it to html cause I read http://forums.adobe.com/docs/DOC-2573
    Then I tried relocating it, removing the underscore, adding commas, removing commas, single quotes and double quotes.
    But they all return No events found.
    {module_booking,a, }
    Returns the expected amount of bookings.
    Any thoughts?

    Hi,
    Thanks Mario.  http://npaqueensland.businesscatalyst.com/events
    The events done with backbone and JSON are working, above those there is a bar of filters (not yet hooked up properly), and directly above those filters is the part I am having an issue with.
    Thanks,
    Allan.

  • Has anyone successfully used the serial-over-lan feature in ipmitool?

    The IPMI hardware in Apple's Intel Xserves ostensibly supports serial-over-LAN access via ipmitool. Attempting to access it with ipmitool doesn't appear to work, however; the command
    ipmitool -H hostname -U username sol activate
    simply returns without entering a serial session. I am able to perform other queries on the same interface with ipmitool, however. Is there some setting that I must enable in order to permit the above command to succeed?

    I have version 2.0.2 installed. The firmware is not up to date (its boot ROM is at version XS11.0080.B01); however, I never was able to figure out how to update it (see http://discussions.apple.com/thread.jspa?threadID=1569860&tstart=0). Querying the bmc info with ipmitool does work; it reports firmware revision 1.2.8. No manual changes were made within /dev to my knowledge.

  • Has anyone successfully used Oracle EM as a Monitoring Solution??

    Hi All,
    This might be a wrong place to post ;) but anyways. My question is can we use Oracle EM as a Monitoring Solution? If so has anyone successfully used it?
    I have used Oracle EM over the years for mostly managing Databases. Eventually with the Middleware Support I have tried to use it to monitor Middleware Servers, earlier OC4J and recently WebLogic Servers. I however find that most people when talk about EM they think of it as a Business Transaction Monitoring Solution. (Lets keep BTM out for a while I know about that plugin but it is another full set of questions)
    Mostly I get questions as to can we "drill down the transactions" and see who initiated it and "what is being processed at this moment". Here transaction means Business Transaction as opposed "this thread is executing this particular piece of code". People want to know this piece of code is being executed "for Purchase Order XYZ" as opposed to just knowing that purchase order is being processed. If you know what i mean.
    No doubt OEM is great tool for an Admin but does it really sell itself as a monitoring solution? I have not seen a successful implementation so far with OEM being a central monitoring solution. If anyone has any experiences to share it would be great.

    I tried to look at that option. It is available only for the Database. I was looking something more towards say the web Services hosted or the Web Applications hosted on Weblogic instances. Can we find say the Web Service call which had the Purchase Order XYZ in its request, etc.

  • Has anyone successfully used a "WD My Book for Mac" via NAS (plugged into USB port on router) as a Time Machine back-up drive?

    Has anyone successfully used a "WD My Book for Mac" via NAS (plugged into USB port on router) as a Time Machine back-up drive? Apple support tech tried to tell me it wasn't possible and that the only NAS Time Machine could back up to is the Time Capsule, but I'm not buying it. I know it's doable, but I'm having a hard time figuring out which External HDDs will work and which ones won't.  If not My Book for Mac, is there an External HDD that will work? (Running OS X 10.9.1 - Mavericks, btw...)

    Given the nature of backups, my recommendation has always been to use a strategy that is unequivocally supported by Apple. As you already determined Apple Support unequivocally informed you that your proposal will not work, unless your router is an Apple AirPort Extreme or Time Capsule.
    The exhaustive list of devices supported by Time Machine amounts to the following:
    AirPort Time Capsule's built-in hard disk (any model)
    External USB hard disk drive connected to a Time Capsule (any model)
    External USB hard disk drive connected to an AirPort Extreme (current model only)
    A hard disk drive directly connected to your Mac
    That is all.
    Use whatever backup device you want, but you should be aware that this site is full of reports of misery from hapless individuals who had been using NAS devices for Time Machine backups, only to find that they were incomplete, corrupted, or useless when they were required. Apple won't care if you lose your data while using a Time Machine configuration specifically excluded from their technical support documents.

  • Is anyone successfully using Digieffects Camera Mapper with CS5

    Hello all,
    I greatly want to use Digieffects Camera Mapper with After Effects CS5 in Windows 7..
    http://digieffects.com/product/camera_mapper
    But it keeps crashing my installation of After Effects.
    I'm using the demo CS5 version downloaded from the DigieEffects website.  Digieffects support says the demo version works the same as the paid version (except for the watermark.).   No problem there -- if I can get the demo version to work then I will buy it.
    Digieffects support says it works fine with their Windows 7 CS5 installation of After Effects.
    I went so far as to completley reinstall windows and reinstall CS5 master collection.  But after all that work I get the same crash.
    We are talking about a clean install of Windows 7 and a clean install of the CS5 master collection with nothing else installed on the computer.
    And I keep getting the crash.
    So my question here, is anyone succesfully using Digieffects Camera Mapper with CS5.  Are there any tips that I should know of.  Please look at my screen captuers of the steps I take which end up in a crash.
    As I said this is a new (just a few hours old) installation of Windows 7 Professional and a new (just a few hours old) installation of CS5 Master Collection.  No other plug-ins or programs installed.
    Thanks
    ...Rowby

    I'm sorry to say I have not heard from Digieffects regarding Windows 7 CS5 compatibility with Camera Mapper.
    It is strange because I've had at least one phone call from them, and then a few weeks ago they said they confirmed there was a problem and their engineer was working on it, and I should expect to receive an update of the plug-in that works with Windows 7 CS5.
    Since then I haven't heard a peep, even though I sent them 2 follow up support requests.
    In my case I was testing a demo, but Digieffects support said the demo was the same as the non-demo version (except for the demo watermark).
    Below is a link to Digieffects' compatibility page which shows that Camera Mapper is compatible with CS5.
    http://www.digieffects.com/support/compatibility
    Their silence on this issue, after their assurances to me that a fix is eminent, is baffling.
    Below is Digieffects support's last communication with me, on October 11.
    >>
    Rowby,
    I think the engineer has this one figured out. Turned  out to be a problem in the plugin- I will send you an updated one at  some point today as soon as I recieve it from the engineer. Thanks for  your patience and help with this one
    digieffects
    <<<
    Rowby

  • Has anyone successfully used OSX Lion with Logic 8, a Digi002 and Digidesign's Coreaudio?  Need to know for iCloud update.

    I need to upgrade to Lion for iCloud and to shift my mobile me iDisk to iCloud in order to save the content I have and need to share.
    Anyone using Logic 8 with this?  I want to be sure, as I can't afford to upgrade everthing just yet.
    Thanks

    I can give a partial answer.
    If you're installing Lion over the top of Snow Leopard Logic should be fine, it you're going to run a clean install of Lion, Logic 8 will not install but will run if you can copy it over from a working SL install.
    Update: This thread has info on how to install Logic 8 on a clean install of Lion.
    https://discussions.apple.com/message/18270040#18270040
    The other issue are Digi's Core Audio MIDI drivers, they don't seem to be Lion compatible yet so while you may have the audio part of the interface working with Lion, you have to remove the MIDI drivers or Logic chokes while booting up. (unless there are new drivers I don't know about) Perhaps others have more info on the Digi situation.

  • Has anyone successfully tethered a Nikon D7000 with Aperture 3.1?

    Hi,
    I have a new Nikon D7000 and tried to tether it to Aperture 3.1. Aperture recognizes it as a D7000, but I can't get an image to display. I'm outputting JPEG right now and can wait until RAW is available, but it would be convenient to tether so I can get immediate feedback on the image while I'm shooting.
    Has anyone had success tethering the D7000 with Aperture 3 or is the software not there yet? I'm talking about having the image immediately downloaded to the iMac and automatically displayed after you take each photo, not downloading at the end of the day.
    Thanks

    UPdate - the key was opening a new project in Aperture 3. Once I did that, Aperture recognized the D7000 and I could shoot from the camera and have it displayed immediately on the iMac.
    It works right out of the box. Yea!!!
    Message was edited by: luckyphoto2010

  • Anyone successfully using the credit card interface?

    I have heard that this interface is not really a 'mature' product. Has anyone implemented it, and if so, would you mind providing some info about how you got there? Thanks in advance!

    So my sister and I have our own separate iTunes accounts, and she has her set up with her credit card. She let me use her credit card on mine but it keeps saying the security code is invalid. Then the credit card company called about her credit card activity. Are you sure it's not impossible to use the same credit card on our different accounts?

  • Has anyone successfully used multiple page orientations in a CR2008 report?

    Hi -- I posted about this a couple of days ago:
       Unwanted blank pages using multiple page orientations in CR 2008
    I have a report with multiple subreports, each 1 page long, and some of which need to use landscape
    orientation (most are portrait). Thanks to the forum, I learned that this is possible in CR2008.
    Each subreport is in a report footer section. So, for the subreports that need to be landscape,
    I use the section expert for that footer, Paging tab, and set it to landscape. I DO NOT
    check New Page Before and New Page After -- but I get them anyway. There's a blank page
    before the landscape page -- portrait orientation. There's a blank page after the landscape
    page -- landscape orientation. In addition to being ugly, the blank pages mess up the page numbers that
    need to be associated w/ each subreport.
    I've checked the Report Footers before and after the footer for the landscape subreport.. neither of them have
    New Page Before or New Page After checked.
    I'm hoping to generate more interest/discussion w/ this post, and I also have some additional
    information.
    1) The "blank" pages that appear before and after the landscape page seem to be duplicates of the previous section.
    That is, subreport 3 is in page footer c (portrait). Its results correctly appear on page 3, but page 4, which appears
    blank, is also page footer c and shows the subreport object included -- but with no data.
    The subreport in page footer section d (landscape) appears on page 5 (it should be on 4). Page 6 appears blank,
    but it is also page footer section d and shows the subreport object included.
    If I change page footer c to landscape, all the "blank" pages go away (though subreport c takes up 2 pages because
    it's too long for a landscape page). So, from that perspective, having successive pages w/ the non-default
    orientation seemed to help...
    Is there some trick to using multiple page orientations in a report that I'm not aware of? Can someone describe
    an example where they were successful?
    Maybe tech support will be the way to go, but I'd like to think that someone out there has worked w/ this feature!
    Thanks much,
    Carol

    Please don't post the same question multiple times

  • Anyone still using the Silver box with a Non-BT Ro...

    My setup has been working fine since the beginning of Vision.. and this afternoon BT applied an update to the silver box, which seems to have finally borked my connection without using a HH..
    I am aware of the recent thread regarding this after the update with the triangles boot logo... however this appears to be a slightly different variation of the problem.. after the triangle boot logo update I could still use the box as normal and everything worked (I have the box in a DMZ outside my ipcop firewall) - I like to think I have some idea what im doing..
    Now though.. it actively appears to be attempting to communicate with the HH.. I get a new screen on boot.. where it ticks off 2 things.. Vision+ Box Startup (which gets a tick) and Communicating with BT Home Hub (a cross), the box then dumps me out to a newer looking connection failure screen.
    If I wireshark the comms.. it still pulls it's ip from my DHCP server as expected and communicates using it (its pingable on that IP).. but then tries to go off and ping something that doesnt exist.. which I assume it is expecting the HH to answer.. 
    Before I cancel my service (I have a black hub but as its unfit for purpose I wont be using it), can anyone confirm if this is still working for them (i.e silver box and a non homehub connection)
    Cheers,
    Sam

    See http://community.bt.com/t5/BT-Vision/Connection-Fa​ilure-BTVision-cant-connect-to-homehub-After-month​...
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Has anybody successfully used the META2TTF utility?

    Hey there, I'm trying to use a new function (new as of 11.5) called META2TTF (found in the 11.5's Docutoolbox reference guide), it converts Portrait Metacode Xerox fonts to a Windows TrueType Font.
    I'm trying to use the utilty to, as my explanation above would suggest, convert Xerox fonts we own to their TrueType version so our users can see what their efforts in Documaker would look like while working on their sections, etc. However, in using the command line function, I keep getting the message "Device font in non-portrait orientation not converted." I'm pretty confident the font(s) I'm trying to convert are portrait oriented, so I'm just wondering if anybody else has by chance used this utility so I can figure out if it's user error or whether I need to open a ticket with Oracle...
    i used the font converter wizard last week in 11.5 to successfully convert all of my Xerox fonts to PCL so I can print locally and see the true representation of what I create in Studio, but TTF is not an option in the wizard (unless it's just not called TTF and I'm missing the proverbial "boat" on this one).
    Thanks,
    Gregg

    I think there might be a mistake in the documentation which says to use /I= and /O= for the input Xerox font name and the output TrueType font name. Actually, you don't use /I= and /O=, just specify the input Xerox font name and the output TrueType font name.
    For example,
    meta2ttf C:\metafonts\HM108P.fnt "C:\My Fonts\HM108P.TTF"

Maybe you are looking for