Converting *.mix files

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My previous computer had Picture-It! on it. My new computer, with XP,
doesn't. I have a number of *.mix graphics files that I need to access, but
don't want to purchase Picture-It! Does anyone know of any programs that
will read (and convert) *.mix files? I have PSP as my main graphics program,
but it doesn't appear to accept mix files. Help, please. Thanks.
 
Place following code in a text document and rename it to a imageviewer.hta (it's also attached). The Win 98 thumbnail viewer (it's in XP because older programs use it) can show mix files.

"imageviewer.hta" "filename.mix"

NOTE: The quotes are important. The Program name MUST be quoted (unusual) and also the file name (nothing unusual about this). If your files are a particular size you can specify the size of the image by altering the <object line below to (say to 640x480)
<object height=640px width=480px


<html>
<head>
<HTA:APPLICATION ID="ImgViewHTA"
APPLICATIONNAME="Explorer's MRUs"
BORDER="thick"
BORDERSTYLE="normal"
CAPTION="yes"
ICON="C:\windows\system32\main.cpl,0"
MAXIMIZEBUTTON="yes"
MINIMIZEBUTTON="yes"
SHOWINTASKBAR="yes"
SINGLEINSTANCE="no"
SYSMENU="yes"
VERSION="1.0"
WINDOWSTATE="normal"
/>
</head>

<h3>Thumbnail Viewer</h3>
<object
id="objThumbnail"
classid="clsid:1D2B4F40-1F10-11D1-9E88-00C04FDCAB92">
</object>

<SCRIPT Language="VBScript">
cmdLineArray = Split(ImgViewHTA.commandLine, Chr(34), -1, 1)
objThumbnail.displayfile(cmdLineArray(3))
</script>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top