Echo heard by others in VOIP application with USB Extigy HELP!

>Echo heard by others in VOIP application with USB Extigy HELP!x I have a soundblaster Extigy... the external USB model. It has been working fine for me but I just discovered a problem when I tried to use it during a Video/VOIP application.
I can get the other party up in the video session and I can hear them perfectly. They can hear me perfectly. The problem comes in when they speak.
When the other party talks they hear a huge eo on their end. I don't have an echo when I speak or listen.
We tried various things. When I disconnect my mic from my soundblaster and use the mic on my camera the other party does not have an echo when THEY speak any longer.
What is even more strange is that if I open Skype and engage in a skype conversation the person in the OTHER VOIP/VIDEO application can not only hear what is going on in that one, BUT when they speak the person in my skype conversation hears it! This is when the other party does not even have skype.
There is something definately going on with my soundblaster that is causing the other party to have an echo on THEIR end.
Any help would be greatly approeciated.
BTW... I'm running windows XP Pro.

A Thanks for the help, we'll try that. We are using a D-LinkDGL-400 Router with th D-LinkModel DGS-2208 switch. The program we are trying to run is OpenMeetings (an open source application) that we are hoping to get up and running so non-profit organizations have a free place to collaborate (http://www.caihq.org:5080/openmeetings/
What makes this strange is that when I use the Creative Orbit Camera I have with the built-in Mic not running through the Extigy there is no echo but the background noise is a bit of a hassle.
I'll try all you said and post the results.
Thanks again for the help.
Bob

