Mangix Posted October 16, 2006 Posted October 16, 2006 here's the story. i am trying to make a right click menu which is supposed to re-compress a PNG file using IrfanView. the right click menu calls a .bat file named cvrtopng.bat which has the following.cd "C:\Program Files\IrfanView"cvrtopng.vbs %1the cvrtopng.vbs file has the following code.If WScript.Arguments.Count = 1 Then orgName = WScript.Arguments.Item(0) savName = Replace(orgName, ".png", "-compressed.png") Set WshShell = WScript.CreateObject("WScript.Shell") WshShell.Run("C:\Program Files\IrfanView\i_view32.exe" & orgName & "/convert=" & savName)Else MsgBox("Use the parameters properly, b***h!")End Ifthe problem is, a messagebox appears and says it can't find the file. the line is 5 and the char is 2(which seems weird). so can anyone tell me how to fix this?
gunsmokingman Posted October 16, 2006 Posted October 16, 2006 Try this Set WshShell = CreateObject("WScript.Shell") IrfanView = WshShell.ExpandEnvironmentStrings("%ProgramFiles%\IrfanView\i_view32.exe") WshShell.Run(Chr(34) & IrfanView & Chr(34) & " " & orgName & " /convert=" & savName)Else
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now