Don't know why it's disabled. Reinstall?Export to BPC button is disabled. How to enable it, please?
You have Settings -> Public Mode unchecked.Same thing. Its already disabled
No, you're not the only one. Several people who use Slopey's BPC are saying they're getting coordinates instead of system names in that.Sorry to double post but am I the only one with the coordinates issue?
In the temporary directory pointed to by %TMP%. Or programmatically System.IO.Path.GetTempPath() I think.when EliteOCRcmd showing an error on processing, it reports to look into the EliteOCR.log file. I can't find it, where it is located?
In the temporary directory pointed to by %TMP%. Or programmatically System.IO.Path.GetTempPath() I think.
Incidentally, why are people still using EliteOCR? I believe that the problems with the API not returning data at some stations is now fixed.
From 5fdf7b1ad5d099fd3a8240e13c8d73a7b39c6198 Mon Sep 17 00:00:00 2001
From: Bernd Gollesch <bgollesch@speed.at>
Date: Sat, 18 Jun 2016 18:39:19 +0200
Subject: [PATCH] find systemname in old or new format
---
customqlistwidgetitem.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/customqlistwidgetitem.py b/customqlistwidgetitem.py
index dd50671..93aafe8 100644
--- a/customqlistwidgetitem.py
+++ b/customqlistwidgetitem.py
@@ -180,7 +180,7 @@ class CustomQListWidgetItem(QListWidgetItem):
matchfile = "^netLog."+y+m+d
matchscreen = "^{"+hour+":"+minute+":..}"
matchsystem = "^{[\S]*}\sSystem:"
- findname = "[(].+?[)]"
+ findname = '(System:)(\d+?[(]|")(.+?)([)]|")'
candidates = []
for file in loglist:
if re.match(matchfile, file):
@@ -198,7 +198,7 @@ class CustomQListWidgetItem(QListWidgetItem):
if match:
self.log_file = file
self.search_time = (hour, minute)
- return match.group(0).strip("(").strip(")")
+ return match.group(3)
else:
if re.match(matchscreen, line):
screenshotfound = True
--
1.9.4.msysgit.1
Which I can totally relate to. What FD should have done was make the app things use a generated key instead that serves to allow access to one's data and only the data.That are good news, but some users don't like to give their login data away.
Try taking the screenshot and doing the transfer, then check the dimensions. It should be either 1280x720 or 1920x1080. If it's the former, it probably won't work.Quick question...
If I take a screen shot while playing the game on my Xbox, save to my one drive; will the image quality be good enough so I can grab it from the drive on my pc and analyse it?
In the temporary directory pointed to by %TMP%. Or programmatically System.IO.Path.GetTempPath() I think.
Incidentally, why are people still using EliteOCR? I believe that the problem with the API not returning data at some stations is now fixed.