View previous topic :: View next topic |
Author |
Message |
KDJ
Joined: 06 Mar 2010 Posts: 1929 Location: Poland
|
Posted: Sun Sep 11, 2011 2:23 pm Post subject: |
|
|
Added the script to change the font in ToolBar plugin window:
PlugToolBarAkelFont.js |
|
Back to top |
|
 |
Infocatcher
Joined: 06 Aug 2007 Posts: 1767
|
Posted: Sun Sep 11, 2011 3:17 pm Post subject: |
|
|
KDJ wrote: | Excellent idea, thanks.
But why wait so much time (5 second).
Do you anticipate, that the new computers will run slower. |
I don't have old computers for tests.
I tried to run internal tests in 7-Zip and WinRAR with "high: 13" priority, got lags with mouse movement, but this take only 162 ms. |
|
Back to top |
|
 |
Andrey_A_A
Joined: 03 Jun 2010 Posts: 665 Location: Сочи, Хоста
|
Posted: Sun Sep 11, 2011 3:42 pm Post subject: |
|
|
KDJ - отличная работа! Теперь всё видно в окнах редактирования меню!!! |
|
Back to top |
|
 |
Lenchik
Joined: 10 Jan 2011 Posts: 366
|
Posted: Sun Sep 11, 2011 4:24 pm Post subject: |
|
|
KDJ
Супер!
Не могли бы вы соединить эти два скрипта в один так, чтобы если просто его вызвать, то автоматически вызывалось бы исправленное окно Contextmenu, а если уже открыто окошко Toolbar или Contextmenu, то в них бы правился шрифт? Тогда можно было бы назначить этому совмещённому скрипту одну горячую комбинацию клавиш, а не каждому скрипту свою. |
|
Back to top |
|
 |
Andrey_A_A
Joined: 03 Jun 2010 Posts: 665 Location: Сочи, Хоста
|
Posted: Sun Sep 11, 2011 4:44 pm Post subject: |
|
|
Lenchik
Я тоже за объединение. Я сразу на это намекал...
ещё раз обновил WriteInWhiteSpellCheckList.vbs
добавил возможность добавлять в "белый список" выделенный вертикальный список слов + остался тот же функционал |
|
Back to top |
|
 |
KDJ
Joined: 06 Mar 2010 Posts: 1929 Location: Poland
|
Posted: Sun Sep 11, 2011 6:35 pm Post subject: |
|
|
Lenchik, Andrey_A_A
Or maybe better to ask Instructor, if he can add the function, allowing the script to open ToolBar dialog. |
|
Back to top |
|
 |
KDJ
Joined: 06 Mar 2010 Posts: 1929 Location: Poland
|
Posted: Wed Sep 14, 2011 7:15 pm Post subject: |
|
|
MoveLinesUpDown.js script has been replaced by new LinesSelectMoveDuplicate.js
Added the ability to move any number of rows up and down. |
|
Back to top |
|
 |
KDJ
Joined: 06 Mar 2010 Posts: 1929 Location: Poland
|
|
Back to top |
|
 |
KDJ
Joined: 06 Mar 2010 Posts: 1929 Location: Poland
|
|
Back to top |
|
 |
se7h
Joined: 28 Sep 2009 Posts: 767 Location: Minsk, Belarus
|
Posted: Fri Sep 16, 2011 9:23 am Post subject: |
|
|
Andrey_A_A
как насчёт доработки WriteInWhiteSpellCheckList.vbs под новую фишку (динамическое обновление белого списка) SpellCheck 1.6? |
|
Back to top |
|
 |
KDJ
Joined: 06 Mar 2010 Posts: 1929 Location: Poland
|
Posted: Fri Sep 16, 2011 1:17 pm Post subject: |
|
|
LinesSelectMoveDuplicate.js
Now if the script is run with no arguments, it displays poup menu and input box. |
|
Back to top |
|
 |
Andrey_A_A
Joined: 03 Jun 2010 Posts: 665 Location: Сочи, Хоста
|
Posted: Sat Sep 17, 2011 8:10 am Post subject: |
|
|
se7h
Я бы с удовольствием обновил, я понимаю что должно происходить - но провёл десятки экспериментов - всё на прежнем уровне
- если подскажешь, может подтупливую... |
|
Back to top |
|
 |
KDJ
Joined: 06 Mar 2010 Posts: 1929 Location: Poland
|
Posted: Sat Sep 17, 2011 2:23 pm Post subject: |
|
|
FeyFre
I have such a request.
Can you put in Library Win32 Constants Richedit constants. |
|
Back to top |
|
 |
KDJ
Joined: 06 Mar 2010 Posts: 1929 Location: Poland
|
Posted: Sun Sep 18, 2011 12:31 pm Post subject: |
|
|
PlugTextToAkelPad.js
Added: message if the plugin window is not open. |
|
Back to top |
|
 |
FeyFre
Joined: 07 Aug 2007 Posts: 2240 Location: Vinnitsa, Ukraine
|
Posted: Sun Sep 18, 2011 1:27 pm Post subject: |
|
|
Andrey_A_A, кусочек скрипта добавляющего выделенное слово в белый список для файлов с расширением txt.
Code: | // some-js-script.js
var word = AkelPad.GetSelText();
//! есть ли выделение
if(!word || word.length==0)
WScript.Quit();
var WhiteListText = "+txt\n" +word + "\n";
AkelPad.Call("SpellCheck::Background",1,WhiteListText);
|
|
|
Back to top |
|
 |
|