PPCGeeks

PPCGeeks (http://forum.ppcgeeks.com/index.php)
-   Titanium Tweaks (http://forum.ppcgeeks.com/forumdisplay.php?f=82)
-   -   How to get Opera panel to go to Opera 9.7 (http://forum.ppcgeeks.com/showthread.php?t=80001)

greenskeeper805 08-18-2009 06:01 PM

How to get Opera panel to go to Opera 9.7
 
Can anyone tell me how to get the Opera panel in titanium to go to Opera 9.7 instead of 9.5 without editing every favorite in Chome Editor?

zanix 08-18-2009 10:10 PM

Re: How to get Opera panel to go to Opera 9.7
 
I tried editing opera9.mscr file in the .cab file, but I can't even get Opera panel to work in the first place.

All I did was edit all the paths to point to the correct location
Hopefully this might help get you started
Code:

opera = "\Program Files\Opera Mobile\profile\opera6.adr"
Copy(opera, "\Program Files\Opera Mobile\profile\opera6.txt",TRUE)
data = ReadFile("\Program Files\Opera Mobile\profile\opera6.txt")
Message("Please wait, your Opera bookmarks are being imported.")

Split(data, "#URL",0,links)
pages = ""
number = MaxIndex(links)
For i = 2 to number step 1
    ii = i - 1
    #Get Name
    pos = Find(links[i],"NAME")
    If (pos)
        pos = pos + 6
        len = Find(links[i], "CREATED",pos) - 19
        name[i] = SubStr(links[i],pos,len)
    EndIf

    #Get URL
    pos = Find(links[i],"URL")
    If (pos)
        pos = pos + 5
        pos2 = pos + 8
        len = Length(links[i]) - pos
        urls[i] = SubStr(links[i],pos,len)
    EndIf

    #Write Registry
    RegWriteString("HKLM","Software\Microsoft\CHome\Opera\Page"&ii,"Name",name[i])
    RegWriteString("HKLM","Software\Microsoft\CHome\Opera\Page"&ii,"URL",urls[i])
    RegWriteString("HKLM","Software\Microsoft\CHome\Opera\Page"&ii,"ACTIONURL","\Program Files\Opera Mobile\Operal.exe;"&urls[i])
    RegWriteString("HKLM","Software\Microsoft\CHome\Opera\Page"&ii,"Icon","\Windows\Opera9\opera.png")
    RegWriteString("HKLM","Software\Microsoft\CHome\Opera\Page"&ii,"SK2TEXT","Import")
    RegWriteString("HKLM","Software\Microsoft\CHome\Opera\Page"&ii,"SK2URL","\Windows\Opera9\opera9.mscr")
    pages = pages&"Page"&ii&";"
Next

RegWriteString("HKLM","Software\Microsoft\CHome\Opera","Pages",pages)

i = ii
oldExists = 1
While (oldExists)
    i = i + 1
    If (RegKeyExists("HKLM","Software\Microsoft\CHome\Opera\Page"&i))
        RegDeleteKey("HKLM","Software\Microsoft\CHome\Opera\Page"&i,TRUE,TRUE)
    Else
        oldExists = 0
    EndIf
EndWhile

update = RegRead("HKLM","Software\Microsoft\CHome\Opera","Updated")
If (update)
    RegWriteDWord("HKLM","Software\Microsoft\CHome\Opera","Updated",0)
Else
    RegWriteDWord("HKLM","Software\Microsoft\CHome\Opera","Updated",1)
EndIf

Message(ii&" Opera bookmarks have been imported.")
exit


Torx 08-21-2009 06:36 AM

Re: How to get Opera panel to go to Opera 9.7
 
bump, i'd like to know this as well.

BigDiesel07 08-21-2009 05:08 PM

Re: How to get Opera panel to go to Opera 9.7
 
Meowed to correct forum...

greenskeeper805 08-24-2009 04:33 PM

Re: How to get Opera panel to go to Opera 9.7
 
1 Attachment(s)
Ok, figured it out!
Just copy the attached file to \windows\opera9
NOTE: This will not import the files from Opera 9.7, so set up your favs in the regular opera 9.5
NOTE2: I have also deleted the part where it puts the URL of the webpage in the titanium webpage, some urls are long and it looks bad
NOTE3: I have also set it to to have Opera 9.7 as the right soft key, the import feature is not there, just go \windows\opera9 and run opera9.mscr to import the favs

msternig 09-20-2009 10:31 PM

Re: How to get Opera panel to go to Opera 9.7
 
1 Attachment(s)
Quote:

Originally Posted by greenskeeper805 (Post 1119671)
Ok, figured it out!
Just copy the attached file to \windows\opera9
NOTE: This will not import the files from Opera 9.7, so set up your favs in the regular opera 9.5
NOTE2: I have also deleted the part where it puts the URL of the webpage in the titanium webpage, some urls are long and it looks bad
NOTE3: I have also set it to to have Opera 9.7 as the right soft key, the import feature is not there, just go \windows\opera9 and run opera9.mscr to import the favs


For those of you still looking for this, I was able to get it working to import the regular Opera 9.7 favorites properly and launch them. This version uses the same fuctionality as the original version (Softkey does import, and URL's are displayed). Thanks to all who got this working!

Solange82200 09-26-2009 04:19 PM

Re: How to get Opera panel to go to Opera 9.7
 
Will this work for other browsers, like Skyfire?

strickly_ppc670 09-27-2009 09:46 PM

Re: How to get Opera panel to go to Opera 9.7
 
Nice- I was thinking the same thing- Skyfire seems to be a fater browser IMO

greenskeeper805 11-10-2009 06:14 PM

Re: How to get Opera panel to go to Opera 9.7
 
Sure, tell me the location of your skyfire.exe and i'll edit it for you.

sowazit1you 02-14-2010 11:22 PM

Re: How to get Opera panel to go to Opera 9.7
 
What about opera 10 saved to my storage card in the program files folder


All times are GMT -4. The time now is 11:57 PM.

Powered by vBulletin® ©2000 - 2024, Jelsoft Enterprises Ltd.
©2012 - PPCGeeks.com


Content Relevant URLs by vBSEO 3.6.0