Author Topic: Mozilla Firefox  (Read 3300 times)

bexisgod

  • Newbie
  • *
  • Posts: 3
Mozilla Firefox
« on: June 11, 2009, 09:26:59 am »
I realise there's a topic further down the page but it's been locked so I can't post in it.

I'm having a problem with megazine in Firefox in that it isn't loading the javascript functions.  It works in IE and Safari perfectly but for whatever reason Firefox just displays a blank page with the background colour.

Not so sure if it's a bug or something wrong in the code.  Would I be able to send someone my files to have a look at and see if they can resolve this issue please?

Thanks in advance

bexisgod

  • Newbie
  • *
  • Posts: 3
Re: Mozilla Firefox
« Reply #1 on: June 11, 2009, 09:29:59 am »
P.S. I think it's version 1.29 that I have

phyton2706

  • Translator
  • Newbie
  • *
  • Posts: 24
Re: Mozilla Firefox
« Reply #2 on: June 11, 2009, 12:38:51 pm »
Hallo bexisgod,

Please post al link to your site, so we can take alook...

Phyton2706

jenn2133

  • Newbie
  • *
  • Posts: 1
Re: Mozilla Firefox
« Reply #3 on: June 20, 2009, 05:29:56 am »
Hello!

I am also having this same problem with viewing the finished flipbook in Firefox, version 3.0.11. I'm hoping someone can post a fix on this soon as I'd really like to use this product to show my portfolio to a client!

Thanks in advance.

ganstar

  • Newbie
  • *
  • Posts: 4
Re: Mozilla Firefox
« Reply #4 on: June 22, 2009, 02:57:04 pm »
Me too!

Help please :)

/Rikke

Florian Nücke

  • κρύα πόδια
  • Administrator
  • Hero Member
  • *****
  • Posts: 1985
  • MegaZine3 Developer
    • MegaZine3
Re: Mozilla Firefox
« Reply #5 on: June 23, 2009, 08:31:56 pm »
Can't really say where your problem is... I'm using Firefox on a regular basis, and it works just fine. Are you sure you have the Flash plugin for Firefox installed?
For the Snark was a Boojum, you see.

Before you ask a question
          After you get an answer
  • please document your problem with the answer in the Project Wiki. (e.g. in the FAQs)
  • help others out if you can, by answering their questions on the forum.

bexisgod

  • Newbie
  • *
  • Posts: 3
Re: Mozilla Firefox
« Reply #6 on: June 26, 2009, 02:51:48 pm »
I've just checked the original on the CD, it came with Computer Arts Magazine April 2009 issue and the actual one on the CD works in IE but not Firefox...weird  ???

ramjet

  • Newbie
  • *
  • Posts: 23
Re: Mozilla Firefox
« Reply #7 on: July 02, 2009, 10:12:21 am »
I've been experimenting a bit and i noticed this:
If in your xml the paths are like this:
Code: [Select]
<img src="src\globe.swf"/> Internet Explorer is ok with it, but Firefox 3 isn't
If they are like this:
Code: [Select]
<img src="src/globe.swf"/>  then both browsers are fine.
Note the difference between / and \
If you are producing your xml with pdf2megazine, and you type say
Code: [Select]
pdf2megazine.bat T.pdf files\page 60 600 900 into the command prompt, then your megazine.xml will be written using \ instead of /, and Firefox won't find your asset.
If you type
Code: [Select]
pdf2megazine.bat T.pdf files/page 60 600 900  then all is good.
This may not be your problem, but I hope that helps.
« Last Edit: July 02, 2009, 10:16:07 am by ramjet »

Florian Nücke

  • κρύα πόδια
  • Administrator
  • Hero Member
  • *****
  • Posts: 1985
  • MegaZine3 Developer
    • MegaZine3
Re: Mozilla Firefox
« Reply #8 on: July 04, 2009, 04:42:57 pm »
Hi ramjet,

it works in IE because it's a Microsoft product ;)

The backslashes (\) are actually not valid in URLs, but
IE supports it because Windows uses it as directory
separators.
Slashes (/) on the other hand are the standardized
separator in URLs, so IE has to support those as well.

Hope that clears things up a bit.
For the Snark was a Boojum, you see.

Before you ask a question
          After you get an answer
  • please document your problem with the answer in the Project Wiki. (e.g. in the FAQs)
  • help others out if you can, by answering their questions on the forum.

ramjet

  • Newbie
  • *
  • Posts: 23
Re: Mozilla Firefox
« Reply #9 on: July 05, 2009, 01:17:22 am »
Cool, i didn't phrase that very well but i was trying to point out to bexisgod, jenn2133 and ganster that their problem may be caused by this.
 :D