Active Topics

 


Reply
Thread Tools
try-alls's Avatar
Posts: 95 | Thanked: 51 times | Joined on Sep 2010 @ staffordshire, uk
#1871
ok the red bar pretty much show up on everything an games load super slow so i got bored o waitin but here screenshots to show red bar on both youtube an an armorgames game
Attached Images
  
__________________
Bob want's to save you even if it means killing you!

It's not often the stuff i type is helpful/useful so say thanks if it is
 

The Following User Says Thank You to try-alls For This Useful Post:
Posts: 133 | Thanked: 17 times | Joined on May 2010
#1872
games loading slow is due to your internet speed not flash 10 right?

i have heard that although flash 10 contents loads but micro b browser crashes when trying to interact with it but it seems like everything is working fine for you which is great!

so it seems like we now more or less have access to flash 10!
 
try-alls's Avatar
Posts: 95 | Thanked: 51 times | Joined on Sep 2010 @ staffordshire, uk
#1873
Originally Posted by yodawg View Post
games loading slow is due to your internet speed not flash 10 right?

i have heard that although flash 10 contents loads but micro b browser crashes when trying to interact with it but it seems like everything is working fine for you which is great!

so it seems like we now more or less have access to flash 10!
no crashes my end but if i'm after flashgames etc i tend to use laptop (bikemania rocks) only used flash on n900 to show friends the odd youtube video
__________________
Bob want's to save you even if it means killing you!

It's not often the stuff i type is helpful/useful so say thanks if it is
 
Posts: 133 | Thanked: 17 times | Joined on May 2010
#1874
great so its seems flash 10 is stable for some people
 
bingomion's Avatar
Posts: 528 | Thanked: 345 times | Joined on Aug 2010 @ MLB.AU
#1875
Kudos to ajack!!
http://talk.maemo.org/showpost.php?p...postcount=1835

Wish he/she posted sooner... I've been trolling this damn thread!! lol
Also a donation button somewhere would be a good idea.... I'm keen to get this moving as would so many

I to get the red bar, tried it on street view.. it worked!!
I'll try facebook vids today
Thanks again ajack... keep us posted!!!
 
rebhana's Avatar
Posts: 579 | Thanked: 471 times | Joined on Jan 2010 @ Austria
#1876
Having tested this leaked 10.1 plugin, I soon switched back to the native one. But it's certainly good to have the option of a real if somewhat unstable 10.1 flashplayer for cases where tweakflashver is not enough. To be able to switch between the different versions I found that it's simplest to do that by symbolic links, like so (as root):
  1. Install experimental version in, say, new subdirectory 10.1:
    Code:
    mkdir /usr/lib/browser/plugins/10.1
    cp /path/to/new/libflashplayer.so /usr/lib/browser/plugins/10.1
  2. Move original version to, say, new subdirectory orig:
    Code:
    mkdir /usr/lib/browser/plugins/orig
    mv /usr/lib/browser/plugins/libflashplayer.so /usr/lib/browser/plugins/orig
To activate 10.1 version I do
Code:
ln -sf /usr/lib/browser/plugins/10.1/libflashplayer.so /usr/lib/browser/plugins/libflashplayer.so
and to activate the original version I do
Code:
ln -sf /usr/lib/browser/plugins/orig/libflashplayer.so /usr/lib/browser/plugins/libflashplayer.so
It's of course easy enough to define shortcuts (e.g. shell aliases for root when using ssh) to have a more convenient switch, or even make a simple dedicated app.
__________________
Need more apps for the N900? Check out Qole's Easy Debian and read the wiki!
My Easy Debian installation log

Last edited by rebhana; 2011-01-27 at 22:34.
 

The Following 3 Users Say Thank You to rebhana For This Useful Post:
Posts: 133 | Thanked: 17 times | Joined on May 2010
#1877
Originally Posted by rebhana View Post
Having tested this leaked 10.1 plugin, I soon switched back to the native one. But it's certainly good to have the option of a real if somewhat unstable 10.1 flashplayer for cases where tweakflashver is not enough. To be able to switch between the different versions I found that it's simplest to do that by symbolic links, like so (as root):
  1. Install experimental version in, say, new subdirectory 10.1:
    Code:
    mkdir /usr/lib/browser/plugins/10.1
    cp /path/to/new/libflashplayer.so /usr/lib/browser/plugins/10.1
  2. Move original version to, say, new subdirectory orig:
    Code:
    mkdir /usr/lib/browser/plugins/orig
    mv /usr/lib/browser/plugins/libflashplayer.so /usr/lib/browser/plugins/orig
To activate 10.1 version I do
Code:
ln -sf /usr/lib/browser/plugins/10.1/libflashplayer.so /usr/lib/browser/plugins/libflashplayer.so
and to activate the original version I do
Code:
ln -sf /usr/lib/browser/plugins/orig/libflashplayer.so /usr/lib/browser/plugins/libflashplayer.so
It's of course easy enough to define shortcuts (e.g. shell aliases for root) to have a more convenient switch, or even make a simple dedicated app.
wow this is great for on the fly flash version switching, thanks!
if you know how to make a dedicated app for the switch please keep us posted or tell us any other shortcut
 
bingomion's Avatar
Posts: 528 | Thanked: 345 times | Joined on Aug 2010 @ MLB.AU
#1878
I wouldn't bother with an app.. just make an alias
Good idea on the linking!

Why do you need to change back to 9?
Not many sites now support ver 9.
 
rebhana's Avatar
Posts: 579 | Thanked: 471 times | Joined on Jan 2010 @ Austria
#1879
Originally Posted by bingomion View Post
I wouldn't bother with an app.. just make an alias
Good idea on the linking!

Why do you need to change back to 9?
Not many sites now support ver 9.
Note that a simple alias only works for root, for example when you ssh into the device.

I actually found that tweakflashver is (so far) enough for almost all of my purposes (google streetview I use through an Easy Debian app to which I pointed somewhere above in this thread).

EDIT: After some failed attempts, I managed to set up shortcuts where I don't need ssh to get root: Provided rootsh is installed, adding the following lines to /home/user/.profile
Code:
alias flash10='/usr/bin/rootsh /bin/ln -sf /usr/lib/browser/plugins/10.1/libflashplayer.so /usr/lib/browser/plugins/libflashplayer.so'
alias flash9='/usr/bin/rootsh /bin/ln -sf /usr/lib/browser/plugins/orig/libflashplayer.so /usr/lib/browser/plugins/libflashplayer.so'
allows one to just say "flash10" or "flash9" in XTerminal to activate the respective flashplayer. One should of course stop and restart the browser when doing so.
__________________
Need more apps for the N900? Check out Qole's Easy Debian and read the wiki!
My Easy Debian installation log

Last edited by rebhana; 2011-01-27 at 23:00.
 

The Following 3 Users Say Thank You to rebhana For This Useful Post:
Posts: 133 | Thanked: 17 times | Joined on May 2010
#1880
my results with this flash 10 plugin mimic that of an earlier post in the sense that content loads slower than normal and if i try to interact with it micro b reloads the website thus heavily limiting the usefulness of the plugin in and oh yea i also get the red rectangular bar in all flash content
 
Reply

Tags
adobe, adobe flash, blahblah, flash, flash 10, flash 10.1, fremantle, future, idiotic thread, maemo, maemo 5, nokia, nokia fails, update


 
Forum Jump


All times are GMT. The time now is 05:33.