Hey everyone, noob here. Just trying to get a handle on apple scripting and Alfred.
I've got a script for resizing applications, it compiles and works from AppleScript Editor. But when I move it into Alfred, it doesn't do anything. Even if I put a display dialog as the first line of code, it does nothing.
Here's my script:
on alfred_script(q)
-- explode function
on explode(delimiter, input)
local delimiter, input, ASTID
set ASTID to AppleScript's text item delimiters
try
set AppleScript's text item delimiters to delimiter
set input to text items of input
set AppleScript's tex