I'm looking for a way to delete all 50 mails that only have junk notes from my inbox with less than 50 clicks. I gave up looking for an addon that can do this (I'm positive Postal can not) so now I'm looking into a macro.
this command deletes the first mail
/script DeleteInboxItem(1);Is there a way to make a macro that will run that command more than once per click? I tried the two obvious macros
Quote
/script DeleteInboxItem(1);
/script DeleteInboxItem(1);
/script DeleteInboxItem(1);
etc
Quote
/script DeleteInboxItem(1); DeleteInboxItem(1); DeleteInboxItem(1); DeleteInboxItem(1); DeleteInboxItem(1);
Neither one works. It still only does the command once per click. Any idea how to alter this macro so it runs the command multiple times? I'm thinking it might have something to do with the /run command
it might be something like
Quote
/run for i=1, 7 do DeleteInboxItem(1); end
but that still only does one command not all seven so i dont know the lua very well
This post was edited by kayeto on Dec 28 2015 06:15am