Notices

Multimedia Talk/Review Multimedia Apps for Dell's Axim. Mp3/DivX

Reply
 
LinkBack Thread Tools
Old 06-20-05, 08:06 PM   #1 (permalink)
Aximsite Rookie
 
Firenze's Avatar
DAP Site StaffDAP Site StaffDAP Site Reviewer
 
Join Date: Jun 2005
Location: Norway
Posts: 25
Thanked 0 Times in 0 Posts
Exclamation any way to view flash movies on a x50v?

is there any way to watch flash movies on a pda? I've tried installing macromedia flash player for ppc put when I tried opening the .swf file in IE it said the the filetype could not be opened or something of the sort.

any ideas?
Firenze is offline   Reply With Quote
Sponsor Ads
Old 06-20-05, 09:31 PM   #2 (permalink)
Aximsite All Star
 
Join Date: Apr 2005
Location: Wisconsin
Posts: 836
Device: HTC 6900 (Touch)
Carrier: Sprint
Thanked 1 Time in 1 Post
Try using a different browser. I have Access Netfront 3.1, but haven't tried playing any flash movies yet.
Storino03 is offline   Reply With Quote
Old 06-20-05, 11:50 PM   #3 (permalink)
Aximsite Minor League
 
OddbOd's Avatar
Member
 
Join Date: Nov 2004
Location: Australia
Posts: 208
Thanked 1 Time in 1 Post
Flash player is just an ActiveX control you need to give IE some information on how to play it. In this case a simple HTML file will do, simply paste the code below into notepad, change Whatever_your_Flash_File_is_called.swf to your swf's filename and save it as a .htm file then transfer it to the same directory as the swf. Now open the page in Pocket IE. If you want to change the size or quality then the values for this are clearly marked.
Code:
<HTML>
<HEAD>
<TITLE>FlashPlayer</TITLE>
</HEAD>
<BODY bgcolor="#53695C">
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=6,0,0,0"
 ID=rapier4  WIDTH=230 HEIGHT=255>
<PARAM NAME=movie VALUE="Whatever_your_Flash_File_is_called.swf">
<PARAM NAME=menu VALUE=false>
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#53695C>
</OBJECT>
</BODY>
</HTML>
OddbOd is offline   Reply With Quote
Old 06-21-05, 12:14 AM   #4 (permalink)
Aximsite Hall of Fame
 
Don't Panic!'s Avatar
Addicted Member
 
Join Date: Jun 2004
Location: Boston, MA USA
Posts: 8,173
Thanked 12 Times in 12 Posts

Awards Showcase
Aximsite Active Bronze Member Aximsite Active Silver Member Moderator Medal Bronze Poster 
Total Awards: 4

With the Macromedia player you need the .html file as well as the .swf file. Tap on the .html and the movie opens in Pocket Internet Explorer. There is a program out there that will grab the .html file for you but for the life of me I can't think of it's name. I think it's Chinese maybe?
__________________
Don't Panic!
Bobby
42
Soft-reset is our Friend
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Don't Panic! is offline   Reply With Quote
Old 06-21-05, 02:45 PM   #5 (permalink)
Aximsite Rookie
 
Firenze's Avatar
DAP Site StaffDAP Site StaffDAP Site Reviewer
 
Join Date: Jun 2005
Location: Norway
Posts: 25
Thanked 0 Times in 0 Posts
thanks all, creating an html file worked. however, what of there are many 50+ flash files i'd like to keep on my card for periodical viewing? making a html file for each of them can be a pain.
Firenze is offline   Reply With Quote
Old 06-21-05, 04:29 PM   #6 (permalink)
Aximsite Hall of Fame
 
Don't Panic!'s Avatar
Addicted Member
 
Join Date: Jun 2004
Location: Boston, MA USA
Posts: 8,173
Thanked 12 Times in 12 Posts

Awards Showcase
Aximsite Active Bronze Member Aximsite Active Silver Member Moderator Medal Bronze Poster 
Total Awards: 4

ctitanic's PFlashP player doesn't cost that much. and it looks like you'll only need the .swf file.

Another shareware option would be FlashAssist by antmobile software.
__________________
Don't Panic!
Bobby
42
Soft-reset is our Friend
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Don't Panic! is offline   Reply With Quote
Old 06-21-05, 09:33 PM   #7 (permalink)
Aximsite Prospect
 
