PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Windows Mobile > Windows Mobile Hacks/Tweaks > Titanium Tweaks

Notices


Closed Thread
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-18-2009, 06:01 PM
greenskeeper805's Avatar
VIP Member
Offline
Pocket PC: HTC Pure (TD2, Topaz)
Carrier: AT&T
Location: Ventura
 
Join Date: Apr 2009
Posts: 1,211
Reputation: 870
greenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
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!
  #2 (permalink)  
Old 08-18-2009, 10:10 PM
zanix's Avatar
PPCGeeks Regular
Offline
Pocket PC: Samsung Omnia (SCH-i910)
Carrier: Verizon
 
Join Date: May 2009
Posts: 63
Reputation: 70
zanix is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
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
  #3 (permalink)  
Old 08-21-2009, 06:36 AM
Torx's Avatar
Indigenous Nudist
Offline
Pocket PC: HTC EVO 4G
Carrier: Sprint
Location: Memphis, TN
 
Join Date: Apr 2007
Posts: 1,583
Reputation: 2153
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
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How to get Opera panel to go to Opera 9.7

bump, i'd like to know this as well.
  #4 (permalink)  
Old 08-21-2009, 05:08 PM
BigDiesel07's Avatar
Big MVP Diesel
Offline
Pocket PC: TOUCH PRO 2
Carrier: Sprint
Location: PPCG/Redford, MI
 
Join Date: Oct 2008
Posts: 6,724
Reputation: 12705
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
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Send a message via AIM to BigDiesel07 Send a message via Skype™ to BigDiesel07
Re: How to get Opera panel to go to Opera 9.7

Meowed to correct forum...
This post has been thanked 1 times.
  #5 (permalink)  
Old 08-24-2009, 04:33 PM
greenskeeper805's Avatar
VIP Member
Offline
Pocket PC: HTC Pure (TD2, Topaz)
Carrier: AT&T
Threadstarter
Location: Ventura
 
Join Date: Apr 2009
Posts: 1,211
Reputation: 870
greenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
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, 62 views) Click for barcode!
This post has been thanked 1 times.
  #6 (permalink)  
Old 09-20-2009, 10:31 PM
msternig's Avatar
N00b
Offline
Pocket PC: HTC Touch Pro
Carrier: U.S. Cellular
 
Join Date: Jul 2009
Posts: 30
Reputation: 0
msternig is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
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, 54 views) Click for barcode!
  #7 (permalink)  
Old 09-26-2009, 04:19 PM
Solange82200's Avatar
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
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How to get Opera panel to go to Opera 9.7

Will this work for other browsers, like Skyfire?
  #8 (permalink)  
Old 09-27-2009, 09:46 PM
strickly_ppc670's Avatar
Regular 'Geeker
Offline
Pocket PC: Sammy Epic
Carrier: Sprint
Location: ATX
 
Join Date: Jan 2007
Posts: 355
Reputation: 190
strickly_ppc670 is keeping up the good workstrickly_ppc670 is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
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
__________________
- Sammy Epic 4G - Mot S9s
- Plantronic 975 - Legendary Rom w/ 2.1 update
- 32 gb A-Patriot MicroSD CL10
----------Priceless ----------
  #9 (permalink)  
Old 11-10-2009, 06:14 PM
greenskeeper805's Avatar
VIP Member
Offline
Pocket PC: HTC Pure (TD2, Topaz)
Carrier: AT&T
Threadstarter
Location: Ventura
 
Join Date: Apr 2009
Posts: 1,211
Reputation: 870
greenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuffgreenskeeper805 knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
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.
  #10 (permalink)  
Old 02-14-2010, 11:22 PM
sowazit1you's Avatar
Lurker
Offline
Pocket PC: i910 omnia
Carrier: verizon
 
Join Date: Sep 2007
Posts: 3
Reputation: 0
sowazit1you is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
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
Closed Thread

  PPCGeeks > Windows Mobile > Windows Mobile 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
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 03:19 PM.


Powered by vBulletin® ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com