Revlet crashes when opening file in Firefox

Bringing the internet highway into your project? Building FTP, HTTP, email, chat or other client solutions?

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
uabclst
Posts: 7
Joined: Thu Feb 10, 2011 2:15 pm

Revlet crashes when opening file in Firefox

Post by uabclst » Mon Feb 28, 2011 3:50 pm

Hi,

Here's a strange problem. Maybe a bug. I have also mailed (bugs @ runrev . com) about the matter.

When I use "answer file" in a revlet running on Firefox 3.6.13 it crashes and Windows (Vista Business) reports: "revWebPlayer for Win32 has stopped working."

This comes after trying to open a file. The code parts involved are shown below.

On desktop version and when running the revlet on IE8 the code works. It is just on Firefox I get the error.

In the Standalone Application Settings I have checked "Ask Dialog" and "Answer Dialog" and included the "internet" and "SSL and Encryption" script libraries. On the Web tab I have checked "Disk","Network and "Privacy" and all platforms supported.

I have the latest plugin (4.0.0.950).

Anyone have any idea?

Thanks

Code: Select all

on menuPick pItemName
   global theFilePath
   switch pItemName
      case "Open"
      get openFile()
      break
   end switch
end menuPick

function openFile
   global theFilePath
   answer file "Open data file"
-------------------------- program crashes here -----------
   if it is "" then return false
   put "file:" & it into theFilePath
   put URL theFilePath into fld "SourceField"
   return true
end openFile

BvG
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 1236
Joined: Sat Apr 08, 2006 1:10 pm
Location: Zurich
Contact:

Re: Revlet crashes when opening file in Firefox

Post by BvG » Mon Feb 28, 2011 5:24 pm

The default email is support at runrev etc. So if you do not receive an answer to your mail, try that one.

I know that there where problems with "answer" in the beta, but haven't used web deployment since, so can't help with that.
Various teststacks and stuff:
http://bjoernke.com

Chat with other RunRev developers:
chat.freenode.net:6666 #livecode

Post Reply

Return to “Internet”