Search found 21 matches

by bitx0r
21 Nov 2018, 16:49
Forum: Ask for Help (v1)
Topic: Offer a text based on what I'm typing
Replies: 14
Views: 2960

Re: Offer a text based on what I'm typing

/* _ _ ___ _ _ /_\ _ _| |_ ___ / __\___ _ __ ___ _ __ | | ___| |_ ___ //_\\| | | | __/ _ \ / / / _ \| '_ ` _ \| '_ \| |/ _ \ __/ _ \ / _ \ |_| | || (_) / /__| (_) | | | | | | |_) | | __/ || __/ \_/ \_/\__,_|\__\___/\____/\___/|_| |_| |_| .__/|_|\___|\__\___| v1.0 Coded by errorseven 1/23/17 |_| Pro...
by bitx0r
21 Nov 2018, 15:24
Forum: Ask for Help (v1)
Topic: Remove empty elements from pseudoarray?
Replies: 5
Views: 1609

Re: Remove empty elements from pseudoarray?

MThis doesn't look right either: join(strArray) { s := "" for i,v in strArray s .= ", " . v return substr(s, 3) } return I believe that Functions should declared outside of SubRoutines... or maybe I've been doing this AHK thing all wrong. I also noticed some Assignments in Expression form := with a ...
by bitx0r
08 Nov 2018, 17:30
Forum: Ask for Help (v1)
Topic: parse a text file to csv and then sort by column Topic is solved
Replies: 9
Views: 1931

Re: parse a text file to csv and then sort by column Topic is solved

maybe problem with days ( tried with other date ) bitx0r Five 5 11.07.2018 11:17:00 5 Four 4 11.07.2018 12:17:00 4 Three 3 03.07.2018 11:17:00 3 Two 2 22.11.2018 11:17:00 2 One 1 12.12.2018 11:17:00 1 ;---------------------------------------------- swagfag Three 3 03.07.2018 11:17:00 3 Five 5 11.07...
by bitx0r
08 Nov 2018, 16:20
Forum: Ask for Help (v1)
Topic: parse a text file to csv and then sort by column Topic is solved
Replies: 9
Views: 1931

Re: parse a text file to csv and then sort by column Topic is solved

@bitx0r , the datesort seems not correct I'm getting the exact same results. xml = (Join`r`n <?xml version="1.0" encoding="utf-16"?> <Searches> <Search Name="Two" Id="2" Date="02.07.2018 11:17:00" SearchString="2"/> <Search Name="Five" Id="5" Date="05.07.2018 11:17:00" SearchString="5"/> <Search Na...
by bitx0r
08 Nov 2018, 03:05
Forum: Ask for Help (v1)
Topic: parse a text file to csv and then sort by column Topic is solved
Replies: 9
Views: 1931

Re: parse a text file to csv and then sort by column Topic is solved

Late to the party. While the RegEx Solution works, I'd like to show you that there's a much simpler method to achieve this by using a COM Object XML parser, I had to google a little about XML DOM, took only few minutes to figure out how to grab Attributes, no RegEx required in parseing the XML. I di...
by bitx0r
02 Feb 2017, 22:38
Forum: Ask for Help (v1)
Topic: REGEX riddle Topic is solved
Replies: 29
Views: 5334

Re: REGEX riddle Topic is solved

Deciphering the OP's Match requirements: 1) String must start with a capital "E" 2) Can only be 8 Characters long 3) No special characters can be in the string, only Alpha and Digits A Non-RegEx solution: StringCaseSense, On For e, v in StrSplit(list, "`n", "`r") if v is alnum NewList .= (StrLen(v)=...
by bitx0r
23 Jan 2017, 16:40
Forum: Ask for Help (v1)
Topic: How to implement search functionality on a list?
Replies: 2
Views: 839

Re: How to implement search functionality on a list?

If you are looking to learn the algorithm, rather than use it built in ComboBox as @boiler pointed out, I found an interesting little blog post about it. I would be happy to help you implement it. Edit: Got bored and did it anyways! Not perfect but it works. Automatically loads all Commands/Function...
by bitx0r
23 Jan 2017, 01:08
Forum: Ask for Help (v1)
Topic: COM - Click on a field with no ID or name element
Replies: 5
Views: 2934

Re: COM - Click on a field with no ID or name element

Loading an interactive page example: ComObjError(False) While (value := "") { value := wb.document.getElementsByClassname("SomeConstantValueDeepOnThePage")[0].innerText sleep 500 } ComObjError(True) ; Continue with your code below Here's an example of how you can find and click on a link on your pag...
by bitx0r
23 Jan 2017, 00:10
Forum: Ask for Help (v1)
Topic: Are there any clipboard managers that *work*?
Replies: 4
Views: 2551

Re: Are there any clipboard managers that *work*?

I wrote a simple clipboard manager. Shows previews in tool tips, Sequential paste mode:

https://gist.github.com/errorseven/2108 ... 58f9fd0868
by bitx0r
28 Nov 2016, 12:11
Forum: Gaming Help (v1)
Topic: Help with older rapid fire
Replies: 4
Views: 2645

Re: Help with older rapid fire

I don't generally help people with Game Scripts (most seem to be used for cheating) but I see you are trying to do a Rapid Fire in Battlefield 1 and since I started getting Carpel Tunnel while playing this game, I wrote a RapidFire script for myself. It doesn't require a Toggle, it works by detectin...
by bitx0r
25 Sep 2016, 21:04
Forum: Ask for Help (v1)
Topic: Tool to help translate HTML
Replies: 6
Views: 1758

Re: Tool to help translate HTML

Honestly it looks like I set you on the right path! Your description of what you want to accomplish and the proposed method seems doable (if not aesthetically pleasing). You didn't post any code to review and I don't have a better idea for you. Good job working out a method to accomplish your goals!...
by bitx0r
16 Sep 2016, 22:57
Forum: Ask for Help (v1)
Topic: Tool to help translate HTML
Replies: 6
Views: 1758

Re: Tool to help translate HTML

Thank you both for taking the time to look into this! @Grendahl, I suspect to be able to accomplish the purposed task cleanly with this method would take a crazy complex set of Regular Expressions (beyond my skills with PCRE), especially for more general cases. Also, I'm not sure using line breaks ...
by bitx0r
16 Sep 2016, 21:00
Forum: Ask for Help (v1)
Topic: Tool to help translate HTML
Replies: 6
Views: 1758

Re: Tool to help translate HTML

Ran out of time, so i left a few tasks for you to do: html = ( <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> table, th, td { border: 1px solid black; } </style> <title>Untitled Document</title> </head> <body> <table> <tr> <th>Month</th> <th><a href="http://www.w3schools.com">Savings</...
by bitx0r
31 May 2016, 02:11
Forum: Ask for Help (v1)
Topic: [SOLVED] Using querySelectorAll to obtain data from html
Replies: 5
Views: 3886

Re: Using querySelectorAll to obtain data from html

No, the answer didn't use document.querySelectorAll. I am interested in document.querySelectorAll because it does in one line everything which otherwise would be done in many lines of code. So it is better suited:) To be honest, my skills with JavaScript are limited, however I was able to produce a...
by bitx0r
24 Apr 2016, 12:16
Forum: Scripts and Functions (v1)
Topic: Pandora Zero - Hotkey Control, Song Logging, Commercial Detection, Automatically resume from Inactivy and more!
Replies: 1
Views: 1286

Pandora Zero - Hotkey Control, Song Logging, Commercial Detection, Automatically resume from Inactivy and more!

http://i.imgur.com/gxxGDhu.png /* Pandora Zero - v1.0.0.1 Coded by bitx0r Dec. 2011 - Apr. 2016 Discription: Automation, Logging, and Hotkey controls using COM controls invoked in an Internet Explorer Shell directed at the Pandora Web application. This script allows you to smoothly control Pandora ...
by bitx0r
18 Oct 2015, 00:03
Forum: Gaming Scripts (v1)
Topic: Madden NFL Mobile / Bluestacks - Autobuy Script
Replies: 1
Views: 4191

Madden NFL Mobile / Bluestacks - Autobuy Script

Was requested to create this script, client claimed it didn't work... /* Latest version of BlueStacks Tested on Winows 8.1 AutoHotkey Unicode 32bit ver. 1.1.22.07 Set your coordinates, using WindowSpy, from the lower left corner to match up with the Buy button on popup menu. */ SetTitleMatchMode, 2 ...
by bitx0r
26 Sep 2015, 19:58
Forum: Ask for Help (v1)
Topic: Summary of Compiling versus Decompiling?
Replies: 2
Views: 1111

