Search found 2435 matches
- Fri May 09, 2025 2:00 am
- Forum: PDF-XChange Editor
- Topic: In Japanese "Edit Action List" dialog, item name and value are wrongly separated or there is an extra colon at the end
- Replies: 7
- Views: 1216
Re: In Japanese "Edit Action List" dialog, item name and value are wrongly separated or there is an extra colon at the e
Hi rakunavi. Thanks for the clear report and suggestions. There might be another solution that may prevent this problem from occuring forever and for any language/translation. Instead of using existing problematic strings we may add new strings that contain only 'pure' labels, without ':', '%1', '%2...
- Tue May 06, 2025 8:38 pm
- Forum: PDF-XChange Editor
- Topic: [build 396] In Crop Pages dialog, preview screen is significantly corrupted when dialog size is changed from the default
- Replies: 4
- Views: 610
Re: [build 396] In Crop Pages dialog, preview screen is significantly corrupted when dialog size is changed from the def
Hello, rakunavi. According to "board attachment quota has been reached" issue. As Dan said - we tried to solve this problem. But if you experience something similar in the future - please let us know about it. We appreciate the help you give us in improving our products and we would not li...
- Wed Apr 23, 2025 12:08 am
- Forum: PDF-XChange Core API SDK
- Topic: Matrix_Rotate API
- Replies: 3
- Views: 1580
Re: Matrix_Rotate API
Hi Aleksand, Please try this: int calcPageDrawMatrix(IPXC_Page* pPage, IMathHelper* pMH, const RECT& ir, double advRotation, PXC_Matrix& dm) { int iw = ir.right - ir.left; int ih = ir.bottom - ir.top; PXC_Matrix pm; // page-matrix pPage->GetMatrix(PXC_BoxType::PBox_ViewBox, &pm); if (adv...
- Thu Apr 17, 2025 11:33 pm
- Forum: PDF-XChange Editor
- Topic: JavaScript "this.dirty = false; this.closeDoc(false); app.openDoc(this.path);" causes PDF-XCE to crash at a high rate SOLVED
- Replies: 12
- Views: 1724
Re: JavaScript "this.dirty = false; this.closeDoc(false); app.openDoc(this.path);" causes PDF-XCE to crash at a high rat SOLVED
The issue with the possible crash with using the "this.closeDoc()" inside the link's JS-action - it will be fixed in the next upcoming release.
Thanks for the report.
Thanks for the report.
- Wed Apr 09, 2025 2:02 am
- Forum: PDF-XChange Editor
- Topic: Autorecovery not working. Where is recovery information saved?
- Replies: 66
- Views: 31804
Re: Autorecovery not working. Where is recovery information saved?
Hi David.
There may be one known, simple, but annoying bug: the Document Recovery pane does not load existing recovery data until you open any document. Can you confirm whether you are experiencing this issue or another one?
This bug will be fixed in the upcoming build, by the way...
Cheers.
There may be one known, simple, but annoying bug: the Document Recovery pane does not load existing recovery data until you open any document. Can you confirm whether you are experiencing this issue or another one?
This bug will be fixed in the upcoming build, by the way...
Cheers.
- Mon Apr 07, 2025 8:14 pm
- Forum: PDF-XChange Editor
- Topic: Margins won't save
- Replies: 5
- Views: 970
Re: Margins won't save
Hi Felicia.
In the upcoming build, we will solve the problem with reducing margins.
Cheers.
In the upcoming build, we will solve the problem with reducing margins.
Cheers.
- Tue Mar 25, 2025 12:40 am
- Forum: PDF-XChange Editor SDK
- Topic: IPXV_PagesView::ShowInfoTip displays behind markup annotation's popup note SOLVED
- Replies: 6
- Views: 1985
Re: IPXV_PagesView::ShowInfoTip displays behind markup annotation's popup note SOLVED
It occurrs because after import of comments the PagesView refreshes all comment popups, by recreating all of them and putting them on the top in z-order. This refresh is asynchronous, so you may see that effect with InfoTip, which technically shows before the asynchronous update of popups. You may t...
- Thu Mar 13, 2025 7:49 pm
- Forum: PDF-XChange Editor SDK
- Topic: IPXV_PagesView::ShowInfoTip displays behind markup annotation's popup note SOLVED
- Replies: 6
- Views: 1985
Re: IPXV_PagesView::ShowInfoTip displays behind markup annotation's popup note SOLVED
Hi Zarko.
I cannot reproduce it...
I cannot reproduce it...
- Fri Mar 07, 2025 2:01 am
- Forum: PDF-XChange Core API SDK
- Topic: Need help integrating Core API to Excel VBA Application to combine PDF SOLVED
- Replies: 11
- Views: 18208
Re: Need help integrating Core API to Excel VBA Application to combine PDF SOLVED
Unfortunately, I'm not familiar with VBA in Excel, but the main idea can be to make the global macro, not per workbook. This macro may have this (pseudocode): public PXC_Inst pxcInst = null; // global PXC_Inst object, just one per app usePXC(args) { if (pxcInst == null) { pxcInst = new PXC_Inst; if ...
- Wed Mar 05, 2025 10:51 pm
- Forum: PDF-XChange Editor SDK
- Topic: cmd.tool.hand.selTextImages on or off ? SOLVED
- Replies: 5
- Views: 1483
Re: cmd.tool.hand.selTextImages on or off ? SOLVED
Try this: { pxvInst.Settings['Tools.Hand.SelTextAndImages'].v = bNewVal; } pxvInst.UpdateProps(true, true); // to update the Properties pane forcedly (necessary when Hand tool is active) uiInst.CmdManager.UpdateCmdItems(UIX_CmdItemUpdate_State, uiInst.Str2ID("cmd.tool.hand.selTextImages"));
- Wed Mar 05, 2025 10:10 pm
- Forum: PDF-XChange Editor SDK
- Topic: PDFXEditCore.x86.dll Error when distributed and run on client
- Replies: 7
- Views: 1252
Re: PDFXEditCore.x86.dll Error when distributed and run on client
We found reasons why it doesn't work. 1. You need to have all files in one folder together: image.png - both manifests, your exe, editor-dll, and editor's Resources.dat file too. 2. You need to specify the app's external manifest in project settings: image(1).png 3. In manifest for editor-dll you ne...
- Tue Mar 04, 2025 3:36 am
- Forum: PDF-XChange Editor SDK
- Topic: cmd.tool.hand.selTextImages on or off ? SOLVED
- Replies: 5
- Views: 1483
Re: cmd.tool.hand.selTextImages on or off ? SOLVED
Try this:
Code: Select all
bool bHandToolCanSelTextAndImages = Inst.Settings["Tools.Hand.SelTextAndImages"].v;
- Tue Mar 04, 2025 3:32 am
- Forum: PDF-XChange Editor SDK
- Topic: Upgrade to 10.5.2.395 errors
- Replies: 4
- Views: 1280
Re: Upgrade to 10.5.2.395 errors
Hi Simon.
Just made a simple and fresh VB project to test it, but seems all looks good...
Attached this project here:
HTH.
Just made a simple and fresh VB project to test it, but seems all looks good...
Attached this project here:
HTH.
- Thu Feb 20, 2025 3:04 am
- Forum: PDF-XChange Editor
- Topic: PDF Contains JS: How to "Untrust" once "Trust this document Always"? SOLVED
- Replies: 6
- Views: 1523
Re: PDF Contains JS: How to "Untrust" once "Trust this document Always"? SOLVED
There are end-user's personal security preferences for feature-per-document level. At the moment we do not have plans to show them openly in UI.
- Thu Feb 20, 2025 2:38 am
- Forum: PDF-XChange Editor SDK
- Topic: CreateOpenDocParams - how to disable JavaScript ?
- Replies: 2
- Views: 1456
Re: CreateOpenDocParams - how to disable JavaScript ?
You may try to handle the 'e.document.beforeRunAction' event from the doc you are opening: private void OnEvent(int id, IEvent e, object from) { if (id == id_e_document_beforeRunAction) { IPXV_DocActionEvent de = (IPXV_DocActionEvent)e; if (de != null && de.TriggerClass == PXV_ActionTriggerC...
- Thu Feb 20, 2025 2:05 am
- Forum: PDF-XChange Editor SDK
- Topic: IPXV_PagesView - check if enough width space to SetZoom 100% ? SOLVED
- Replies: 3
- Views: 4209
Re: IPXV_PagesView - check if enough width space to SetZoom 100% ? SOLVED
Your pseudo-code slightly improved:
HTH
Code: Select all
auto L = PagesView.Layout;
L.LockUpdates();
L.SetZoom(PXV_ZoomMode_FitWidth, 0);
if (L.ZoomLevel > 100)
L.SetZoom(PXV_ZoomMode_Percent, 100);
L.UnlockUpdates();
- Thu Feb 20, 2025 1:40 am
- Forum: PDF-XChange Editor SDK
- Topic: Document's tab (IUIX_LayoutItem) Title Suffix, Preffix, Icon ... SOLVED
- Replies: 3
- Views: 1485
Re: Document's tab (IUIX_LayoutItem) Title Suffix, Preffix, Icon ... SOLVED
Hi Zarko. TitlePrefixMixColor/TitleSuffixMixColor - you need to use there the RGBA color: uint RGBA(byte r, byte g, byte b, byte a) { return (uint)(r) | (((uint)g) << 8) | (((uint)b) << 16) | (((uint)a) << 24); } so please specify the alpha there from [0..255] and the final color will be calculated ...
- Thu Feb 20, 2025 1:08 am
- Forum: PDF-XChange Editor SDK
- Topic: Setting Themes
- Replies: 1
- Views: 1575
Re: Setting Themes
Hi RMan. Your workaround will work well. Because the main idea is: that when you have specified something in Colors/Fonts/Backgrounds inside the CustomUI section of parameters then the Editor will interpret this as "Custom" theme, which is based on theme specified in "CustomUI.Theme&q...
- Fri Jan 24, 2025 12:38 am
- Forum: PDF-XChange Editor SDK
- Topic: v10.5.0.393 - problems in IPXC_Document.WriteToFile if using custom IProgessMon SOLVED
- Replies: 6
- Views: 1377
Re: v10.5.0.393 - problems in IPXC_Document.WriteToFile if using custom IProgessMon SOLVED
Perhaps we found the reason for the trouble and fixed it. The fix will be in the upcoming build.
- Thu Jan 23, 2025 11:12 pm
- Forum: PDF-XChange Editor SDK
- Topic: Undock / dock a pane from code (+ change size) SOLVED
- Replies: 3
- Views: 1429
Re: Undock / dock a pane from code (+ change size) SOLVED
1. Check if a pane is docked. (note: interested only in history, recover and alike - so not specific document related panes). IUXC_LayoutItem getObjLI(IUXC_Obj o) { IUXC_LayoutItem LI; do { if (o == null) break; LI = o.LI; if (LI != null) break; o = o.Parent; } while (true); return LI; } IUXC_Layou...
- Thu Jan 23, 2025 10:27 pm
- Forum: PDF-XChange Editor SDK
- Topic: v10.5.0.393 - problems in IPXC_Document.WriteToFile if using custom IProgessMon SOLVED
- Replies: 6
- Views: 1377
Re: v10.5.0.393 - problems in IPXC_Document.WriteToFile if using custom IProgessMon SOLVED
I checked the code around the WriteToFile and cannot see any potential reason for such problem. Can you provide a simple example to reproduce it on our side?
- Thu Jan 23, 2025 6:02 am
- Forum: PDF-XChange Editor
- Topic: JavaScript to save all documents (tabs) in window to one location
- Replies: 4
- Views: 799
Re: JavaScript to save all documents (tabs) in window to one location
It appears you are using an older version, as the current version shows which program locked the file and caused the AccessDenied error...
- Thu Jan 23, 2025 5:50 am
- Forum: PDF-XChange Editor
- Topic: JavaScript to save all documents (tabs) in window to one location
- Replies: 4
- Views: 799
Re: JavaScript to save all documents (tabs) in window to one location
You see, as previously mentioned (in other threads), sometimes "save all" works for "unsaved" opened documents, other times it doesn't, so this would really save some time. Do you mean this feature: image.png ? Does this one sometimes not work? If yes - can you explain how to re...
- Thu Jan 23, 2025 12:59 am
- Forum: PDF-XChange Editor
- Topic: [javascript] Doc.setPageBoxes() weird behavior? SOLVED
- Replies: 4
- Views: 1165
Re: [javascript] Doc.setPageBoxes() weird behavior? SOLVED
Hi Mathew.
All problems described will be fixed in the upcoming build. Thanks for the report.
Cheers.
All problems described will be fixed in the upcoming build. Thanks for the report.
Cheers.
- Wed Jan 22, 2025 3:21 am
- Forum: PDF-XChange Editor
- Topic: [FR] Keyboard shortcuts for javascript tools SOLVED
- Replies: 20
- Views: 3026
Re: [FR] Keyboard shortcuts for javascript tools SOLVED
Currently: - if you add cmd by JS with specified shortcut and then user customized shortcut for that cmd - the user's shortcut will be used then. - but exists another problem: again, you added the cmd by JS with shortcut, let's say "Ctrl+Shift+A" and then later the user specified *the same...
- Wed Jan 22, 2025 2:54 am
- Forum: PDF-XChange Editor
- Topic: Bookmark colors are wrong in latest versions
- Replies: 12
- Views: 1853
Re: Bookmark colors are wrong in latest versions
Soon we will add one option to solve this issue:
in context menu of Bookmarks pane...
in context menu of Bookmarks pane...
- Wed Jan 15, 2025 6:44 pm
- Forum: PDF-XChange Editor
- Topic: [FR] Keyboard shortcuts for javascript tools SOLVED
- Replies: 20
- Views: 3026
Re: [FR] Keyboard shortcuts for javascript tools SOLVED
JFYI: in Build 10.5.0.393 we added this:
So now you can specify the shortcut to JS-command directly in the script.
Here is sample script that shows how to add custom Tabs/Groups/Menus/Buttons to the Ribbon/Classic UI, with the custom shortcuts specified.
So now you can specify the shortcut to JS-command directly in the script.
Here is sample script that shows how to add custom Tabs/Groups/Menus/Buttons to the Ribbon/Classic UI, with the custom shortcuts specified.
- Tue Dec 10, 2024 3:26 am
- Forum: PDF-XChange Editor SDK
- Topic: FitR destination bottom vs top SOLVED
- Replies: 5
- Views: 1932
Re: FitR destination bottom vs top SOLVED
There is a bug definitely... 
Thanks for the report.

Thanks for the report.
- 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: 1273
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: 2587
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 SOLVED
- Replies: 20
- Views: 3026
Re: [FR] Keyboard shortcuts for javascript tools SOLVED
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 SOLVED
- Replies: 20
- Views: 3026
Re: [FR] Keyboard shortcuts for javascript tools SOLVED
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: 3073
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: 3073
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: 832
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: 4846
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: 869
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: 1449
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: 11
- Views: 4147
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: 2300
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: 2587
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: 2024
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: 3131
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: 2841
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: 6292
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: 5855
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: 5855
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: 5855
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: 796
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: 2696
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.