What are you telling to run? i noticed on your first post it says
iexplorer.exe
you do realise it's iexplore.exe

Code:
alias runmaximized {
  var %a = a $+ $ticks
  .comopen %a wscript.shell
  .comclose %a $com(%a,run,3,bstr,$1-,int,3)
}

on ^*:HOTLINK:www*:*:{ if (www. isin $strip($1-)) { return } }
on *:HOTLINK:www*:*: {
  if (%ie.exe == Not edited yet.) { error-browser | halt }
  else {
    runmaximized iexplore.exe $1-
  }
}
on ^*:HOTLINK:http*:*:{ if (http:// isin $strip($1-)) { return } }
on *:HOTLINK:http*:*: {
  if (%ie.exe == Not edited yet.) { error-browser | halt }
  else {
    run %ie.exe $1-
  }
}


I tested you code and replaced %ie.exe with iexplore.exe and it works perfectly fine.

Last edited by vexed2; 26/09/07 06:39 PM.