OK, so Epson’s support proved to be useless – “isn’t there a DIP switch on the back” and “we don’t do programming here” seemed to be the best they can offer.
Inspiration led me to lookup the ESC/POS sequences for cursor display – not DC2 & DC4 as previously though, they use the ASCII US (31 [...]
Posted in Reference | Tagged code, epos, esc/pos, todo
Various solutions to this problem are discussed on the UTW forum.
Posted in IT | Tagged todo, wordpress
Posted in Reference | Tagged todo, wordpress
I really must get around to implementing these plug-ins to stop clutter in the WordPress category and page lists.
See also here.
Consider the following JavaScript:
// Toggle Show/Hide
function toggle(name) {
if (document.getElementById(name).style.display == “block”) {
document.getElementById(name).style.display = “none”;
} else {
document.getElementById(name).style.display = “block”;
}
}
Posted in Reference | Tagged code, todo, wordpress