Go Back   PPCGeeks > Windows Phones > Windows Phone Hacks/Tweaks > Titanium Tweaks

Notices



Reply
 
Thread Tools Display Modes
  #1  
Old 08-18-2009, 06:01 PM
greenskeeper805's Avatar
greenskeeper805
VIP Member
Offline
Pocket PC: HTC Pure (TD2, Topaz)
Carrier: AT&T
Location: Ventura
 
Join Date: Apr 2009
Posts: 1,211
Reputation: 865
greenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuff
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?
__________________
Stock AT&T ROM w/ Transparent Manila 2.1 edits
(I miss flashing...)

Don't forget to click THANKS for those who have helped!
Reply With Quote
Sponsored Links
  #2  
Old 08-18-2009, 10:10 PM
zanix's Avatar
zanix
PPCGeeks Regular
Offline
Pocket PC: Samsung Omnia (SCH-i910)
Carrier: Verizon
 
Join Date: May 2009
Posts: 62
Reputation: 65
zanix is becoming a great contributor
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
Reply With Quote
  #3  
Old 08-21-2009, 06:36 AM
Torx's Avatar
Torx
Indigenous Nudist
Offline
Pocket PC: Sprint Diamond
Carrier: Sprint
Location: Memphis, TN
 
Join Date: Apr 2007
Posts: 1,524
Reputation: 2053
Torx is a VIPTorx is a VIPTorx is a VIPTorx is a VIPTorx is a VIPTorx is a VIPTorx is a VIPTorx is a VIPTorx is a VIPTorx is a VIPTorx is a VIP
Re: How to get Opera panel to go to Opera 9.7

bump, i'd like to know this as well.
Reply With Quote
  #4  
Old 08-21-2009, 05:08 PM
BigDiesel07's Avatar
BigDiesel07
Big Mod Diesel
Offline
Pocket PC: TOUCH PRO 2
Carrier: Sprint
Location: PPCG/Redford, MI
 
Join Date: Oct 2008
Posts: 6,484
Reputation: 12220
BigDiesel07 can't get a higher reputation levelBigDiesel07 can't get a higher reputation levelBigDiesel07 can't get a higher reputation levelBigDiesel07 can't get a higher reputation levelBigDiesel07 can't get a higher reputation levelBigDiesel07 can't get a higher reputation levelBigDiesel07 can't get a higher reputation levelBigDiesel07 can't get a higher reputation levelBigDiesel07 can't get a higher reputation levelBigDiesel07 can't get a higher reputation levelBigDiesel07 can't get a higher reputation level
Send a message via AIM to BigDiesel07
Re: How to get Opera panel to go to Opera 9.7

Meowed to correct forum...
Reply With Quote
This post has been thanked 1 times.
  #5  
Old 08-24-2009, 04:33 PM
greenskeeper805's Avatar
greenskeeper805
VIP Member
Offline
Pocket PC: HTC Pure (TD2, Topaz)
Carrier: AT&T
Threadstarter
Location: Ventura
 
Join Date: Apr 2009
Posts: 1,211
Reputation: 865
greenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuff
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
Attached Files
File Type: mscr opera9.mscr (1.8 KB, 50 views)
__________________
Stock AT&T ROM w/ Transparent Manila 2.1 edits
(I miss flashing...)

Don't forget to click THANKS for those who have helped!
Reply With Quote
This post has been thanked 1 times.
  #6  
Old 09-20-2009, 10:31 PM
msternig's Avatar
msternig
Lurker
Offline
Pocket PC: HTC Touch Pro
Carrier: U.S. Cellular
 
Join Date: Jul 2009
Posts: 23
Reputation: 0
msternig is a n00b
Re: How to get Opera panel to go to Opera 9.7

Quote:
Originally Posted by greenskeeper805 View Post
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!
Attached Files
File Type: mscr opera9.mscr (1.8 KB, 40 views)
Reply With Quote
  #7  
Old 09-26-2009, 04:19 PM
Solange82200's Avatar
Solange82200
Halfway to VIP Status
Offline
Pocket PC: Samsung Omnia i910
Carrier: Verizon Wireless
 
Join Date: Mar 2009
Posts: 506
Reputation: 250
Solange82200 is becoming a PPCGeeks regularSolange82200 is becoming a PPCGeeks regularSolange82200 is becoming a PPCGeeks regular
Re: How to get Opera panel to go to Opera 9.7

Will this work for other browsers, like Skyfire?
Reply With Quote
  #8  
Old 09-27-2009, 09:46 PM
strickly_ppc670's Avatar
strickly_ppc670
Regular 'Geeker
Offline
Pocket PC: TP1
Carrier: Sprint
Location: ATX
 
Join Date: Jan 2007
Posts: 284
Reputation: 160
strickly_ppc670 is keeping up the good workstrickly_ppc670 is keeping up the good work
Send a message via Yahoo to strickly_ppc670
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
__________________
- HTC TP - Mot S9s
- Plantronic 510 Discovery
- 16 gb A-Data MicroSD CL6
- ROOTROM- -
----------Priceless ----------
Reply With Quote
  #9  
Old 11-10-2009, 05:14 PM
greenskeeper805's Avatar
greenskeeper805
VIP Member
Offline
Pocket PC: HTC Pure (TD2, Topaz)
Carrier: AT&T
Threadstarter
Location: Ventura
 
Join Date: Apr 2009
Posts: 1,211
Reputation: 865
greenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuff
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.
__________________
Stock AT&T ROM w/ Transparent Manila 2.1 edits
(I miss flashing...)

Don't forget to click THANKS for those who have helped!
Reply With Quote
  #10  
Old 02-14-2010, 10:22 PM
sowazit1you's Avatar
sowazit1you
Lurker
Offline
Pocket PC: i910 omnia
Carrier: verizon
 
Join Date: Sep 2007
Posts: 3
Reputation: 0
sowazit1you is a n00b
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
Reply With Quote
Reply

  PPCGeeks > Windows Phones > Windows Phone Hacks/Tweaks > Titanium Tweaks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump




All times are GMT -4. The time now is 12:35 PM.


Powered by vBulletin® ©2000 - 2010, Jelsoft Enterprises Ltd.
©2009 - PPCGeeks.com