There is a bug definitely...
Thanks for the report.
Search found 2408 matches
- Tue Dec 10, 2024 3:26 am
- Forum: PDF-XChange Editor SDK
- Topic: FitR destination bottom vs top SOLVED
- Replies: 5
- Views: 218
- Mon Dec 09, 2024 8:56 pm
- Forum: PDF-XChange Editor SDK
- Topic: Clarification on Embedding Editor in a Custom Application with Interaction
- Replies: 3
- Views: 233
Re: Clarification on Embedding Editor in a Custom Application with Interaction
Hi jucass89. Drag-and-Drop Interaction: Users should be able to drag text snippets from the custom window and drop them into the PDF within the Editor. By default our Editor ActiveX Control prevents the dropping files on itself. But you can allow it, for example, in our FullDemo app, in the construc...
- Thu Dec 05, 2024 1:19 am
- Forum: PDF-XChange Editor SDK
- Topic: Custom handling cmd.search.start vs (e.g.) cmd.searchView.results.clear SOLVED
- Replies: 6
- Views: 677
Re: Custom handling cmd.search.start vs (e.g.) cmd.searchView.results.clear SOLVED
cmd.search.start - isn't present on toolbars/menus. But using customize you may assign shortcut to it and/or put it on any toobar.
cmd.searchView.results.clear is used inside the Search pane: in context menu of the window with search results and in the dropdown menu of the Options button.
cmd.searchView.results.clear is used inside the Search pane: in context menu of the window with search results and in the dropdown menu of the Options button.
- Fri Nov 22, 2024 2:50 am
- Forum: PDF-XChange Editor
- Topic: [FR] Keyboard shortcuts for javascript tools
- Replies: 14
- Views: 773
Re: [FR] Keyboard shortcuts for javascript tools
We may think about it... Looks like we can allow end-user customization for menu/toolbar items added via AppLevel scripts, but not for DocLevel scripts. So user will be able to reorder them on toolbars/menus and set custom shortcuts.
- Thu Nov 21, 2024 12:57 am
- Forum: PDF-XChange Editor
- Topic: [FR] Keyboard shortcuts for javascript tools
- Replies: 14
- Views: 773
Re: [FR] Keyboard shortcuts for javascript tools
Hi Mattew. I think the new cHotkey -parameter for app.addToolButton/app.addMenuItem will solve this problem, when it is available. And about saving menu/toolbar items added by JS between sessions: we do not save them currently. We only save changes the end-user makes, not by script or 3rd-party dev ...
- Wed Nov 20, 2024 6:13 am
- Forum: PDF-XChange Editor SDK
- Topic: How to "pause" visibility of DlgProgress? SOLVED
- Replies: 7
- Views: 1044
Re: How to "pause" visibility of DlgProgress? SOLVED
Hi Zarko. Theoretically, the possible way is: int id_DlgProgress = Inst.Str2ID("DlgProgress"); bool bNeedHideProgressDlg = false; .... OnEventMonitor(IUIX_Obj target, IUIX_Event* event) { if (bNeedHideProgressDlg) { if (event.Code == e_Visible) { if ((target.ID == id_DlgProgress) &&...
- Wed Nov 13, 2024 9:22 pm
- Forum: PDF-XChange Editor SDK
- Topic: How to "pause" visibility of DlgProgress? SOLVED
- Replies: 7
- Views: 1044
Re: How to "pause" visibility of DlgProgress? SOLVED
Our custom UI-event codes start from this value: UIX_EventCodes.e_First = (0x400 + 5432) - all codes less than this value are codes of standard windows messages. So, when your 799 is a decimal number, not in the hex form - it corresponds to WM_DWMNCRENDERINGCHANGED=0x031F, according to the WinUser.h...
- Mon Oct 28, 2024 11:02 pm
- Forum: PDF-XChange Editor
- Topic: Printer interface
- Replies: 6
- Views: 324
Re: Printer interface
Hi, danprentice. Just for testing - try to use the app: "c:\Program Files\Tracker Software\PDF Editor\PDFXEdit_NoPrintIsolation.exe" It is the same PDF-Change Editor application, except that it does the printing without a special sandbox, unlike the regular application. Note: before trying...
- Tue Oct 08, 2024 7:00 am
- Forum: PDF-XChange Editor
- Topic: Command to open a PDF in a new instance of PDF-XChange
- Replies: 20
- Views: 3793
Re: Command to open a PDF in a new instance of PDF-XChange
Hi All. In the new upcoming build you will be able to use a new command to open a blank frame window:
- Sat Oct 05, 2024 5:08 am
- Forum: PDF-XChange Editor
- Topic: Position of JavaScript menu added
- Replies: 4
- Views: 546
Re: Position of JavaScript menu added
In addition, to all JavaScript users: since 388 build we improved/extended the app.addMenuItem(), app.addSubMenu() and app.addToolButton() features. Here is sample script that shows how to add custom Tabs/Groups/Menus/Buttons to the Ribbon/Classic UI. The result of this script is: JSAddRibbonMenu.pn...
- Sat Oct 05, 2024 1:10 am
- Forum: PDF-XChange Editor
- Topic: Cant' drag to select multiple parent bookmarks from left edge SOLVED
- Replies: 6
- Views: 966
Re: Cant' drag to select multiple parent bookmarks from left edge SOLVED
Hi Loki.
Can you reproduce it with the latest 389 build. We cannot reproduce it using mouse, stylus or finger.
Cheers.
Can you reproduce it with the latest 389 build. We cannot reproduce it using mouse, stylus or finger.
Cheers.
- Fri Oct 04, 2024 6:42 pm
- Forum: PDF-XChange Editor
- Topic: [FR] Overlay pages in color
- Replies: 9
- Views: 2304
Re: [FR] Overlay pages in color
Hi Sir_Stig.
Cheers.
Can you explain this a little? Why do you need this as an engineer? Why only black->red? What about other colors?built in editor to default palette swap black to red
Cheers.
- Wed Oct 02, 2024 10:04 pm
- Forum: PDF-XChange Editor SDK
- Topic: Custom handling "Save [search] Results to a File"... SOLVED
- Replies: 4
- Views: 871
Re: Custom handling "Save [search] Results to a File"... SOLVED
May be too late, but... My idea for the moment, a complex one, would be to implement IPXV_SearchCallback and inject into every op_search.Options.Callback and then store the results (from OnNewEntry) into some private structure and keep it alive until next search... but I would then need help with a ...
- Wed Oct 02, 2024 9:29 pm
- Forum: PDF-XChange Editor SDK
- Topic: Custom handling cmd.search.start vs (e.g.) cmd.searchView.results.clear SOLVED
- Replies: 6
- Views: 677
Re: Custom handling cmd.search.start vs (e.g.) cmd.searchView.results.clear SOLVED
btn.startStop - is just a control, a simple button on the form. Why should it send the same notification in the same way as when you click the menu/toolbar item (cmd.search.start)? Items on toolbars/menus and buttons on forms are too different UI-substances to have identical notification-mechanism. ...
- Wed Oct 02, 2024 8:55 pm
- Forum: PDF-XChange Editor SDK
- Topic: e.searchView.newResults ? SOLVED
- Replies: 3
- Views: 782
Re: e.searchView.newResults ? SOLVED
Hi Zarko. e.searchView.newResults - notification about changes(adding new items, removing all) in search-results window inside the Search pane. pFrom: IPXV_SearchView nParam1: the internal unique ID of collection of search-results. Eash new search creates new collection with new ID; Param1==-1 - jus...
- Wed Oct 02, 2024 8:16 pm
- Forum: PDF-XChange Editor SDK
- Topic: pFrom in e.operBeforeExecute / op.search ? What executed op.search? SOLVED
- Replies: 4
- Views: 1737
Re: pFrom in e.operBeforeExecute / op.search ? What executed op.search? SOLVED
For events e.operBeforeExecute/e.operExecuted - the pFrom always points to the IOperation that will_be/was executed.
- Wed Oct 02, 2024 12:50 am
- Forum: PDF-XChange Editor
- Topic: 389 Crashiness?
- Replies: 31
- Views: 1345
Re: 389 Crashiness?
Hi PHK.
Can you provide us a sequence of steps that may increase the chance of reproducing that crash?
Thanks.
Can you provide us a sequence of steps that may increase the chance of reproducing that crash?
Thanks.
- Thu Sep 26, 2024 9:11 pm
- Forum: PDF-XChange Editor
- Topic: Import bookmark - Can't go to page destination
- Replies: 28
- Views: 4152
Re: Import bookmark - Can't go to page destination
It occurs in the latest 389 build, correct?
- Thu Sep 26, 2024 5:19 pm
- Forum: Touchscreen Devices
- Topic: Select Text Tool - Palm rejection issue SOLVED
- Replies: 21
- Views: 2363
Re: Select Text Tool - Palm rejection issue SOLVED
In the next build we will reduce the chance to get unintentional zoom when 2-finger scroll is started.Loki99 wrote: Scroll by two fingers changes page zoom unintentionally sometimes
- Thu Sep 26, 2024 12:03 am
- Forum: Touchscreen Devices
- Topic: Select Text Tool - Palm rejection issue SOLVED
- Replies: 21
- Views: 2363
Re: Select Text Tool - Palm rejection issue SOLVED
My issue here is that using the Select Text tool for drag to select a text area with stylus while scrolling the page with finger on touchscreen isn't possible anymore in build 389. Hold on... What if user has touch screen and has NO stylus and want to select text? So he naturally enabled the Select...
- Wed Sep 25, 2024 8:47 pm
- Forum: Touchscreen Devices
- Topic: Select Text Tool - Palm rejection issue SOLVED
- Replies: 21
- Views: 2363
Re: Select Text Tool - Palm rejection issue SOLVED
I see you have disabled 'Allow draw by finger touch' option. This is causing an issue, and it looks like a bug. We will try to solve it in the next build.
As a workaround, you may turn that option back (turned ON by default).
As a workaround, you may turn that option back (turned ON by default).
- Tue Sep 24, 2024 10:42 pm
- Forum: PDF-XChange Editor
- Topic: Current Tool De-/Selection Event or Property in Javascript
- Replies: 3
- Views: 489
Re: Current Tool De-/Selection Event or Property in Javascript
Hi Sebastian.
I'm afraid, but it seems there is no way to do it via JS only.
I guess it requires a plugin for the Editor.
Cheers.
I'm afraid, but it seems there is no way to do it via JS only.
I guess it requires a plugin for the Editor.
Cheers.
- Tue Sep 24, 2024 9:30 pm
- Forum: PDF-XChange Editor SDK
- Topic: Error [PXVLib]: Wrong thread
- Replies: 1
- Views: 1811
Re: Error [PXVLib]: Wrong thread
Hi khho.
Can you provide a simple example to reproduce that issue on our side?
Cheers.
Can you provide a simple example to reproduce that issue on our side?
Cheers.
- Tue Sep 24, 2024 8:50 pm
- Forum: PDF-XChange Editor
- Topic: Import bookmark - Can't go to page destination
- Replies: 28
- Views: 4152
Re: Import bookmark - Can't go to page destination
As a temporary solution, you can use DnD instead of Copy/Paste, especially for copying bookmarks between different documents.
It seems to work as you want...
It seems to work as you want...
- Tue Sep 24, 2024 2:27 am
- Forum: PDF-XChange Editor
- Topic: Import bookmark - Can't go to page destination
- Replies: 28
- Views: 4152
Re: Import bookmark - Can't go to page destination
We have fixed this bug in an upcoming build. Sorry for the inconvenience...
- Tue Sep 24, 2024 1:55 am
- Forum: PDF-XChange Editor
- Topic: Changing Font and Highlight colors of selected text
- Replies: 5
- Views: 2549
Re: Changing Font and Highlight colors of selected text
In the upcoming build, we made some improvements to increase the visibility of selected text on pages with dark backgrounds and light content.
- Tue Sep 17, 2024 2:58 am
- Forum: PDF-XChange Editor
- Topic: Crashing during OCR
- Replies: 7
- Views: 1846
Re: Crashing during OCR
Thanks for the information. Your document allowed us to reproduce this rare crash on our side (on page 6).
This issue will be fixed in the upcoming build, which will be very soon.
This issue will be fixed in the upcoming build, which will be very soon.
- Mon Sep 16, 2024 8:07 pm
- Forum: PDF-XChange Editor
- Topic: When opening a specific file in build 388 in a specific environment and opening Resize Pages dialog, application crashes SOLVED
- Replies: 5
- Views: 1767
Re: When opening a specific file in build 388 in a specific environment and opening Resize Pages dialog, application cra SOLVED
Hi All.
This crash will be fixed in the upcoming build, pretty soon.
Sorry for inconvenience...
This crash will be fixed in the upcoming build, pretty soon.
Sorry for inconvenience...
- Fri Sep 13, 2024 7:24 pm
- Forum: PDF-XChange Editor SDK
- Topic: cannot open a pdf file "Error [PXCLib]: Invalid value or value type."
- Replies: 7
- Views: 2665
Re: cannot open a pdf file "Error [PXCLib]: Invalid value or value type."
I created the blank doc with 16194 pages and then imported there your xcbkm file and tested it. Unfortunately I cannot reproduce any problem with such doc, using the latest build. I believe it is document related issue OR the older build you using - has a bug. Can you reproduce such problem with my ...
- Wed Sep 11, 2024 10:54 pm
- Forum: PDF-XChange Editor
- Topic: Mathew's PDF-XCE JavaScripts SOLVED
- Replies: 13
- Views: 7670
Re: Mathew's PDF-XCE JavaScripts SOLVED
Hi Guys. To all JavaScript users: in the latest build we improved/extended the app.addMenuItem(), app.addSubMenu() and app.addToolButton() features. Here is sample script that shows how to add custom Tabs/Groups/Menus/Buttons to the Ribbon/Classic UI. The result of this script is: image.png The feat...
- Thu Sep 05, 2024 6:48 pm
- Forum: PDF-XChange Editor SDK
- Topic: cannot open a pdf file "Error [PXCLib]: Invalid value or value type."
- Replies: 7
- Views: 2665
Re: cannot open a pdf file "Error [PXCLib]: Invalid value or value type."
Can you provide the file that you are experiencing a problem with? Or, at least, can you extract all bookmarks from that file to *.xcbkm file (via menu in Bookmarks pane) and provide it to us for investigation? Because it should not be a problem for our SDK to deal with the huge amount of bookmarks....
- Thu Sep 05, 2024 6:15 pm
- Forum: PDF-XChange Editor SDK
- Topic: How to retrieve the closing document
- Replies: 5
- Views: 2209
Re: How to retrieve the closing document
In your implementation of IEventHandler::OnEvent you need to use the pFrom argument. For e.document.beforeClose event you need to cast it to the IPXV_Document type...
- Mon Sep 02, 2024 7:27 pm
- Forum: PDF-XChange Editor SDK
- Topic: v362: IPXC_DocSrcInfo.IsVirtualPDF SOLVED
- Replies: 5
- Views: 3856
Re: v362: IPXC_DocSrcInfo.IsVirtualPDF SOLVED
Also you may use the proposed solution from viewtopic.php?t=43617 (about Doc.Info[...] indexed property)
- Mon Sep 02, 2024 7:23 pm
- Forum: PDF-XChange Core API SDK
- Topic: Maintain PDF properties by VBA
- Replies: 2
- Views: 6587
Re: Maintain PDF properties by VBA
Hi Roland.
With our Core API SDK you may try to use this way, to read/write the doc's props:
https://sdkhelp.pdf-xchange.com/view/PX ... ument_Info
HTH.
With our Core API SDK you may try to use this way, to read/write the doc's props:
https://sdkhelp.pdf-xchange.com/view/PX ... ument_Info
HTH.
- Wed Jul 17, 2024 2:13 am
- Forum: PDF-XChange Editor SDK
- Topic: Error [Pdf Structure Library]: Invalid object structure.
- Replies: 34
- Views: 5446
Re: Error [Pdf Structure Library]: Invalid object structure.
We couldn't reproduce your trouble on our side. We tested the latest 387 build in the new WinForm app, and everything looks good. There is attached such WinForm project: TestWinFormsApp.zip Please be sure that the latest version of PDFXEditCore.x64.dll module is registered in your system (387 build)...
- Thu Jul 11, 2024 5:14 am
- Forum: PDF-XChange Editor
- Topic: Display annotations in Content panel
- Replies: 3
- Views: 612
Re: Display annotations in Content panel
Hi Loki
In the near future we will add the tool to add/edit Screen comments.
Cheers.
In the near future we will add the tool to add/edit Screen comments.
Cheers.
- Wed Jul 03, 2024 4:48 am
- Forum: PDF-XChange Editor SDK
- Topic: Error [Pdf Structure Library]: Invalid object structure.
- Replies: 34
- Views: 5446
Re: Error [Pdf Structure Library]: Invalid object structure.
Hi khho, The interop-dlls aren't part of our SDK. They are just auxiliary components made by Visual Studio when we added the Editor ActiveX control to the .NET Example projects and build them. Your Visual Studio IDE should be able to create own interops in moment when you build your project with our...
- Fri Jun 21, 2024 12:49 am
- Forum: PDF-XChange Editor
- Topic: [javascript bug] app.addSubMenu() in ribbon UI SOLVED
- Replies: 6
- Views: 669
Re: [javascript bug] app.addSubMenu() in ribbon UI SOLVED
You are right, unfortunately... But there is controversial case because in the Ribbon UI we haven't a 'Tools' menu. We can restore the previous behavior but I believe there can be a better way. For example we can implement this: app.addSubMenu({ cName: "newTools", cUser: "New Sub-men...
- Thu Jun 20, 2024 6:41 pm
- Forum: PDF-XChange Editor
- Topic: When searching for text, don't open matching comments automatically
- Replies: 2
- Views: 333
Re: When searching for text, don't open matching comments automatically
Hi David. In the next release we will change it to the following behavior: 1. when the user changes the selection inside the list with search results using just navigation keys or by mouse clicking - it will not open the comment pop-ups even the text found inside the popup or reply. 2. but when the ...
- Thu Jun 20, 2024 5:39 pm
- Forum: PDF-XChange Editor SDK
- Topic: Error [Pdf Structure Library]: Invalid object structure.
- Replies: 34
- Views: 5446
Re: Error [Pdf Structure Library]: Invalid object structure.
We fixed this issue in 387. And yes, we do not include sdk-fixes in our end-user product build history.
- Tue Jun 18, 2024 4:47 am
- Forum: PDF-XChange Editor
- Topic: Sort Comments by Date/Time
- Replies: 10
- Views: 551
Re: Sort Comments by Date/Time
The new 387 build is available now.
- Sat Jun 15, 2024 6:10 am
- Forum: PDF-XChange Editor
- Topic: [javascript bug] app.addSubMenu() in ribbon UI SOLVED
- Replies: 6
- Views: 669
Re: [javascript bug] app.addSubMenu() in ribbon UI SOLVED
Hi Mathew.
It will be fixed soon. Thanks for help.
Cheers.
It will be fixed soon. Thanks for help.
Cheers.
- Fri Jun 14, 2024 4:16 am
- Forum: PDF-XChange Editor
- Topic: Black theme UI bug - Page numbering SOLVED
- Replies: 4
- Views: 1056
Re: Black theme UI bug - Page numbering SOLVED
All mentioned bugs will be fixed in the upcoming release. Thanks for report.
- Sat Jun 08, 2024 5:09 am
- Forum: PDF-XChange Editor
- Topic: In Japanese environment, when "Page 1" is specified for page numbering style in header feature, extra %[Pages] is added SOLVED
- Replies: 4
- Views: 1118
Re: In Japanese environment, when "Page 1" is specified for page numbering style in header feature, extra %[Pages] is ad SOLVED
Hi rakunavi.
This issue will be fixed in the upcoming build. Thanks for your help.
Best Regards,
Vasyl.
This issue will be fixed in the upcoming build. Thanks for your help.
Best Regards,
Vasyl.
- Sat Jun 08, 2024 5:06 am
- Forum: PDF-XChange Editor
- Topic: In build 386, when sorted by name in the Named Destinations pane, it may not be possible to delete named destination SOLVED
- Replies: 4
- Views: 1114
Re: In build 386, when sorted by name in the Named Destinations pane, it may not be possible to delete named destination SOLVED
Hi rakunavi.
I can confirm this issue will be fixed in the upcoming build. Thanks for your help.
Best Regards,
Vasyl.
I can confirm this issue will be fixed in the upcoming build. Thanks for your help.
Best Regards,
Vasyl.
- Thu May 30, 2024 9:12 pm
- Forum: Touchscreen Devices
- Topic: Touch keyboard not showing automatically on Windows 10
- Replies: 61
- Views: 38786
Re: Touch keyboard not showing automatically on Windows 10
Hi All. Please try this new portable version on your touch devices: https://files.tracker-software.support/s/iSt5KWWWc4J9SyN Also – the new option has been added to it (and to the next official version too): image.png By default it has 'Auto'. In case when Auto doesn’t work – you may try to use the ...
- Tue May 28, 2024 5:30 am
- Forum: PDF-XChange Editor
- Topic: Edit Text - Edit Text Elements icons are similar SOLVED
- Replies: 5
- Views: 1657
Re: Edit Text - Edit Text Elements icons are similar SOLVED
Seems you have selected 'Text Elements only' for the Edit Objects tool, here:
The Edit Objects tool icon displays the object type filter selected currently...
The Edit Objects tool icon displays the object type filter selected currently...
- Tue May 28, 2024 4:14 am
- Forum: OCR- For the PDF-XChange Editor and Viewer
- Topic: How to improve OCR performance
- Replies: 12
- Views: 9025
Re: How to improve OCR performance
Hi guys. Obviously, it would be great for us to reproduce on our side what you have. And while this issue is hardware- and document-related (very likely) - so please provide the test document at least, if you can... Note: the current official build is 10.3.0.386. If you are using an older version th...
- Tue May 21, 2024 7:56 pm
- Forum: Touchscreen Devices
- Topic: Improve Quick Tools UX for stylus SOLVED
- Replies: 2
- Views: 3308
Re: Improve Quick Tools UX for stylus SOLVED
We will improve it in the next build. Thanks for the suggestion.
- Tue May 21, 2024 5:56 am
- Forum: Touchscreen Devices
- Topic: Touch keyboard not showing automatically on Windows 10
- Replies: 61
- Views: 38786
Re: Touch keyboard not showing automatically on Windows 10
Hi All. We made some experimental fixes for the problem with auto-showing OnScreen keyboard on touchscreens. So in case, when you experiencing such trouble - please test the fixed portable Editor here: https://files.tracker-software.support/s/K2MH2Eyo8KRZE8m - and let us know if the problem persists...