Similar Messages

  • Itunes application with usb

    my iphone has the itunes icon with usb wire showing. please help

    That's telling you to restore your phone:
    http://support.apple.com/kb/ht1414

  • Running other server-side applications with JSP

    Hi,
    I'd like to know, if is possible run with JSP (Servlet, or JavaBean) other application, which support COM. I used something like this in JavaScript:
    application=new ActiveXObject("excel.application");
    and I had all possibilities of its API. I'd like to use excel as data source for user-friendly data input.
    Thanks for all suggestions

    Hi,
    I don't realy understand your question.
    If your javascript work using activeX, this code is executed on the client side (like the excel application and the excel file).
    You can, with a JSP, generate the html page that contain the script.
    Where is the problem ?

  • Voip application for windows phone 8.1 fails store submission

    A voip application with the new 8.1 architecture based on a separate process for the voip server is not accepted by the store.
    Voip architecture is based on 8.1 sample: https://code.msdn.microsoft.com/windowsapps/ChatterBox-VoIP-WP81-64921ad4
    Errors during submission:
    3011: The package is missing RpalManifest.xml. Update it and then try again.
    1028: The native API api-ms-win-core-processthreads-l1-1-2.dll:ExitProcess() isn’t allowed in assembly doubango.BackEndServerHost.exe. Update it and then try again.

    Update.  I am currently working with the sample team to update the sample.   We found the problem to be in the way the BackEndServerHost VIsual studio 
    project was created.   While we work on re-creating that from scratch, testing, and re-publishing I wanted to post what we have done so far in case anyone 
    wants to move forward.
    First there are a couple bugs in the sample, maybe you worked around those already in your development but in case not here they are.
    In the backendaudio.cpp BackEndCapture::InitCapture I changed the code:
    if (SUCCEEDED(hr))
    WAVEFORMATEX format = {};
    if (SUCCEEDED(hr))
    FillPcmFormat(format, m_pwfx->nChannels, m_pwfx->nSamplesPerSec, m_pwfx->wBitsPerSample);
    m_sourceFrameSizeInBytes = (format.wBitsPerSample / 8) * format.nChannels;
    hr = m_pDefaultCaptureDevice->Initialize(AUDCLNT_SHAREMODE_SHARED, 0x88140000, 1000 * 10000, 0, &format, NULL);
    The m_pwfx was already retrieved via GetMixFormat earlier, just use that.  Don’t create a custom one.
    In the BackEndAudio::Stop routine change the order of cleanup:
    if (m_pDefaultRenderDevice)
    m_pDefaultRenderDevice->Release();
    m_pDefaultRenderDevice = NULL;
    if (m_pDefaultCaptureDevice)
    m_pDefaultCaptureDevice->Release();
    m_pDefaultCaptureDevice = NULL;
    if (m_pCaptureClient)
    m_pCaptureClient->Release();
    m_pCaptureClient = NULL;
    The next step is to basically delete the BackEndServerHost project and create a new one with the following steps.
    1)  Add a new C++ Dirext X App (Windows Phone) to the solution and name it VoipBackendServerHost  NOTE: using "." in the name causes problems, so don't use the same name as the original sample.
    2)  Remove the Common and Content Folders
    3)  Remove App1Main.cpp and App1Main.h
    4)  Contents of app.cpp should be:
    #include "pch.h"
    #include "App.h"
    #include <windows.applicationmodel.core.h>
    #include <wrl.h>
    #include <string>
    #include <stdexcept>
    using namespace ABI::Windows::ApplicationModel::Core;
    using namespace ABI::Windows::Foundation;
    using namespace Microsoft::WRL;
    using namespace Wrappers;
    HRESULT __cdecl MyGetActivationFactory(_In_ HSTRING activatableClassId, _COM_Outptr_ IInspectable **factory);
    class GetCustomClass : public RuntimeClass<RuntimeClassFlags<RuntimeClassType::WinRtClassicComMix>,
    IGetActivationFactory,
    CloakedIid<IAgileObject >>
    public:
    IFACEMETHODIMP GetActivationFactory(_In_ HSTRING activatableClassId, _COM_Outptr_ IInspectable **factory)
    return MyGetActivationFactory(activatableClassId, factory);
    private:
    HMODULE m_hMod;
    [Platform::MTAThread]
    int main(Platform::Array<Platform::String^>^)
    HRESULT hr = Initialize(RO_INIT_MULTITHREADED);
    if (FAILED(hr))
    throw std::runtime_error(std::string("Failed to Initialize(RO_INIT_MULTITHREADED), HRESULT: ").append(std::to_string(hr)));
    // Scoping for smart pointers
    ComPtr<ICoreApplication> spApplicationFactory;
    hr = GetActivationFactory(HStringReference(RuntimeClass_Windows_ApplicationModel_Core_CoreApplication).Get(), &spApplicationFactory);
    if (FAILED(hr))
    throw std::runtime_error(std::string("Failed to GetActivationFactory(RuntimeClass_Windows_ApplicationModel_Core_CoreApplication), HRESULT: ").append(std::to_string(hr)));
    ComPtr<IGetActivationFactory> spGetActivationFactory = Make<GetCustomClass>();
    spApplicationFactory->RunWithActivationFactories(spGetActivationFactory.Get());
    Uninitialize();
     5) Right click and bring up Project properties.  go To Linker->Input.
     6) Set the Configuration and Platform dropdowns to change all configurations all platforms at the same time
     7) Choose Edit for Additional Dependencies and set to this:
    $(SolutionDir)$(PlatformTarget)\$(Configuration)\BackEnd\PhoneVoIPApp.BackEnd.lib
    WindowsPhoneCore.lib
    RuntimeObject.lib
     8) Under Cofniguration Properties->General Set the Target Name to PhoneVoIP.BackEnd.HostServer and Output directory to $(SolutionDir)UI
     9) APply the settings. Then click OK
    10) Build the Proxy Stub
    11) Build the Agents
    12) Build the new Project
    13) Expand the UI (Windows Phone Silverlight 8.1) Project and find the PhoneVoIP.BackEnd.HOstServer.exe and remove it.
    14) Right click UI and Choose Add Existing and add the PhoneVoIP.BackEnd.HostServer
    This should hopefully get you moving forward.  Please test and make sure your application is working. The end result should pass WACK now.  Please let me know if there are any issues.  It is a lot of steps and I hope I didn't miss any.
    Bret Bentzinger (MSFT) @awehellyeah

  • Creeping delay with USB condensor Mic

    I have been using a samsung usb c01u mic for a whil first with Garageband and now with Logic.
    It is fine except that as it is used over the course of a short while a noticeable delay gradually creeps in. The delay is at first not noticeable but after 5-10 minutes of use it is large enough to be distracting.
    The only fix I have found is to reset a parameter in the audio preferences panel and then select APPLY CHANGES. The audio then cuts out and restarts and then all is well...until the delay gradually creeps back in and I have to reset a parameter again.
    This has been going on for a while but i am posting now because of a new development: I now have a USB audio interface for my semiacoustic guitar and I have noticed that this device does not seem to have this issue at all. The acoustic guitar latency is not noticeable and does not increase with time. The mic however as usual starts without delay and gradually develops one.
    I am routing my audio out through the usb interface instead of out of the 'built in audio' but this does not seem to have improved the creeping delay issue.
    Anyone else have this issue? Any suggestions?

    Cheesenightmare wrote:
    Thanks for that Well it is a few years old now and has served me well. I am happy enough to know it isn't something that i should expect - time for an upgrade I think!
    Oh and yes, it is a Samson as you point out. Its been a great little mic while it lasted...
    While it's not something you should expect, I don't think it's the mic's fault, it's been reported off and on be several other users andnot only with USB mics. You're using the mic with an aggregate device correct? I'd first look there and possibly change a few of the settings, experiment a bit. If you have other USB devices plugged in (not kybed or mouse) in, like a printer...iPod...etc. try removing them when using the mic.
    pancenter-

  • I have tried to connect my c310 wireless although i have connected with usb. help!

    i have tried to connect my c310 wireless although i have connected with usb.  help!
    Printer does not recognize the network name.  I have  run the setup many times with no success.

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • I heard some promote use of "Terminal Services(RDS)", rather than App-V application with SCCM 2012 even if you have SCCM licens.

    Hi,
    I heard some promote use of "Terminal Services(RDS)", rather than App-V application with SCCM 2012 even if you have SCCM licens. The reason you dont need to repackage\test the application on an client OS...
    I don't agree and I have not Heard this Before, just that you use TS for some scenario.
    Or is it more likely that "Terminal Services(RDS)", take over the applikation administration?
    /SaiTech

    Surely this all depends on your environment. There's nothing wrong with creating RemoteApps to push to client devices. Maybe you have an environment where RDS is widely used. 
    Why not leverage both solutions and target App-V's at RDS servers and then create App-V based RemoteApps that users can run at home as part of a home working solution via RDWeb.
    Creating apps via RDS will be an admin overhead yes but then so is creating App-V packages in SCCM.
    I don't agree with the arguement re: 'you dont need to repackage\test the application on an client OS...' as
    App-V allows you to run on multple O/S types. 
    To be honest both technologies have their pros and cons. 
    Cheers
    Paul | sccmentor.wordpress.com

  • How to run others applications with abap commands

    Is there a mothed that can use it to run an application with abap statement?
    for example: how to open a text file in program with abap command?
    thank you very much.

    CALL FUNCTION '<b>WS_EXECUTE'</b>
    EXPORTING
      DOCUMENT                 = ' '
      CD                       = ' '
       <b>COMMANDLINE</b>              = ''
      INFORM                   = ' '
      <b> PROGRAM                 </b> = 'NOTEPAD'
      STAT                     = ' '
      WINID                    = ' '
      OSMAC_SCRIPT             = ' '
      OSMAC_CREATOR            = ' '
      WIN16_EXT                = ' '
      EXEC_RC                  = ' '
    IMPORTING
      RBUFF                    =
    EXCEPTIONS
      FRONTEND_ERROR           = 1
      NO_BATCH                 = 2
      PROG_NOT_FOUND           = 3
      ILLEGAL_OPTION           = 4
      GUI_REFUSE_EXECUTE       = 5
      OTHERS                   = 6
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Here...
    In the <b>CommandLine</b> you can give the path where the file is located like for Example
    C:\Test\Hello.txt.
    In the <b>Program</b> you need to give the application that you want to open that file.
    if helpful reward points...
    Regards,
    Vivekananda Varma Dandu

  • Can i deploy web application with WEB-INF as war and leave others as it is

    i'm asked to deploy my web application with WEB-INF in a war and leave all the others as it is, but i'm getting error that "resource not found"
    what shld i do?
    this is the command i used to create war
    jar cvf WEB-INF.war *.*
    i entered this command from command prompt from the directory
    c:/tomcat/webapps/myapplication/WEB-INF/>jar cvf WEB-INF.war *.*
    please help!!!!!

    can u please elaborate...because i need to speak about that to the manager who is asking me to do so. he will not listen to me until i explain with true reasons.

  • Why do I have to sign in to use Muse when I don't have to with any other Adobe CC application?

    Why do I have to sign in to use Muse when I don't have to with any other Adobe CC application?

    Why do I have to sign in to use Muse when I don't have to with any other Adobe CC application?

  • Opening other applications with Flash Lite.

    I'm sure it is pretty straight forward, but I have no idea
    how to link an application to a button in Flash Late. I have
    created a series of buttons, most of which launch a URL. This works
    fine, but I have no idea how to link the button to the text
    messaging, games, music or any other phone application. Someone
    please help.
    Thanks
    Jess

    maybe this helps:
    fscommand(command:String, parameters:String) : Void
    on(release) {
    status = fscommand("launch", "path_to_app, arg1, arg2,...,
    argn");
    for sms messaging:
    on(release) {
    canSMS = System.capabilities.hasSMS;
    if (canSMS) {
    myMessage = "sms:4156095555?body=sample sms message";
    getURL(myMessage);
    Jarek

  • E52 - Nokia SIP VoIP application - help needed

    Hi there,
    I am pretty new here.  I need the Nokia SIP VoIP application for my E52, something like SIP_VoIP_3_1_Settings_S60_3.... .sis
    Where can I get it?
    My problem is, that I can set up easily an VoIP service with my phone and it connects perfectly.  However, I can't use it with my E52 since I can't activitate it on my phone.  I would need the option:  > connection > Internet Tel. Settings   which is not there.
    I guess I need the Nokia SIP VoIP application, however I can't find a compatible version, and the SIP_VoIP_3_1_Settings_S60_5_x_v1_0_en.sis does not work.
    Thanx
    Caristeo

    Although I've never used it, I was able to install the SIP Settings program for my E73 (same OS and Feature Pack as your phone) from http://www.developer.nokia.com/info/sw.nokia.com/id/d476061e-90ca-42e9-b3ea-1a852f3808ec/SIP_VoIP_Se... .  (You need to make an account if you don't have one already.)  Download the "SIP VOIP 3.x" version.  I do have a Settings -> Connection -> SIP Settings option on my phone, as well as Control Panel -> Net Settings -> Advanced VOIP Settings.  Hope that helps.

  • Launching an application with a PS script

    Hi everybody,
              I'm an absolute beginner with PowerShell, so please be patient :-)
    I'm going to write my first script for PowerShell. The script core concerns an external software I need to launch. This is a typical code for a batch file:
    cd case_path
    echo "macro" | "app_path"app.exe case.ext 2>&1 >> log
    It results in:
    - go to the folder containing the 'case' to launch (just a file containing settings)
    - run the case with application.exe, execute the 'internal macro' and generate a log file
    I'm able to run the application with
    Invoke-Item app_path\app.exe
    but I can't run the specific case (and the internal macro too). Could you help me, the batch script as a starting point?

    OK, I'm here again, just for feedback and sharing (are there other newbies out there?)
    I made some tests with both methods (thanks Fred and jrv!).
    method cmd /c
    $FS_path = $env:fsinstall + '\bin\win32\'
    $case_path = '.\f1'
    $cmdString = 'cd ' + $case_path + ' && echo "res" | "' + $FS_path + '"xfsflow doubleSkegCase.fme 2>&1 >> log.txt'
    method Start-Process
    $FS_path = $env:fsinstall + '\bin\win32\xfsflow'
    $args = '-c "res" doubleSkegCase.fme'
    $FS_case = '.\f1'
    $sim=@{
    FilePath = $FS_path
    ArgumentList = $args
    WorkingDirectory = $FS_case
    RedirectStandardOutput = "$FS_case\log.txt"
    Start-Process @sim -noNewWindow -wait
    just two more questions:
    1. is it possible to get rid of the standard error output? I'd like to have no error messages in the terminal or as a file
    2. I'd like to make the macro "res" in the ArgumentList
    as a variable, but I'm not able to. I guess the problem concerns escape characters or similar, could you help me?

  • Compile AIR application with Ant (WindowedApplication could not be found)

    I'm trying to compile my AIR application with Ant, using the mxmlc Ant Task. It seems to compile fine, and I get a .swf, but when I try to run it with ADL, I get the message "Class mx.core::WindowedApplication could not be found." It looks like the AIR libraries aren't being included properly.
    Here's my mxmlc task:
    Class mx.core::WindowedApplication could not be found.
    <mxmlc
         file="${MAIN_MXML}"
         output="${DEPLOY_DIR}/MyApp.swf"
         compatibility-version="3"
         locale="en_US"
         static-rsls="true"
         debug="${DEBUG_FLAG}"
         optimize="true"
         link-report="${DEPLOY_DIR}/report.xml"
         configname="air">
         <load-config filename="${FLEX_HOME}/frameworks/air-config.xml" />
         <library-path dir="${FLEX_HOME}/frameworks/libs" append="true">
              <include name="*.swc" />
         </library-path>
         <library-path dir="${FLEX_HOME}/frameworks/libs/air" append="true">
              <include name="*.swc" />
         </library-path>
         <library-path dir="${FLEX_HOME}/frameworks/locale" append="true">
              <include name="{locale}" />
         </library-path>
         <source-path path-element="${SRC_DIR}" />
    </mxmlc>
    Any idea why this is happening? I've tried not including the load-config section and not including the library paths, but it's always the same result - it can't find WindowedApplication.
    Thanks!

    Hi, Guys!
    I ran into the same problem when i tried to write an ant-script to compile the asDocs for my project.
    After reading shades post i added the air-config (This resolved the WindowApplication couldn't be found error, because it adds all the air libs i guess)
    but lead to the problem that the flex vector-class wasn't found. As Vector is flashplayer 10.0.0 i also
    used the target-player parameter (This fixed that nicely).
    But now i got the problem that i get lots of this error msgs: DepartmentItemRendererClass.as(11):
    Error: The private attribute may be used only on class property definitions.
    I guess the problem now is that ant doesn't understand that the AS-Classes producing that errors are not used as
    standalone-classes. To divide my mxml and AS-Code i import external AS-Classes to my MXML
    like that <mx:Script source="ascodeClass.as" />
    Is there a solution allowing me to use this pattern and still compile my asDoc with ant?
    It confuses me a little, because Ant-Scripts worked to compile the project.
    Thanks in advance!
    Florian
    My Ant-Script producing that error:
    <project name="Red bull BPT 2.0: Generate ASDoc" basedir=".">
        <description>
           Creates the ASDoc for Red Bull BPT 2.0
        </description>
        <property file="FlexbuilderASDocAntTask.properties" />
        <taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar" />
        <target name="cleanAndCreateASDoc"
                depends="cleanASDoc, compileASDoc"
                description="Cleans and creates Actionscript-Documentation"
                />
            <!-- Delete the existing output folder and files and then regenerate the output folder -->
                <target name="cleanASDoc">
                    <echo>Deleting ASDoc Directory...</echo>
                        <!--Delete the folder specified for the Asdoc.dir variable-->
                        <delete dir="${Asdoc.dir}" failOnError="false" includeEmptyDirs="true" />
                        <echo>Deleted ASDoc Directory</echo>
                        <echo>Creating ASDoc Directory...</echo>
                        <!--Creates the folder specified for the Asdoc.dir variable-->
                        <mkdir dir="${Asdoc.dir}" />
                    <echo>Created ASDoc Directory</echo>
                </target>
            <!-- Run the ASDoc executable and generate the ASDocs to the new output folder -->
                <target name="compileASDoc">
                    <echo>ASDoc Compiling...</echo>
                        <exec executable="${AsDocs.executable}" failonerror="true">
                        <!--THIS SEEMS TO SOLVE THE WINDOWEDAPPLICATION AND FOLLOWING VECTOR ERROR -->   
                            <arg line="-load-config ${FLEX_HOME}/frameworks/air-config.xml" />
                            <arg line="-target-player 10.0.0" />
                        <!--THIS SEEMS TO SOLVE THE WINDOWEDAPPLICATION AND FOLLOWING VECTOR ERROR -->
                        <!--Main title for the top of all ASDoc pages-->
                            <arg line="-main-title '${Main.title}'" />
                        <!--Prefix Title of the window-->
                            <arg line="-window-title '${Window.title}'" />
                        <!--Defines the output directory for the ASDoc-Files-->
                            <arg line="-output '${Asdoc.dir}'" />
                        <!--Footer added to each ASDoc page-->
                            <arg line="-footer '${Footer.text}'" />
                        <!--Adding the source folders the ASDoc should be created from (Start)-->
                            <arg line="-doc-sources '${ModuleBaseDir}/source'" />
                        <!--Adding the source folders the ASDoc should be created from (End)-->
                        <!--Adding the folders for external Libraries needed to compile the application(Start)-->
                            <arg line="-external-library-path '${ModuleBaseDir}/libs'" />
                        <!--Adding the folders for external Libraries needed to compile the application(End)-->
                        </exec>
                    <echo>ASDoc Compile Complete!</echo>
        </target>
    </project>

  • Building Flex Application with Flex Builder installed in a remote server

    Building Flex Application with Flex Builder installed in a remote server and different developers accessing it via VNC etc
    I have a requirement as below..........this is mainly to look for a solution where we can see a environment.............where we can stop developer to install flex builder locally, download/check out code locally and work locally ..............Please have a look ........
    1. There is Remote Server hosting our source code say 1st Remote Server
    2. There is another 2nd Remote Server which support workspace for each user
    3. Flex Builder installed in the 2nd Remote Server
    4. Each Developer connects to the 2nd Remote Server via VNC etc log in to their workspace
    5. Each developer check out code in their workspace by connecting to 1st Remote Server.
    6. Start Flex Builder instance which is running in the 2nd Remote Server
    5. Each developer open source code modifies, build application in their workspace and check
    Do anyone have any idea whether this kind of environment is possible in Flex or can anyone suggest something which is almost close to this ? I heard Cloud Computing is something that world is looking to represent this kind of solution .............not sure though

    Hi
    The concept of cloud computing is not even very clear to me
    I think this is what I understood about it ...........from this link http://communication.howstuffworks.com/cloud-computing.htm
    It says
    "Instead of installing a suite of software for each computer, you'd only have to load one application. That application would allow workers to log into a Web-based service which hosts all the programs the user would need for his or her job. Remote machines owned by another company would run everything from e-mail to word processing to complex data analysis programs. It's called cloud computing, and it could change the entire computer industry"
    "There's a good chance you've already used some form of cloud computing. If you have an e-mail account with a Web-based e-mail service like Hotmail, Yahoo! Mail or Gmail, then you've had some experience with cloud computing. Instead of running an e-mail program on your computer, you log in to a Web e-mail account remotely"
    My issue is not with the license. The solution that I am looking for is
    1. Don't want the developer to download the source code in any fashion either checked out or anything else in the local machine
    2. Want the developer to work directly on the server
    3. Looking for a solution where each developer is not required to install Flex Builder locally and the developer can use Flex Builder that is installed on the server and in his workspace and create/modify build on the server itself
    Hope I could make you understand this time ................
    Regards
    Biswamit

Maybe you are looking for

  • Calendar in JSTL

    Hi , I am using JSTL in JSP and there is an If statement which says if (Calendar.get(Calendar.YEAR)!=2000){ do some thing I need to know how to write that if condition in JSTL. J4v4Guru.

  • Preflight automation

    We're trying to automate preflighting of pdf  files with a Visual Studio 10 app. We have the Acrobat API and javascript  documentation, and we were able to get this far: jso =  inDoc.GetJSObject jso.app.execMenuItem("CALS:Preflight") This brings up t

  • Automator Rename Finder Items NOT working in Leopard

    I used to be able to Replace Text in filenames, as you would expect with Automator, now my old or new Automator actions don't work for this, whether I run them as a Finder plugin or from the Automator Run button... Anyone else have this problem, or b

  • CFImage Functions and DPI / Image Quality.

    I am doing some work that involves taking images supplied from a product called Fotoweb and putting them into PDF files using cfdocument. We are noticing a degradation in image quality that seems to be coldfusion related. In the code below I am readi

  • [svn] 2780: Sync up AIR for marshall plan.

    Revision: 2780 Author: [email protected] Date: 2008-08-07 14:35:08 -0700 (Thu, 07 Aug 2008) Log Message: Sync up AIR for marshall plan. Fixes bugs: SDK-16377 SDK-16378 SDK-16380 SDK-16388 Review: DJL Ticket Links: http://bugs.adobe.com/jira/browse/SD