-
1. Re: flv player works in IE but does not in Chrome or Firefox
kglad Jun 24, 2013 6:25 AM (in response to jurneys)what's your url and what needs to be done to see the problem?
-
2. Re: flv player works in IE but does not in Chrome or Firefox
jurneys Jun 24, 2013 6:48 AM (in response to kglad)url is here,
http://bootlegbaby.web.fc2.com/
Go to 'works' and there are some icons to open up each player for each movie.
None of them works in Chrome and Firefox.
-
3. Re: flv player works in IE but does not in Chrome or Firefox
kglad Jun 24, 2013 6:58 AM (in response to jurneys)your first errors seen when loading your site are;
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at AS3glow_mc/frame1()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at MethodInfo-4394()
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.utils::Timer/tick()
and when clicking the links at works, it looks like there's a path problem. what code are you using to the first video at works?
-
4. Re: flv player works in IE but does not in Chrome or Firefox
jurneys Jun 24, 2013 4:45 PM (in response to kglad)Thanks so much for the information, I will look into the error about AS3glow_mc.
This is the code for the movie the end of the left 'Showreel'
------------------------------------------------------------------------------------------ ------------------
import fl.video.*;
import caurina.transitions.Tweener;
ShowreelPreview_mc.mouseEnabled = false;
//ShowreelPlayer.load("http://bootlegbaby.web.fc2.com/flv/ShowreelHDV.flv");
ShowreelPlayer.autoRewind = true;
ShowreelPlayer.addEventListener(VideoEvent.PLAYING_STATE_ENTERED, ShowreelPreviewFadeOut);
ShowreelPlayer.addEventListener(VideoEvent.STOPPED_STATE_ENTERED, ShowreelPreviewFadeIn);
ShowreelPlayer.addEventListener(VideoEvent.COMPLETE, ShowreelPreviewFadeIn);
function ShowreelPreviewFadeOut(event:Event):void
{
Tweener.addTween(ShowreelPreview_mc, {time:1, transition:"Linier", alpha:0});
}
function ShowreelPreviewFadeIn(event:Event):void
{
Tweener.addTween(ShowreelPreview_mc, {time:1, transition:"Linier", alpha:1});
}
------------------------------------------------------------------------------------------ ------------------
There is .load command commented out, but I am putting source name directly into the player, which is also http://.
For the future, could you please let me know how did you see those error log?
-
5. Re: flv player works in IE but does not in Chrome or Firefox
kglad Jun 24, 2013 9:19 PM (in response to jurneys)use a relative path:
ShowreelPlayer.load(flv/ShowreelHDV.flv");
to see flash errors, use the debug player.
to analyze network traffic, i use firebug addon in firefox.
-
6. Re: flv player works in IE but does not in Chrome or Firefox
jurneys Jun 24, 2013 9:48 PM (in response to kglad)Used relative path, still only works on IE.
Found Chrome has Developers tool too, this would help me out find problems.
I'd try debug player too.
Wonder this could be server problem, I will ask support for server provider.
Thanks so much for help me out, grad if you could let me know when you turn out something else later on.
-
7. Re: flv player works in IE but does not in Chrome or Firefox
kglad Jun 25, 2013 5:26 AM (in response to jurneys)it's the flv that's the problem.
it looks like you're attempting to load /web/index.html from http://bootlegbaby.web.fc2.com/Main.swf
and, that's the path problem.
-
8. Re: flv player works in IE but does not in Chrome or Firefox
jurneys Jun 27, 2013 12:49 AM (in response to kglad)I have looked into original fla file on flash, but can not find any code attenpting to load index.html.
I have put one single player and uploaded it as Main.swf, still only works on IE.
In Chrome's Developer Tools, get same kind of error;
http://bootlegbaby.web.fc2.com/MinimaFlatCustomColorPlayBackSeekCounterVolMute.swf
Redirect
404 Not Found
index.html
error.fc2.com/web
Do you mean uploaded flv format could have setting problems?
-
9. Re: flv player works in IE but does not in Chrome or Firefox
jurneys Jun 27, 2013 7:21 PM (in response to jurneys)Problem solved eventually.
Needed swfs for flv player's ui, such as 'SkinUnderAllNoCaption.swf' uploaded at the same place as Main.swf.
File was missing in sever and then wrongly picked up index.html.
Again thanks for help, kglad.
-
10. Re: flv player works in IE but does not in Chrome or Firefox
kglad Jun 27, 2013 7:38 PM (in response to jurneys)you're welcome.


