|
||||
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 |
|
||||
Re: How to get Opera panel to go to Opera 9.7
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 |
This post has been thanked 1 times. |
|
||||
Re: How to get Opera panel to go to Opera 9.7
Quote:
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! |
|
||||
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
__________________
- Sammy Epic 4G - Mot S9s
- Plantronic 975 - Legendary Rom w/ 2.1 update - 32 gb A-Patriot MicroSD CL10 ----------Priceless ---------- |
|
||||
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.
|
|
|
|