Re: Summary of Compiling versus Decompiling?

Not sure you are using Low-Level correctly in when referring to programming languages. https://en.wikipedia.org/wiki/Low-level_programming_language So calling yourself a Low-Level-User makes it seem like you are some kind of coding savant l33t haxor x86 ASM Guru... But I think you mean is that you n...
by bitx0r
09 Sep 2015, 20:05
Forum: Ask for Help (v1)
Topic: Saving code from html file to txt file
Replies: 6
Views: 4247

Re: Saving code from html file to txt file

So something like this? SetBatchLines -1 fileName := A_ScriptDir . "\myfile.txt" whr := ComObjCreate("WinHttp.WinHttpRequest.5.1") ;Change below to your URL whr.Open("GET", "http://ahkscript.org/boards/viewtopic.php?t=9436&p=52295#p52295", true) whr.Send() whr.WaitForResponse() webpage := whr.Respon...
by bitx0r
09 Sep 2015, 19:32
Forum: Ask for Help (v1)
Topic: Saving code from html file to txt file
Replies: 6
Views: 4247

Re: Saving code from html file to txt file

Just my take on it. SetBatchLines -1 fileName := A_ScriptDir . "\myfile.txt" whr := ComObjCreate("WinHttp.WinHttpRequest.5.1") ;Change below to your URL whr.Open("GET", "http://ahkscript.org/boards/viewtopic.php?t=9436&p=52295#p52295", true) whr.Send() whr.WaitForResponse() version := whr.ResponseTe...

Go to advanced search