PowerPad and Softkey programming-WC
 ***ing FAQs 
 ***ing < BACK TO QUESTIONS 
question
How do I program PowerPad and Softkey  using PSL script?
  
answer

PowerPad

The PowerPad is setup like a grid. You need to specify the row and column of the entry you want to program. The label of the button must be double-quoted and the function of the button goes after the "send".

Here are examples of programming them in a script:

  • pad 1 1 "ELM" {send elm^m}
  • pad 1 2 "DATE" {send date^m}
  • pad 1 3 "F3" {send <f3>}
  • pad 1 4 "F4" {send <f4>}

Softkey

The softkeys are the labelled "F1", "F2" .. "F12" buttons at the bottom of the PowerTerm window.

Here are examples of programming them in a script:

  • func 1 "ELM" {send elm^m}
  • func 2 "DATE" {send date^m}
  • func 3 "F3" {send <f3>}
  • func 4 "F4" {send <f4>}



Top