Trying tot install transparency.js

English main discussion
Post Reply
  • Author
  • Message
Offline
Posts: 14
Joined: Thu Apr 02, 2015 10:31 am

Trying tot install transparency.js

Post 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.

KDJ
Offline
Posts: 1949
Joined: Sat Mar 06, 2010 7:40 pm
Location: Poland

Post 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
---

Offline
Posts: 14
Joined: Thu Apr 02, 2015 10:31 am

Post by fbpt »

do i have to run this every time i want a transparent background?

KDJ
Offline
Posts: 1949
Joined: Sat Mar 06, 2010 7:40 pm
Location: Poland

Post 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.
Post Reply