Using wxWidgets for Acrobat on MAC

Hi All,
I have created Non-unicode static-release libray for wxWidgets 2.8.12 (MAC), I were able to build the acrobat plugin and load it successfully in Acrobat X.
When I try to open my dialog it always crashes. 
Below is the crash log.
Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
0   com.iceindia.ImposalPI            0x18bc5871 wxCriticalSection::Enter() + 17
1   com.iceindia.ImposalPI            0x18caab33 wxEvtHandler::AddPendingEvent(wxEvent&) + 115
2   com.iceindia.ImposalPI            0x18d2ef16 wxWindow::Create(wxWindow*, int, wxPoint const&, wxSize const&, long, wxString const&) + 358
3   com.iceindia.ImposalPI            0x18dc409c wxPanel::Create(wxWindow*, int, wxPoint const&, wxSize const&, long, wxString const&) + 60
4   com.iceindia.ImposalPI            0x18c1c3ad wxPanel::wxPanel(wxWindow*, int, wxPoint const&, wxSize const&, long, wxString const&) + 135 (panelg.h:57)
5   com.iceindia.ImposalPI            0x18c19bbc MyFrame::MyFrame(wxString const&, wxPoint const&, wxSize const&, long) + 722
I cheked wxSample projects and these works fine, So I assuemed the builted library has no issue. Is there any thing I need to update in XCODE setting or in Acrobat ?
Please help me out...
Regards,
Praveen

Thanks for reply...
I checked with wxWidgets sample. The plugin is getting built without error but when I load it in Acrobat X, The respective menus are not getting added, I dont know why? I tried with other samples which doens't uses wxWidgets these loads fine.
Just to provide more information, When I build my pluign the wxWidgets lib and tried to open wx dialog from my menus it always crash at wxStockGDI::GetFont (but wxWidgets sample just work fine) I updated defination for GetFont in "src/mac/carbon/settings.cpp" as below
wxFont wxSystemSettingsNative::GetFont(wxSystemFont index) {
    return wxFont(12, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL,
wxFONTWEIGHT_NORMAL); }
After modifying and rebuilding wxWidget library I was able to see wxMessageBox alert, but after that it crashes when I create panel object, as I reported in my earlier post.
Please let me know, Do I need to start from somewhere else?

