TRON Sequel Viral So Far
July 21st, 2009
Really shouldn’t be wasting time on this, but a TRON sequel viral game is going on… 4 mysterious animated GIF images were posted to various movie blogs today.
Tearing them apart and combining them into one image gives you this exciting image below, which one can recognize as a simple HTML file. Code follows (with some fudgy additions by me). What is clear is there are still more images out there, judging from the gaps.
Ultimately, this post over at MacHeist explains the whole thing. There are coordinates at the bottom of the file, to go row, then column in the table above – eventually you decode a secret message saying most likely, Flynn Lives.
I was hoping there was an a href in there that would lead to a new viral campaign that would take months to solve… oh well.
Update: Actually, check out the url “flynnlives.com“. Here we go…

<html>
<head>
<style type="text/css">
body
{
background-color:#000000;
color:#ffffff;
font-family:Arial;
font-size:25;
letter-spacing:5;
}
table{
border-style:solid;
border-color:#33ffff;
font-family:Arial;
font-size:35;
padding:20px;
border-style:solid;
}
</style>
</head>
<body>
<center>
<div>
<table>
<tr>
<td>y</td>
<td>e</td>
<td>?</td>
<td>?</td>
<td>?</td>
</tr>
<tr>
<td>o</td>
<td>?</td>
<td>?</td>
<td>F</td>
<td>t</td>
<tr>
<td>i</td>
<td>n</td>
<td>v</td>
<td>o</td>
<td>l</td>
</tr>
<tr>
<td>l</td>
<td>a</td>
<td>r</td>
<td>d</td>
<td>m</td>
</tr>
</tr>
</table>
<br />
<br />
<br />
2,4 3,5 1,1 5,4 3,2
4,1 1,4 3,3 1,2 5,2
</div>
</body>
</html>