Conditional with Ant (withdrawal, the Release version of debugger instrumentation code)

I started to try the MonsterDebugger of. On the first thing that comes to my mind was the instrumentation code and have it in the Release version of the application.

Does anyone have a good tip on how to make a conditional generation with Ant to remove this code?

Unit tests are easy to remove by the exclusion of the name of file, since the tests do not alter the unit under test, but for the debugger, I need to at least import the debugger class and instantiate in the code.

Thank you.

You mean like this: http://livedocs.adobe.com/flex/3/html/compilers_21.html ?

Tags: Flex

Similar Questions

  • Race of library slow when Alchemy app disabled in the Release version

    Hello

    I'm working on an application that an operation running through a library of Alchemy (written in C and exposed as .as) long.

    Here are the high-level logic to illustrate the idea:

    QNXSystem.system.inactivePowerMode = QNXSystemPowerMode.NORMAL;

    addEventListener (AlchemyLibraryEvent.PROGRESS, onProgress);

    addEventListener (AlchemyLibraryEvent.COMPLETE, onComplete);

    Call the library of Alchemy;

    private void onProgress(event: AlchemyLibraryEvent) {}

    update of the progress made in the user interface;

    }

    private void onComplete(event: AlchemyLibraryEvent) {}

    QNXSystem.system.inactivePowerMode = QNXSystemPowerMode.STANDBY;

    If app is in {disabled state

    QNXSystem.system.powerMode = QNXSystemPowerMode.STANDBY;

    }

    }

    In the bar-descriptor:

    run_when_backgrounded

    What happens is that the app works perfectly well (no matter the app is active, put off the power, the unit standby) in a debug build (by token of debugging).  However, when it is exported as a signed bar and running on the same physical device BB10, it normally only works when the application is active.  Whenever the application is disabled (when the screen is off, or app pushed back and another application is brought to the foreground), the application runs always, but at a very slow speed (about 1/15 of the original speed).

    I did some debugging and confirmed that when the application is disabled, she was continuing with NORMAL power at the rate of 60 frames per second, which seems to be quite normal.  What I don't understand is why the chemistry library runs a lot slower in the background in the Release version.

    As a proof of concept, I added the following code just before inactivePowerMode to NORMAL:

    NativeApplication.nativeApplication.systemIdleMode = SystemIdleMode.KEEP_AWAKE;

    The build version will run at normal speed and the screen turn off.  However, if I press the device power button, or push the app thoroughly (and make another application in the foreground), he repeats the same behavior running slowly.

    Any ideas would be much appreciated!

    No, there is no way to take more CPU power when in the background. The operating system applies this to the user, so they have no apps churning through their battery on them. I would recommend that you inform users of this, so they can decide what they want to do. BlackBerry 10 is expected for the multitasking well, so I expect that they will enjoy and put the application in the background.

  • Debugging in the Release version

    Hello world

    my new app uses a card to process the data. The data processor triggers a signal and slot this respons by closing the card. Well, at least while debugging. I tried the release just before you download for the BlackBerry World and I noticed that the card don't be closed. Data are transformed very well, but somehow the signal is not properly raised or the card cannot be closed. I have attached a bit of code to illustrate my operation.

    The processing of the data

    void WebpageFetcher::done()
    {
        DbHelper* dbHelper = DbHelper::getInstance();
        dbHelper->insert(some data);
        //Signal that we're done!
        emit fetchDone("Success!");
        delete dbHelper;
    }
    

    The Application

    fetcher = new WebpageFetcher(uri);
    connect(fetcher, SIGNAL(fetchDone(QString)), this, SLOT(fetchingDone(QString)));
    
    void ApplicationUI::fetchingDone(QString msg)
    {
        // Assemble message
        CardDoneMessage message;
        message.setData(msg);
        message.setDataType("text/plain");
        message.setReason("Success!");
        // Send message
        m_invokeManager->sendCardDone(message);
    }
    

    Now my question is: How can I see the output in Release version? qDebug will obviously not work, but I need a tool to help me understand this issue.

    Looks like the culprit was "build automatically" neglected my amendments to the code for the Release version. Although 4 wasted hours, could be worse

  • Can you please put me in touch with support for the trial version of adobe acrobat pro XI that I had tried on 15 March for 30 days. I tried to cancel because the cost is too, and Acrobat Reader are good for me. I can't uninstall program.

    Can you please put me in touch with support for the trial version of adobe acrobat pro XI that I had tried on 15 March for 30 days. I tried to cancel because the cost is too, and Acrobat Reader are good for me. I can't uninstall program.

    I had to wipe my drive since then with the trouble with Apple Store without acknowledging my machine and Time Machine reloading gave complications. Can you please cancel my trial and make my money from trial.

    Hi jack gordon.

    Adobe does not charge for the 30 day trial, but it seems that you have subscribed to Acrobat Pro (as a simple app for creative cloud membership) return March 15. To cancel your subscription, please contact customer service.

    Please let us know if you have any additional questions.

    Best,

    Sara

  • Best/Recommended way to record information in the Release version

    Hello

    I've searched around, but don't see any results on the issue yet. Then I would ask what is the best/recommended way to record Release version information?

    I use Momentics IDE 10.2. When I choose run or Debug, qDebug() & qWarning display information very well in the console of the IDE, but with "run" they don't show anything in the console. Tested on both Q10 & Simulator.

    Thank you

    Install your own messages QDebug Manager, do write to a file, for example newspapers newspaper. Then open a terminal on the device, navigate to the file and the type of your application:

    # tail -f logs/log
    

    to view the log file.

    Change your main.cpp along these lines:

    #include 
    
    static FILE * logFile;
    
    void logger(QtMsgType type, const char * msg)
    {
        Q_UNUSED(type);
        std::fprintf(logFile, "%s\n", msg);
        std::fflush(logFile);
    }
    
    Q_DECL_EXPORT int main(int argc, char **argv)
    {
        logFile = fopen("logs/log", "a");
        qInstallMsgHandler(logger);
        Application app(argc, argv);
    
        // Create the Application UI object, this is where the main.qml file
        // is loaded and the application scene is set.
        new ApplicationUI(&app);
    
        // Enter the application main event loop.
        return Application::exec();
    }
    

    Note: the file will be closed by the operating system, more messages are seen if you don't shut it down at the bottom of the hand. Why? because c is destorying local variables (app) at the end of the main, and who calls the string whole qt of parent-child destructor for your class of application as well.

  • Signals of Touch will not work in the Release version, debug is ok.

    I have two containers that accept the touchEvents that are visible at the same time, one under the other.  Checking for one horizontal sweep, one for a vertical sweep.

    The debug version of my app past touch events in two containers.

    The release, however, only sends the key event to the top most container.  When I turn off the key up to the container page, the background container leads them.

    Is it possible to make "cross" to the lower container or to ensure that the two containers receive signals in a release?

    Has not initialized correctly, boolean indicator which controlled so if we allow the connection to establish.

    Sometimes, was true and another fake time.

  • How to write image files in the current folder in the Release version

    I'm able to do in the sims and on real devices in debug mode, but for some reason when I'm building a Release version I can not write in the current folder. I get write errors.

    I want to write the image easily in qml files in this folder as read when I write in the current folder.

    Write to the data directory instead - unable to write to the application folder & active

  • problem with fluidity in the latest version of photoshop

    In earlier versions of Photoshop, I had no problem with fluency work. However in the latest version when I use it, the changes appear in the ut windowb when they are applied to the image it is rectangular block near the top of the image. I know that a lot of transformation is now by the GPU, but after trying a top spec graphics card the problem persisted still

    Hi Ramigrafx,

    If please check the following article and let me know if it helps: Photoshop CC 2015.1: liquefy lightens the result on the 16-bit per channel images

    Kind regards

    Tanuj

  • Conversion error has no platform during the Release version

    It is a very annoying problem for the release build file generation. Here are the steps that I have while buiding:

    1. Select project > export release build

    2. Select signed native installer

    3. import a certificate

    4. click on next.

    I've always had the following error:

    build_error.png

    I have the following configuration:

    OS: Windows 8.1

    System type: 64-bit

    The Flash Builder Version: 4.6 Premium

    Installed FB: FlashBuilder_4_6_LS10.exe

    Help, please. It gives me a lot of headaches for a few days now.

    I tried to install windows 7 32-bit operating system and I have more problems on the export of release builds. I wonder if Adobe has released Flash Builder 4.6 for x 64 operating systems.

  • Skype can not uninstall the old version 6.3 - error code 1603

    Hello

    Skype can not uninstall the old version I (6.3.60.107) in order to install the latest version.

    It is impossible to find the Skype.msi in the Application Data folder.

    Is there a link I can download this msi?

    PS: I tried Microsoft Fixit method, the program returns an error and closes.

    Try this:

    http://community.Skype.com/T5/Windows-desktop-client/impossible-to-install-v6-13-0-104-error-1603/m-...

    Be aware that if you want to install the 6.18.0.106 currently the latest version, then you must use this msi installer link in order to extract the Skype.exe and Login.cab files:

    http://download.Skype.com/MSI/SkypeSetup_6.18.0.106.msi

  • problem with layout of the mobile version Adobe Muse

    Hi, I made recently a Web site (http://www.terbank-egenhoven.be) for Office Adobe Muse and then I reworked it into a mobile version. It looks perfect in the preview of Muse (left screenshot), if I write site, it is shown as right screenhot (lots of white space on the right, small text,...). The site is not hosted by catalyst. Can someone tell me what could be the problem? More funny thing is that if I host the site with catalyst it seems perfect there. Thanks in advance.

    trb_muse.jpgNico

    Hi Nico,

    When you host your site? Sometimes if you host with another provider that has its own methods of detection devices, it can interfere with those who provide the muse. Check out this post from the forum (available phone shrunken left and tiny) and tell me if none of the scenarios (web forwarding, you use a separate host, etc.) apply to you.

    Please let us know and we will deepen in this situation when we can identify what could be the cause of it!

    Emily

  • Build the release version

    I just upgraded to the latest SDK and momentics after consuming not for a few months.

    I am now ready to build a version to download, but I don't see the option more.  I could have sworn that under the context menu of the project, under Blackberry tools there used an option to compile the version (who would sign and wrap it up).

    I think bad?  Is it deleted or moved?  Anyone know if it is still somewhere in the IDE?

    Nevermind, it's the title of export

  • With regard to the release of view

    Hello

    The code below is of the view, it refer to output such as planned at the end of the code

    create or replace view c2v_borr_secu_rpt as
    select
    bank_cust_id --1
    , bank_company_id --2
    , client_id --3
    , cust_name --4
    , segment_id --5
    , seg_name --6
    , sector_id --7
    , sector_name --8
    , industry_id --9
    , industry_name --10
    , client_group_id --11
    , group_name --12
    , npa_status --13
    , restructured --14
    , acl_id --15
    , asset_class --16
    , sub_acl_id --17
    , sub_asset_class --18
    , b_retail --19
    , sum(advances_outstanding) advances_outstanding --20
    , sum(investments_outstanding) investments_outstanding --21
    , sum(Tot_FB_Outstanding) Tot_FB_Outstanding --22 (20+21)
    , sum(nfb_nmr_outstanding) nfb_nmr_outstanding --23
    , sum(nfb_mr_outstanding) nfb_mr_outstanding --24
    , sum(Tot_NFB_Outstanding) Tot_NFB_Outstanding--25 (23+24)
    , sum(advances_undisbursed) advances_undisbursed --26
    , sum(investments_undisbursed) investments_undisbursed --27
    , sum(Tot_FB_Undisbursed) Tot_FB_Undisbursed --28 (26+27)
    , sum(nfb_nmr_undisbursed) nfb_nmr_undisbursed --29
    , sum(nfb_mr_undisbursed) nfb_mr_undisbursed --30
    , sum(Tot_NFB_Undisbursed) Tot_NFB_Undisbursed --31 (29+30)
    , sum(Total_Outstanding) Total_Outstanding --32
    , sum(Total_Undisbursed) Total_Undisbursed --33
    , sum(Total_Exposure) Total_Exposure --34
    , sum(own_bank_td) own_bank_td --35
    , sum(own_bank_current_a_cs) own_bank_current_a_cs --36
    , sum(own_bank_saving_a_cs) own_bank_saving_a_cs --37
    , sum(own_bank_rd) own_bank_rd --38
    , sum(Fund_Based_Security) Fund_Based_Security --39 (35+36+37+38)
    , sum(security_code_lc) security_code_lc --40
    , sum(security_code_bg) security_code_bg --41
    , sum(other_secu) other_secu
    , sum(Non_Fund_Based_Security) Non_Fund_Based_Security --42 (40+41)
    , sum(Total_Liquid_Security) Total_Liquid_Security --43 (39+42)
    , sum(Tot_Exposure_after_Tot_Secu) Tot_Exposure_after_Tot_Secu -- 44 (34-43)
    , sum(Tot_FBC_before_Tot_secu) Tot_FBC_before_Tot_secu -- 45 (22+28)
    , sum(Tot_FBC_after_Tot_FB_secu) Tot_FBC_after_Tot_FB_secu --46 (45-39)
    , sum(Tot_NFBC_before_Tot_secu) Tot_NFBC_before_Tot_secu --47 (25+31)
    , sum(Tot_NFBC_after_Tot_NFB_secu) Tot_NFBC_after_Tot_NFB_secu --48 (47-42)
     
    --------------------------------------------------------------------------------
    , sum(provisions) provisions --49
    , sum(sec_alloc_after_srf) sec_alloc_after_srf --50
    , trading_book_outstanding --51
    from
    (
    select
    bank_cust_id --1
    , bank_company_id --2
    , client_id --3
    , cust_name --4
    , segment_id --5
    , seg_name --6
    , sector_id --7
    , sector_name --8
    , industry_id --9
    , industry_name --10
    , client_group_id --11
    , group_name --12
    , npa_status --13
    , restructured --14
    , acl_id --15
    , asset_class --16
    , sub_acl_id --17
    , sub_asset_class --18
    , b_retail --19
    , advances_outstanding --20
    , investments_outstanding --21
    , (advances_outstanding+investments_outstanding) as Tot_FB_Outstanding --22 (20+21)
    , nfb_nmr_outstanding --23
    , nfb_mr_outstanding --24
    , (nfb_nmr_outstanding+nfb_mr_outstanding) as Tot_NFB_Outstanding --25 (23+24)
    , advances_undisbursed --26
    , investments_undisbursed --27
    , (advances_undisbursed+investments_undisbursed) as Tot_FB_Undisbursed --28 (26+27)
    , nfb_nmr_undisbursed --29
    , nfb_mr_undisbursed --30
    , (nfb_nmr_undisbursed+nfb_mr_undisbursed) as Tot_NFB_Undisbursed --31 (29+30)
    , (advances_outstanding+investments_outstanding) + (nfb_nmr_outstanding+nfb_mr_outstanding) as Total_Outstanding --32
    , (advances_undisbursed+investments_undisbursed) + (nfb_nmr_undisbursed+nfb_mr_undisbursed) as Total_Undisbursed --33
    , (advances_outstanding+investments_outstanding) + (nfb_nmr_outstanding+nfb_mr_outstanding) +
    (advances_undisbursed+investments_undisbursed) + (nfb_nmr_undisbursed+nfb_mr_undisbursed) as Total_Exposure --34
    , own_bank_td --35
    , own_bank_current_a_cs --36
    , own_bank_saving_a_cs --37
    , own_bank_rd --38
    , other_secu
    , (own_bank_td + own_bank_current_a_cs + own_bank_saving_a_cs + own_bank_rd + other_secu) Fund_Based_Security --39 (35+36+37+38)
    , security_code_lc --40
    , security_code_bg --41
    , (security_code_lc + security_code_bg) as Non_Fund_Based_Security --42 (40+41)
    , (own_bank_td + own_bank_current_a_cs + own_bank_saving_a_cs + own_bank_rd) +
    (security_code_lc + security_code_bg) as Total_Liquid_Security --43 (39+42)
     
    --------------------------------------------------------------------------------
    , (case when
    ((advances_outstanding+investments_outstanding + nfb_nmr_outstanding+nfb_mr_outstanding +
    advances_undisbursed+investments_undisbursed + nfb_nmr_undisbursed+nfb_mr_undisbursed) -
    (security_code_lc + security_code_bg)) < 0
    then 0
    else
    ((advances_outstanding+investments_outstanding + nfb_nmr_outstanding+nfb_mr_outstanding +
    advances_undisbursed+investments_undisbursed + nfb_nmr_undisbursed+nfb_mr_undisbursed) -
    (security_code_lc + security_code_bg))
    end) as Tot_Exposure_after_Tot_Secu -- 44 (34-43)
    , (advances_outstanding+investments_outstanding + advances_undisbursed+investments_undisbursed)
    as Tot_FBC_before_Tot_secu -- 45 (22+28)
    , (case when
    ((advances_outstanding+investments_outstanding + advances_undisbursed+investments_undisbursed) -
    (own_bank_td + own_bank_current_a_cs + own_bank_saving_a_cs + own_bank_rd)) < 0
    then 0
    else
    (advances_outstanding+investments_outstanding + advances_undisbursed+investments_undisbursed) -
    (own_bank_td + own_bank_current_a_cs + own_bank_saving_a_cs + own_bank_rd)
    end) as Tot_FBC_after_Tot_FB_secu --46 (45-39)
     
    , (nfb_nmr_outstanding+nfb_mr_outstanding + nfb_nmr_undisbursed+nfb_mr_undisbursed)
    as Tot_NFBC_before_Tot_secu --47 (25+31)
    , (case when
    ((nfb_nmr_outstanding+nfb_mr_outstanding + nfb_nmr_undisbursed+nfb_mr_undisbursed) -
    (security_code_lc + security_code_bg)) < 0
    then 0
    else
    ((nfb_nmr_outstanding+nfb_mr_outstanding + nfb_nmr_undisbursed+nfb_mr_undisbursed) -
    (security_code_lc + security_code_bg))
    end) as Tot_NFBC_after_Tot_NFB_secu --48 (47-42)
     
    --------------------------------------------------------------------------------
    , provisions --49
    , sec_alloc_after_srf --50
    , trading_book_outstanding--51
    from
    (
     
    --------------------------------------------------------------------------------
    select
    nvl((select e.bank_cust_id
    from c2u_exposure e, c2m_exposure me
    where t.limit_id = me.limit_id
    and e.exposure_id = me.exposure_id
    and t.limit_exp_id = 3),
    (select u.bank_cust_id from c2u_limit u
    where u.limit_id = t.p_limit_id)) bank_cust_id
    , (select c.bank_company_id from c2u_client c where c.client_id = d.client_id) bank_company_id
    , t.client_id
    ---------------------Client Details
    , (select c.cust_name from c2m_client c where c.client_id=t.client_id) as cust_name
    , (select m.bankcode from mst_mktsegment m where m.seg_code= d.segment_id) as segment_id
    , (select m.seg_name from mst_mktsegment m where m.seg_code= d.segment_id) as seg_name
    , (select m.sector_bankcode from mst_sector m where m.sector_code= d.sector_id) as sector_id
    , (select m.sector_name from mst_sector m where m.sector_code= d.sector_id) as sector_name
    , (select m.industry_bankcode from mst_industry m where m.industry_id = d.industry_id) as industry_id
    , (select m.industry_name from mst_industry m where m.industry_id = d.industry_id) as industry_name
    , d.client_group_id
    , (select g.client_group from c2c_client_group g where g.client_group_id = d.client_group_id) as group_name
    , (case when t.b_npa=1 then 'Yes' else 'No' end) as NPA_Status
    , (case when t.b_restructured=1 then 'Yes' else 'No' end) as Restructured
    , t.acl_id
    , (select c.acl from c2c_acl c where c.acl_id =t.acl_id) as asset_class
    , t.sub_acl_id
    , (select c.acl from c2c_acl c where c.acl_id =t.sub_acl_id) as sub_asset_class
    , (case t.b_retail when 1 then 'Retail' when 0 then 'Non-Retail' end) as b_retail
    ----------------------Outstanding
    , (case when f.class_id = 1 and t.b_funded =1 then t.outstanding else 0 end) as Advances_Outstanding
    , (case when f.class_id = 4 and t.b_funded =1 then t.outstanding else 0 end) as Investments_Outstanding
    , (case when f.class_id = 3 and t.b_funded =0 then t.outstanding else 0 end) as NFB_NMR_Outstanding
    , (case when f.class_id = 2 and t.b_funded =0 then t.outstanding else 0 end) as NFB_MR_Outstanding
    ----------------------Undisbursed
    , (case when f.class_id = 1 and t.b_funded = 1 then nvl((t.ua_limit_ccy*t.ccy_cf),0) else 0 end) as Advances_Undisbursed
    , (case when f.class_id = 4 and t.b_funded = 1 then nvl((t.ua_limit_ccy*t.ccy_cf),0) else 0 end) as Investments_Undisbursed
    , (case when f.class_id = 3 and t.b_funded = 0 then nvl((t.ua_limit_ccy*t.ccy_cf),0) else 0 end) as NFB_NMR_Undisbursed
    , (case when (f.class_id = 2 and t.b_funded = 0) then nvl((t.ua_limit_ccy*t.ccy_cf),0) else 0 end) as NFB_MR_Undisbursed
    -----------------------Fund Based Security Value
    , nvl((select sum(s.security_value) from c2m_ls s, c2c_bk_secu b
    where t.limit_id=s.limit_id and b.bk_secu_id=s.bk_secu_id
    and b.ref_secu_id in ('D001','D007','D008','D009','D010')),0) as OWN_BANK_TD
    , nvl((select sum(s.security_value) from c2m_ls s, c2c_bk_secu b
    where t.limit_id=s.limit_id and b.bk_secu_id=s.bk_secu_id
    and b.ref_secu_id in ('D003')),0) as OWN_BANK_CURRENT_A_CS
    , nvl((select sum(s.security_value) from c2m_ls s, c2c_bk_secu b
    where t.limit_id=s.limit_id and b.bk_secu_id=s.bk_secu_id
    and b.ref_secu_id in ('D004')),0) as OWN_BANK_SAVING_A_CS
    , nvl((select sum(s.security_value) from c2m_ls s, c2c_bk_secu b
    where t.limit_id=s.limit_id and b.bk_secu_id=s.bk_secu_id
    and b.ref_secu_id in ('D002')),0) as OWN_BANK_RD
    , nvl((select sum(s.security_value) from c2m_ls s, c2c_bk_secu b
    where t.limit_id=s.limit_id and b.bk_secu_id=s.bk_secu_id
    and b.ref_secu_id not in ('D001','D007','D008','D009','D010','LC','BG')),0) as OTHER_SECU
    -----------------------Non Fund Based Security Value
    , nvl((select sum(s.security_value) from c2m_ls s, c2c_bk_secu b
    where t.limit_id=s.limit_id and b.bk_secu_id=s.bk_secu_id
    and b.ref_secu_id in ('LC')),0) as Security_code_LC
    , nvl((select sum(s.security_value) from c2m_ls s, c2c_bk_secu b
    where t.limit_id=s.limit_id and b.bk_secu_id=s.bk_secu_id
    and b.ref_secu_id in ('BG')),0) as Security_code_BG
     
    --------------------------------------------------------------------------------
    , t.provisions
    , nvl((select sum(s.net_security_value) from c2m_ls s where s.limit_id=t.limit_id and t.b_crm = 0),0) as sec_alloc_after_srf
    , nvl((select sum(e.outstanding) from c2m_tb e where e.client_id=t.client_id),0) as trading_book_outstanding
    from c2m_limit t, c2m_client d, c2c_bk_facility f
    where d.client_id = t.client_id
    and t.bk_facility_id = f.bk_facility_id
    )t2
    )
    group by bank_cust_id --1
    , bank_company_id --2
    , client_id --3
    , cust_name --4
    , segment_id --5
    , seg_name --6
    , sector_id --7
    , sector_name --8
    , industry_id --9
    , industry_name --10
    , client_group_id --11
    , group_name --12
    , npa_status --13
    , restructured --14
    , acl_id --15
    , asset_class --16
    , sub_acl_id --17
    , sub_asset_class --18
    , b_retail, trading_book_outstanding;
    The output of the view is as follows:

    Client_ID cust_name... bank_company_id Bank_cust_id total_outstanding... trading_book_outstanding
    999009735 1002 ADITYA 10329249.93 RETS1 100000
    999009735 1002 ADITYA 10329249.93 RETS2 100000
    999009224 1000 500000 5074566764 MANPPURAM RETS3
    1000 999009224 MANPPURAM 1573753.67 CBS1 5074566764

    the desired output, I need is: the bank_conmpany_ID must be unique, even if there is a different Bank_cust_id, production is expected to be only 2 rows - one with 999009735 and 999009224

    How can I change the view?

    Please also read the manual on the aggregate functions and the GROUP BY clause.

    K.

  • Deploy the Release version of the dictionary on the AIR

    People, Squiggly works well in debugging.  What should I do to deploy a release into the AIR?   I use the default AdobeSpellingConfig.xml.  And nothing complicated.  I must welcome the *.aff and *.dic on remote server and reference them?

    Thank you.  : ]

    If you don't mind, could mark this as answer?  Thank you.

    -Bruce, Adobe

  • BlackBerry Smartphones unable to synchronize with Outlook after the release of 6.0 Bundle 3084

    Just updated software Bundle 3084 6.0 and get an error message of synchronization on a record that is not in my outlook or my BB.  I uninstalled and reinstalled and rebooted my computer and BB many times.  Nothing works!

    Please advise on a solution.

    Phone = BB Bold 9650

    The record that was the end of the synchronization has been a recurring event to Outlook.  Although the error did a "precise date", I had to delete the entire series and re-sync.  Problem solved.

    Woo hoo!

Maybe you are looking for

  • How to stream stereo audio left side clip?

    Hello I use audio of an old clip where the audio is way out of balance to the left. In old FCP, I think I could put the saucepan to 01 and he got out stereo. How can I get audio in FCPX? The best Elmer

  • HP 15-P157sa: (manual) screen replacement

    Hi all My son broke the screen on her brand new HP laptop (4 weeks old). In the United Kingdom, he has a 15-p157sa product name and a product of K7Q17EA number. The screen is described as 39.6 cm (15.6 ") diagonal HD BrightView - backlight WLED (1366

  • I have the sony reader. where can I go down load to purchase books

    How to use my sony down drive load and purchase of books

  • Parental controls does not properly

    Parameters of OpenDNS does not. My wireless n300 router wnr2000 v3 does not block the sites according to the parameters of opendns more. He worked for some time then it has recently stopped working. Its value at any time so it's not a time issue. Som

  • Security Center doesn't recognizize Avast 5.0 AV

    Hello I'm using Vista Home Premium 64 SP2.I am also long-term user of Avast AV, for Win98SE and W2k. After I updated Avast 4.8 to 5.0 a few months ago.Vista Security Center has ceased to recognize Avast installed AV solution. What is best to fix this