Similar Messages

  • Using iWeb for non dot-mac sites

    Hi all,
    I own a number of domains that I'd like to use iWeb on. Am I able to utilize iWeb for a non .mac domain, or do I need to use something like Dreamweaver?
    Many thanks.
    -Hugh

    No, in fact I have a sneaky suspicion that not using dot-mac sites will eliminate a lot of problems other people have. You will also lose some of the effects like the nicer slideshow etc.
    I have never used dot-mac and never encountered any of the uploading/publishing problems that are so often mentioned on this forum.
    Here is what you do:
    After editing your website you choose :Publish to a folder.
    This lets you choose a location on your hardrive into which all the necessary files will be compiled/rendered. In this folder you will find an htlm file plus a folder with the necessary files for easch of your pages.. This publishing is done lightning fasy pecause it is done locallly and not trhough your internetconnection like when you published to dot-mac. Also post-editing is easy and hassle free.
    For editing and uploading my website I use "Transmit" but there are lots of other applications like "Fetch"
    What to upload?
    Well I believe the jury is still out on this.
    I just upload the contents of the published folder and that works for me. Other publish the whole folder plus the dummy "Index file" that is generated outside that folder. You will heve to find out for your self.
    If any changes or editing has to be done afterwards, I republish and then just upload the altered files.
    There is one more thing I do, and I believe others don't. I keep my domain file in the same folder where I keep the Published folder.
    E.g. there is a festival website, so I have a folder "Festival" in which I keep the domains file, and the published "Festival website" folder.
    This way it is easy to keep various different websites.
    When you want to edit one of them, go to that folder and double click the domains file, this will start iWeb with the right website for you to edit.
    Really very easy.
    Harry

  • Easy-to-use arpeggiator for Garageband on Mac Os X?

    I love the Arpeggiator in Garageband for iPad. I haven't been able to find anything similar for Garageband on Mac Os X. Does it exist? Is there an add-on that one can install? Can anyone help?

    no

  • Using wxWidgets for plugin filter on mac os X

    Hi.
    I'm developing a photoshop filter plugin for Mac OS X with XCode.
    And i have a problem with dialogs. Dialogh creates correctly only first time, than dialogs creates without redrawing (it takes input, but main area of dialog is whiteness)
    My source code here:
    #include "Dissolve.h"
    #include "Dialog.h"
    #include "About.h"
    #include "DissolveScripting.h"
    #include "FilterBigDocument.h"
    bool started = false;
    FilterRecord *gFilterRecord = NULL;
    int32 *gDataHandle = NULL;
    int16 *gResult = NULL;
    SPBasicSuite * sSPBasic = NULL;
    Data *gData = NULL;
    Parameters *gParams = NULL;
    class wxDLLApp : public wxApp
    public:
    AboutDialog *dlgAbout;
    public:
    bool OnInit(){
    wxMessageBox(_T("wxDLLApp::OnInit()"));
    dlgAbout = new AboutDialog(NULL, wxID_ANY, _T("About"),wxPoint(200,200), wxSize(446,150), wxSTAY_ON_TOP|wxCLOSE_BOX);
    dlgAbout->ShowModal();
    return true;
    int OnExit(){
    wxMessageBox(_T("wxDLLApp::OnExit()"));
    dlgAbout->Destroy();
    delete dlgAbout;
    return 0;
    DECLARE_EVENT_TABLE()
    //IMPLEMENT_APP_NO_MAIN(wxDLLApp)
    BEGIN_EVENT_TABLE(wxDLLApp, wxApp)
    END_EVENT_TABLE()
    wxPoint offscreenPoint(-5000,-5000);
    void DoAbout(void);
    void DoParameters(void);
    void DoPrepare(void);
    void DoStart(void);
    void DoContinue(void);
    void DoFinish(void);
    DLLExport MACPASCAL void PluginMain(const int16 selector,
    void * filterRecord,
    int32 * data,
    int16 * result)
    gFilterRecord = (FilterRecordPtr)filterRecord;
    gDataHandle = data;
    gResult = result;
    switch (selector)
    case filterSelectorAbout:
    DoAbout();
    break;
    case filterSelectorParameters:
    DoParameters();
    break;
    case filterSelectorPrepare:
    DoPrepare();
    break;
    case filterSelectorStart:
    DoStart();
    break;
    case filterSelectorContinue:
    DoContinue();
    break;
    case filterSelectorFinish:
    DoFinish();
    break;
    default:
    break;
    void DoAbout(void){
    wxDLLApp *pMyApp = new wxDLLApp;
    wxApp::SetInstance(pMyApp);
    int argc = 0;
    char **argv = NULL;
    wxEntryStart(argc, argv);
    wxTheApp->CallOnInit();
    pMyApp->OnExit();
    wxEntryCleanup();
    void DoParameters(void){
    void DoPrepare(void){
    void DoStart(void){
    void DoContinue(void){
    void DoFinish(void){

    You need the Photoshop SDK forum.

  • Can i use iCloud for connecting a mac mini with a macbook?

    I want to know if the connection between mac mini and a macbook is possible.
    Or do i have to use an i phone as well?

    Welcome to the Apple Community.
    You can sync calendars, contacts and mail between computers.
    Documents requires mobile versions of iWork to work, but If you want to upload documents that aren't for use with iOS devices this User Tip might be of interest.

  • Using tv for monitor with Mac mini

    Using my 46 inche sharp as my screen for Mac mini. But sitting on couch it is hard to see things on the screen. Is there a setting to change the size view?

    Change to a different progressive (p) resolution on Apple menu -> System Preferences -> Displays.  The higher the (p) value the smaller the text.  Use the zoom functions on Apple menu -> System Preferences -> Universal Access if you want to maintain the resolution and temporarily zoom on items to make them readable.

  • Handling 3d objects using JavaScript for Acrobat 3D Annotations API

    I am trying to learn how to handle 3d objects with this manual: http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_3d_api_reference.pdf
    When I execute some code, for example,
    myTimeHandler= new TimeEventHandler();
    myTimeHandler.onEvent= function( event )
    console.print( "Current simulation time is:" + event.time );
    console.print( " second(s)" );
    runtime.addEventHandler( myTimeHandler );
    I get an error like this:
    TimeEventHandler is not defined
    Why?
    P.S. I have 3d object in the document, and can get it with function getAnnots3D.

    You have to run the code in the context of the 3D annotation (by attaching the script to the annotation's properties panel, or by right-clicking the active 3D scene and choosing "run a javascript". You cannot run it in the console.

  • Using ALT for eyedropper on MAC

    Using Flash in Windows I can use the ALT key to temporarily switch to the Eyedropper tool when I am using the Brush or the Paint Bucket tools. How can I do this using Flash on a Mac?
    -Mike

    Read:
    http://www.macworld.com/article/1164817/the_best_way_to_run_windows_on_your_mac. html

  • Hello i want re-install acrobat 7 mac (CS2 bundle) i download the CS2 without activation and i t work but for acrobat i find only the PC version link.

    hello i want re-install acrobat 7 mac (CS2 bundle) i download the CS2 without activation and it work but for acrobat 7 i find only the PC version link.

    Yes but my customer have an old MacPro on 10.5.
    after hard disk replacement i want re-install CS2 with AC7 but its inposible to use original cs2 disk and serial  because the autenfication server is closed.
    I find a official link to download the CS2 without activation but there is no link for acrobat 7 mac
    Téléchargement des produits CS2 et d’Acrobat 7
    And the new CS2 number and the old 'customer license' not work
    My customer is not ready to change his machine and all software.

  • Azure SDK for Java on Mac/Linux

    I need to develop a part (communication with Service Bus) of a solution in Java (normally I use C# for development) on Mac/Linux. Can I just use the microsoft-windowsazure-api-0.4.6.jar file of the Azure SDK for Mac/Linux in my project, because I don't
    use Maven?
    Thanks.
    Guy

    When trying out some code using the Windows Azure SDK for Java (on a Mac) obviously just adding the jar to my project and adding it to my build path isn't just enough. I get error messages such as:
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
    at com.microsoft.windowsazure.services.core.Configuration.<clinit>(Configuration.java:48)
    at com.microsoft.windowsazure.services.serviceBus.ServiceBusConfiguration.configureWithWrapAuthentication(ServiceBusConfiguration.java:88)
    at xx.yyy.zzzz.aaaaa.ServiceBusClient.<init>(ServiceBusClient.java:20)
    at xx.yyy.zzzz.aaaaa.Main.main(Main.java:7)
    Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory
    at java.net.URLClassLoader$1.run(URLClassLoader.java:372)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:361)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:360)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    ... 4 more
    When clicking e.g. on Configuration.java:48 I get: Source not found.
    The JAR file microsoft-windowsazure-api-0.4.6.jar has no source attachment.
    What am I missing. Thanks for your help.

  • Using Windows Acrobat X as an Upgrade for Acrobat Pro XI for Mac

    Would Acrobat Standard X key for PC work as an upgrade for Acrobat Pro XI for Mac?

    Hi ,
    Adobe Acrobat 11 STD is not available for MAC i.e you can not do upgrade of adobe acrobat 10 std windows to adobe acrobat 11 std for mac

  • I am using CC adobe Acrobat to combine multiple pdfs and add page numbers. Mac users can no longer read the page numbers but pc users can.

    I am using CC adobe Acrobat to combine multiple pdfs and add page numbers. As of about 2 weeks ago the mac users can no longer read the page numbers they get a font error message and see only -- where the page information should be. The pc users do not have this same problem. When I replace our regular font (URW Grotesk) with a system font (Verdana) everyone is able to read the page numbers. This is a new issues, I have been creating these documents in the same way for years without a problem. I have been on hold and on and off calls for the last two hours, I keep getting hung up on once I find someone in adobe support to talk to!

    Hi KnoopL,
    Are the Mac users using Preview to view the pdfs or Adobe Reader?
    Regards,
    Rave

  • Using Acrobat XI MAC, unable to create Word file from PDF. Tried a simple PDF as well as a complex file. Neither can be created.

    Using Acrobat XI mac. Why can I not create a Word file from a PDF?  Tried some remedies offered online, i.e. convert to PDF X4:2008 then try to convert to the Word file. No go. Advise.

    Hello,
    I have tried 3 PDFs: one with only text -  created in Illustrator(CS5)  and saved as a PDF default, and the second which was a complex form of text and scanned images created in QuarkXpress and saved as a PDF for print purposes. The third file was a simple PDF offered online to solve problem.
    Each attempt was to create a Word file. Each received the same error message: Save as failed to process this document. No file was created.
    Thank you in advance.

  • "Catalog" plug in for acrobat for mac?

    Where do I find this plugin for Acrobat 9.5.3 for mac?  allows me to catalog and search all my pdfs.  peter

    Catalog is pre-installed with Acrobat 9 Pro. Use the menu - Advanced->Document Processing->Full Text Index with Catalog

  • FIPS 140-2 encryption for Acrobat 9 Pro on Mac?

    I wonder if anyone can help? I need to send documents using the FIPS 140-2 standard. Is this possible on Mac I read somewhere that it isn't!! I don't want to buy another piece of software (i.e. PGP). Any suggestions? Needs to be fairly step by step help.
    Many thanks.
    RuralTim

    FIPS for Acrobat is indeed a Windows only feature.
    see page 112 of this pdf: http://www.adobe.com/support/downloads/detail.jsp?ftpID=3993&promoid=DTEHS
    Can only suggest to setup a vm image of windows and download a trial of either Acrobat Pro 9 or APEX for inwdows and do it there.

Maybe you are looking for

  • I spilled a jar of water on my macbook

    Okay. So I know there are a thousand posts about this but I cannot seem to find one that describes this situation. I spilled a large glass of water on my macbook keyboard. After just staring in absolute shock for a second or two the screen turned int

  • Generation of tree like GUI

    Hey guys, I need to create a GUI which looks something like the left side content section of this webpage. If I click on the + sign I can see more topics that are there in that items. http://publib.boulder.ibm.com/infocenter/wmbhelp/v6r0m0/index.jsp?

  • Adobe Exchange panel doesn't appear in Dreamweaver CC

    I've joined CC and I'm using Dreamweaver, I've also tried to download and install Adobe Exchange panel without success - I can see it in extension manager but the panel doesn't appear in Dreamweaver.  I'm beginning to regret ever signing up for CC as

  • Customer information by salesperson

    Hi Freinds, is there any standard report that will show customer information by salesperson. Customer master report where we can see the salesman assgined to customer Sales Report by sales person I know few standard reports but which will not help in

  • Finding the hwnd of a listbox

    I am using a Call Library Function Node to start another program. I have a listbox on the front panel and I need to find the hwnd that corresponds to the listbox in order to send debug messages from the other program to LabVIEW. I would appreciate an