Join Date: Nov 2004
Posts: 3
Thanked 0 Times in 0 Posts
I had the same problem as you Firenze. I have been using Bryht flash player - it has been stable and I like it.
One piece of advice if you use it. Switch your skin option to 640x480 skin.
geemboomba is offline   Reply With Quote
Old 06-22-05, 03:26 AM   #8 (permalink)
Aximsite Minor League
 
OddbOd's Avatar
Member
 
Join Date: Nov 2004
Location: Australia
Posts: 208
Thanked 1 Time in 1 Post
Give this a try, it's a rough and ready translation of a Japanese program that I found. Some of the text was not translatable as I don't have proper Japanese language support on this PC, but it's free and seems to work OK.

Personally I think it's a bit cheeky to charge people for a front-end to someone elses software but the decision is up to you. There must be a bored .NET CF programmer lurking around here that could hack up a player in a couple of hours, anyone?
Attached Files:
File Type: zip sh122_eng.zip (13.4 KB, 138 views)
OddbOd is offline   Reply With Quote
Old 06-22-05, 06:39 PM   #9 (permalink)
Aximsite Rookie
 
Firenze's Avatar
DAP Site StaffDAP Site StaffDAP Site Reviewer
 
Join Date: Jun 2005
Location: Norway
Posts: 25
Thanked 0 Times in 0 Posts
thanks, OddbOd.

ps: PFlashP is very nice ;)
Firenze is offline   Reply With Quote
Old 06-23-05, 12:20 PM   #10 (permalink)
Aximsite All Star
 
Vric's Avatar
Super Member
 
Join Date: Mar 2005
Location: Canada
Posts: 584
Thanked 0 Times in 0 Posts
Try Bryht Flash Player.
Vric is offline   Reply With Quote
Old 08-25-05, 10:47 AM   #11 (permalink)
dzr
Aximsite Minor League
 
Join Date: Aug 2004
Posts: 107
Thanked 0 Times in 0 Posts
I tried this with a web based flash video, using an http based URL. The flash player window comes up, but no video is loaded. The same html works fine on my PC.


[QUOTE=OddbOd]Flash player is just an ActiveX control you need to give IE some information on how to play it. In this case a simple HTML file will do, simply paste the code below into notepad, change Whatever_your_Flash_File_is_called.swf to your swf's filename and save it as a .htm file then transfer it to the same directory as the swf.
dzr is offline   Reply With Quote
Old 08-25-05, 11:30 AM   #12 (permalink)
Aximsite Legend
 
Join Date: Nov 2003
Posts: 13,629
Thanked 0 Times in 0 Posts

Awards Showcase
Moderator Medal Aximsite Active Silver Member Aximsite Gold Reviews Aximsite Bronze Referrer Aximsite Gold Tutorials Aximsite Bronze Contributors Aximsite Silver FAQs Aximsite Veteran Staff 
Total Awards: 10

Originally Posted by OddbOd
Give this a try, it's a rough and ready translation of a Japanese program that I found. Some of the text was not translatable as I don't have proper Japanese language support on this PC, but it's free and seems to work OK.

Personally I think it's a bit cheeky to charge people for a front-end to someone elses software but the decision is up to you. There must be a bored .NET CF programmer lurking around here that could hack up a player in a couple of hours, anyone?
Hey I just tried this and it works great! Thanks OddbOd, for a freeware alternative. :approve:
Gigi is offline   Reply With Quote
Old 08-25-05, 11:41 AM   #13 (permalink)
dzr
Aximsite Minor League
 
Join Date: Aug 2004
Posts: 107
Thanked 0 Times in 0 Posts
I tried it... It doesn't work for http based swf files as far as I can see.
dzr is offline   Reply With Quote
Old 01-07-06, 08:31 PM   #14 (permalink)
xdalaw
Guest
 
Posts: n/a
Worked for me. Thanks for the free version!!

I checked the japanese page and I think there's a newer version, too. But, I didn't know what to do after finding it. :rolling:
  Reply With Quote
Reply

Tags
flash, movies, view, x50v

Sponsor Ads

Thread Tools

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 -5. The time now is 11:33 PM.
Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Copyright © 2003-09 LeckMedia, LLC