if (selwnd != NULL) selwnd.sendAction(msg, "", 0, 0, 0, 0);
}
searchlineclose.onLeftClick() {
toggleSearchline();
messagebox("You have closed the Quick Selection box. This feature helps you\nfind and select specific items within a playlist. To access this\nfeature again, press the F3 key while the Playlist Editor window\nis active.", "Quick Selection", 0, "pledit_searchline_close");
}
editcontrol.onKeyDown(Int vkcode) {
if (vkcode == VK_DOWN && isKeyDown(VK_CONTROL)) sendSelection("down");
if (vkcode == VK_UP && isKeyDown(VK_CONTROL)) sendSelection("up");
if (vkcode == 13 && isKeyDown(VK_CONTROL)) sendSelection("doubleclick");