Page 1 of 1

Trying tot install transparency.js

Posted: Sat Jul 30, 2016 1:37 am
by fbpt
How do I install scripts?

I copied the content of transparency.js to a new file, moved it to AkelPad\AkelFiles\Plugs\Scripts\ folder and updated using AkelUpdater.exe but nothing shows up on my AkelPad.

Posted: Sat Jul 30, 2016 12:05 pm
by KDJ
fbpt
Run script without arguments:
Options -> Plugins -> Scripts::Main -> transparency.js -> Exec

Run script with argument(s):
1. via Toolbar, add in Toolbar plugin:

Code: Select all

"Transparency 127" Call("Scripts::Main", 1, "transparency.js", "127") Icon(0)
"Transparency 0" Call("Scripts::Main", 1, "transparency.js", "0") Icon(0)
2. via ContextMenu plugin, add in ContextMenu->Main menu:

Code: Select all

"Transparency 127" Call("Scripts::Main", 1, "transparency.js", "127")
"Transparency 0" Call("Scripts::Main", 1, "transparency.js", "0")
3. via Hotkeys, add in Hotkeys plugin:
---
Name: "Transparency 127"
Command: Call("Scripts::Main", 1, "transparency.js", "127")
Hotkey: Ctrl+Shift+9
---
Name: "Transparency 0"
Command: Call("Scripts::Main", 1, "transparency.js", "0")
Hotkey: Ctrl+Shift+0
---

Posted: Sat Jul 30, 2016 1:54 pm
by fbpt
do i have to run this every time i want a transparent background?

Posted: Sat Jul 30, 2016 2:35 pm
by KDJ
fbpt
You can put it in autostart.
Read documentation ...\AkelPad\AkelFiles\Docs\AkelHelp-Eng.htm, chapter "Manual settings".
Need use CmdLineBegin or CmdLineEnd parameter.