Search found 13 matches
- Sat Aug 14, 2010 1:53 pm
- Forum: General Discussion
- Topic: Using MODI OCR to click on text
- Replies: 13
- Views: 28214
exceeded message limit, heres fix: VBSTART Function DoOCRGetWordNum(bitmapfile,strTargetWord) Dim miDoc Dim miLayout Dim miWords Dim miWord Dim miWordText Dim strText Dim numWords Dim numWord Dim numWordFound on error resume next Set miDoc = CreateObject("MODI.Document") miDoc.Create (bitmapfile) mi...
- Sat Aug 14, 2010 1:52 pm
- Forum: General Discussion
- Topic: Using MODI OCR to click on text
- Replies: 13
- Views: 28214
when I try to run it says: Wrong number of arguments orinvalid property assignment 'DoOCRGetWordNum' heres my code: (image is already captured) VBSTART Function DoOCRGetWordNum(bitmapfile,strTargetWord) Dim miDoc Dim miLayout Dim miWords Dim miWord Dim miWordText Dim strText Dim numWords Dim numWord...
- Wed Aug 11, 2010 10:24 am
- Forum: General Discussion
- Topic: Using MODI OCR to click on text
- Replies: 13
- Views: 28214
- Thu May 20, 2010 5:36 pm
- Forum: Beginners
- Topic: getting text location
- Replies: 20
- Views: 19036
- Thu May 20, 2010 3:03 pm
- Forum: Beginners
- Topic: getting text location
- Replies: 20
- Views: 19036
hi gale. I haven't quite understood your suggestion for the remembering problem. Can you elaborate? Using ocr would require me to know which word I'm looking for, and I don't. I want to get all the names of products on the webpage regardless of their name. As I said to adroege, I submit each name in...
- Thu May 20, 2010 4:39 am
- Forum: Beginners
- Topic: getting text location
- Replies: 20
- Views: 19036
- Wed May 19, 2010 7:54 pm
- Forum: Beginners
- Topic: getting text location
- Replies: 20
- Views: 19036
I don't think you fully understand my purpose. I need to deal with each product name seperately. I first copy the name, paste it in another webpage, get a result, and the result I paste in the "Price" field. Parsing the entire HTML and using regex won't help me because I need to know the location on...
- Wed May 19, 2010 5:37 pm
- Forum: Beginners
- Topic: getting text location
- Replies: 20
- Views: 19036
I'm trying to get the names of different products on a webpage. the page is like tiles of products as you would in see in a typical webstore. each "tile" looks like this: /////////////// /////////////// ////Picture/// /////////////// /////////////// Name of Product Price: Quantity: I need to get eac...
- Wed May 19, 2010 3:47 pm
- Forum: Beginners
- Topic: getting text location
- Replies: 20
- Views: 19036
- Wed May 19, 2010 2:14 pm
- Forum: Beginners
- Topic: getting text location
- Replies: 20
- Views: 19036
well my solution failed. I captured the text as an image and scanned the screen comparing it. the problem is that sometimes all of the results don't appear in the same screen and I need to page down the webpage and repeat the scanning in order to get all the matches. there is sometimes only a couple...
- Wed May 19, 2010 12:00 pm
- Forum: Beginners
- Topic: getting text location
- Replies: 20
- Views: 19036
well I've managed to solve the issue with image recognition, I only have 1 problem. I use findimagepos which then creates an array of matching coordinates. when I check a set of coordinates, like Xarr_1 and Yarr_1, I want to know if the next set after it, Xarr_2 and Yarr_2, have coordinates in them....
- Wed May 19, 2010 5:39 am
- Forum: Beginners
- Topic: getting text location
- Replies: 20
- Views: 19036
- Tue May 18, 2010 6:59 pm
- Forum: Beginners
- Topic: getting text location
- Replies: 20
- Views: 19036
getting text location
hello, I want to search a word that appears multiple times on the screen, get the matches as in regex plus the coordinates of each match. for example if the drawing is a text and I look the word "X" I want to get the number 4 and the cordinates of each "X": ------------X---------- --X---------------...