Comments on: Introducing Torrent Utility, an Apollo application https://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/ Archive of older blog posts written by Josh Tynjala about Flash, Flex, and ActionScript Wed, 26 Jun 2013 02:52:46 +0000 hourly 1 https://wordpress.org/?v=4.9.9 By: Steve https://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-9811 Sun, 15 May 2011 10:22:07 +0000 http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-9811 Not good enough ! I want to read the whole contents of a torrent file in human readable maner ! Why ? Some torrent file caries much info abaut files when is more than one file included ! I can view this with TCM Lister plugin but not in human readable way ! So what to use to not encode edit and losse much time to do all by the hand ?

]]>
By: Humbert HARDY https://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-441 Fri, 09 Nov 2007 13:17:36 +0000 http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-441 I have found a little error in ByteUtil.as, in the byteArrayToHexString function.You have forgotten to initialize the data.position before the “while” instruction. It is usefull if you wanna use this function in other applications.

public static function byteArrayToHexString(data:ByteArray):String{
var oldPosition:int = data.position;
var joinedBytes:String = “”;
[…]

Must be replace by:

public static function byteArrayToHexString(data:ByteArray):String
{
var oldPosition:int = data.position;
data.position=0;
var joinedBytes:String = “”;
[…]
Thanks for this application!!

]]>
By: TorrentUtility AIR application now runs on beta » Zeus Labs https://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-440 Thu, 26 Jul 2007 18:04:44 +0000 http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-440 […] may remember I posted about an AIR app I built to read and create BitTorrent files a while back. I released the first version of TorrentUtility targeting the alpha version of (still […]

]]>
By: Josh Tynjala https://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-439 Fri, 30 Mar 2007 18:39:46 +0000 http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-439 Okay, I found the problem. I had heard that downloading AIR files doesn’t always work. The problem is with Internet Explorer. I use Firefox on both PC and Mac, so I never noticed the issue.

The link truly does point to an AIR file. You can see that when you put your mouse over it, even in IE. For some strange reason, IE thinks it should actually be a ZIP file when you try to download the file. Just change the ZIP extension to AIR and it will work fine.

I’ll see if I can find the fix Adobe recommends.

]]>
By: Juraj Varady https://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-438 Fri, 30 Mar 2007 18:15:13 +0000 http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-438 I have downloaded right file,not source ,(AIR file),but there is no *.AIR file there.
Check “AIR file” link and archive it downloads pls. Thx

]]>
By: Josh Tynjala https://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-437 Fri, 30 Mar 2007 15:18:30 +0000 http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-437 Juraj, the zip file only contains the source code. The AIR file is seperate. I have updated my post to make it more clear.

]]>
By: Juraj Varady https://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-436 Fri, 30 Mar 2007 12:29:09 +0000 http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-436 Seems that instalation AIR file is missing in downloaded zip file

]]>
By: Josh Tynjala https://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-435 Wed, 21 Mar 2007 15:21:31 +0000 http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-435 Thanks, Ian. I’ll take a look. I think I tested that situation at one point, but maybe I’m not remembering correctly.

]]>
By: Ian Chia https://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-434 Wed, 21 Mar 2007 11:36:16 +0000 http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-434 Very nice work. Needs a minor error check at the start – I created a new torrent using the utility by accident, but didn’t populate it. Then opened the same torrent file and it hangs the Torrent Utility app – have to kill the process. Worked very nicely on “normal” torrents though. (-;

– Ian

]]>