Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!


Click here to return to the 'Hack to run iMovie 7.1 on G4s' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
Hack to run iMovie 7.1 on G4s
Authored by: mark hunte on Tue, Oct 2 2007 at 9:33AM PDT
I did this yesterday, It took me longer than it should have as the hint says using hexedit look for : 7C 08 02 A6 in the two lines

12B63C:
12B71C:

But I could not find them.
What I did find was:
0012B630:
0012B710:

at a guess that this was the actual lines meant I did the change on them. It worked.

---
mh

[ Reply to This | # ]

Hack to run iMovie 7.1 on G4s
Authored by: Transient on Tue, Dec 9 2008 at 12:44PM PST
You're in the right spot. The reason it doesn't make sense to you is because you probably don't understand hex.

It works like this... At line 0012B630, the first column/digit is 0012B630. The next would be 0012B631, and the one after that 0012B632, etc. So the numbers are counting up as you go.

Hex decimal is a bit different than the regular numbers you're used to. Instead of digits from 0 to 9, they go from 0 to F. Just like this:

0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F which is equivalent to
0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15

So to find 0012B63C you scroll down to 0012B630 and then count across from 0 to 12.

Hopefully that makes sense. I know it can be a bit confusing at first when dealing with numbers other than base 10 (our normal counting system).

[ Reply to This | # ]