Page 2 of 2

Re: TextConverter v0.1

Posted: 18 Mar 2015, 12:32
by empardopo
jNizM wrote:Next week I push an update and change the license too.

The Unicode Standard, Version 7.0
Perfect!
Don't change the license only its link. I love your license! :dance:

Thanks very much for your help and info.

Re: TextConverter v0.1

Posted: 18 Mar 2015, 17:40
by BGM
You should make the default font a fully-populated unicode font. Something like Lucida Sans would be good. That way if you paste in a special character it won't display the little square for a missing glyph. I don't know - you might have to include the font though, with the script or something.

Re: TextConverter v0.1

Posted: 19 Mar 2015, 01:31
by jNizM
@BGM
Thx for the tip
How about this font? unifont

Re: TextConverter v0.1

Posted: 19 Mar 2015, 09:09
by BGM
Well, I had been looking in particular for these characters: ℣ ℟ ✠
I looked at unifont, but it doesn't have those.
But they are pretty obscure for most folks.

What if you included a combobox to let the user choose their font? (I just edit the script, myself).

Re: TextConverter v0.2

Posted: 23 Mar 2015, 03:59
by jNizM
Update to v0.2:
- Bug Fixes
- Removed Morsecode
- Added Dec/Hex to Char
- Improved Code
- Changed License

Re: TextConverter v0.2

Posted: 24 Mar 2015, 02:06
by empardopo
jNizM wrote:Update to v0.2:
- Bug Fixes
- Removed Morsecode
- Added Dec/Hex to Char
- Improved Code
- Changed License
Thanks.
I prefer the previous license. :lol:

Re: TextConverter v0.2

Posted: 13 Jul 2018, 07:18
by Scr1pter
Sorry for being a grave desecrator.
It's an interesting and helpful tool!

Can you please tell me the char codes of tab and line break?
It's not possible to type them into the text field.
I know I could also use `t and `n, but CHR() would be good to know.

Couldn't find it on the web.

Regards

Re: TextConverter v0.2

Posted: 13 Jul 2018, 09:49
by TheDewd
@Scr1pter,

Code: Select all

; https://theasciicode.com.ar/

F1::Send, % Chr(09) ; ASCII code 09 = HT ( Horizontal Tab )
F2::Send, % Chr(10) ; ASCII code 10 = LF ( Line feed )
F3::Send, % Chr(13) ; ASCII code 13 = CR ( Carriage return )

Re: TextConverter v0.2

Posted: 13 Jul 2018, 16:41
by Scr1pter
Thanks, man!