Re: LiveCode external/plugin question

2010-11-04 Thread Henk van der Velden
to remember that Director offers an option to run applications in true kiosk mode. So what you are looking for should be possible in some way or another. Kind regards, Henk On Nov 4, 2010, at 18:00 , use-revolution-requ...@lists.runrev.com wrote: I was looking for true kiosk mode so Marks advise using

Re: Resizable grid of thumbnails

2010-06-10 Thread Henk van der Velden
is divide the width of the stack by the width of the square, and then truncate the resulting value. That way you get the number of pictures on a row, and then, using a double loop, every picture is positioned. HTH, Henk On 09 Jun 2010, at 06:05, use-revolution-requ...@lists.runrev.com wrote: One

Re: send problem

2010-06-03 Thread Henk van der Velden
Maybe put double quotes around 'mouseUp'? Henk On 03 Jun 2010, at 01:45, use-revolution-requ...@lists.runrev.com wrote: In my stack's opencard handler the last line is send mouseUp to field x . There's other things happening in the handler before then, too. Problem is, after the stack opens

Re: RevBrowser Crash

2010-04-07 Thread Henk van der Velden
, Henk - Henk van der Velden Ludis studio Magda Janssenslaan 36 3584 GR Utrecht 0031 (0)30 262 66 89 0031 (0)61 602 43 37 www.ludisstudio.com ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url

Re: OT: Edu Users Interested in Art/3D Art and Rev

2008-12-04 Thread Henk van der Velden
Hi Lynn, Right now I'm using Unity for 3D work. There's also 3D in Flash (FreeSpin3D for instance) that I'm going to take a look at. If Rev can offer something different, I'm certainly interested. Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan

Re: locking, permissions, data

2008-07-23 Thread Henk van der Velden
check for the existence of a .rev~ file, and if one exists, remove the corresponding .rev file and change the extension from rev~ to rev. Kind regards, Henk On Jul 23, 2008, at 06:34 , [EMAIL PROTECTED] wrote: Yes, this could be it. They do every so often close it down using the on-off

Re: Passing variables between Flash and Rev

2008-07-14 Thread Henk van der Velden
user clicks a Save button (in Rev), Rev writes returnVariables or something to socket, Flash reads it and then writes the variable values back to the socket. Rev reads them and saves them to a file. Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan

Re: Passing variables between Flash and Rev

2008-07-11 Thread Henk van der Velden
need to click outside the browser image before I can click that button again. Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 36 3584 GR UTRECHT Netherlands 0031 (0)6 16 024 337 www.iglow-media.nl

Re: Passing variables between Flash and Rev

2008-05-19 Thread Henk van der Velden
developers: I need to use XMLSocket()? Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 36 3584 GR UTRECHT Netherlands 0031 (0)6 16 024 337 www.iglow-media.nl ___ use-revolution mailing list use-revolution

Re: Passing variables between Flash and Rev

2008-05-19 Thread Henk van der Velden
Thanks a lot; I'll dive into this. Henk On 19-mei-2008, at 19:00, [EMAIL PROTECTED] wrote: In the end, it works like this... you have Rev start listening for a socket connection, you have Flash connect to it, and you start communicating back and forth. -- Troy RPSystems, Ltd. http

RE: Passing variables between Flash and Rev

2008-05-14 Thread Henk van der Velden
these variables in an XML file using QTExternal. Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 36 3584 GR UTRECHT Netherlands 0031 (0)6 16 024 337 www.iglow-media.nl ___ use-revolution mailing list use

Rotate and scale images

2008-03-06 Thread Henk van der Velden
the minimal circumscribing rectangle every time? And what in case the image is rotated already and then I want to scale it? When using the normal horizontal / vertical scaling, the image gets skewed. Do I need to script the whole mathematics of this? Kind regards, Henk

Re: Quicktime and Encoder

2007-11-19 Thread Henk van der Velden
On 19-nov-2007, at 19:00, [EMAIL PROTECTED] wrote: 2. Has anybody a personal quality comparison between the Sorenson 3 codec and the new H.264? Is H.264 actually now the state of the art? Which codec is the best quality choice in your eyes for offline content, no streaming, not worrying

Re: Multiuser or not multiuser

2007-11-15 Thread Henk van der Velden
textfile to that folder. If you put both the username and the chosen lunch into the file, a user could eventually turn back and change his choice. You could create another app that collects all the text files and creates a list out of it. Kind regards, Henk On 15-nov-2007, at 15:56, [EMAIL

revBrowser and spaces in URLs

2007-10-10 Thread Henk van der Velden
for this problem? I have tested the same URL's in Safari, and they are handled OK. This happens on Mac OS X 10.4.10, Safari 3.0.3. I haven't tested on Win yet. Kind regards, Henk -- Henk v.d. Velden iGlow Media ___ use-revolution

Re: revBrowser and spaces in URLs

2007-10-10 Thread Henk van der Velden
in Safari, and they are handled OK. This happens on Mac OS X 10.4.10, Safari 3.0.3. I haven't tested on Win yet. Just urlEncode the url first and it should work: see urlEncode/ urlDecode entries in the docs. Kind regards, Henk -- Henk v.d. Velden iGlow Media

Re: sqlite and update

2007-08-06 Thread Henk van der Velden
Hi Ralle, Next to Christian's reply, consider using an array. Your input should read like this: put fld name into data[1] put fld vorname into data[2] That way you don't need the long list of variables at the end of your query. And there's a typo you may have missed: ::16 Regards, Henk

Re: mysql: troubles with insert

2007-07-20 Thread Henk van der Velden
arrays. Rev 'does' only associative arrays, not numeric arrays, isn' t it? I was a bit surprised to find out that I had to use numeric arrays in order to build queries. Just a thought.. Henk Henk- Probably a silly question, but I don't suppose id is an auto_increment field? If so, you want

mysql: troubles with insert

2007-07-19 Thread Henk van der Velden
of setting the id of the new record to 21, it sets it to 11. 11 happens to be one of the missing / deleted record id's. When I want to add another record, I get an error message because there is already a key with value 11 in the first column. Can anyone tell me what's going on here? Henk v.d

XML Tree and spaces

2007-05-02 Thread Henk van der Velden
Hi Nic, have you taken a look at Sarah's XMLDemo (http://www.troz.net/Rev/ tutorials.php)? An XML node can contain spaces for sure. What exactly do you do to display the value of a node? Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 36 3584 GR

Re: How does ask file with type work?

2007-04-05 Thread Henk van der Velden
Hi Dave, There is a sample stack FileFiltering at my userspace henk at Revonline, showing the different options of the answer file command. If you know the extension of the file that is going to be saved, you could check whether an extension is added to the filename of not. If there's

unknown software exception

2007-03-21 Thread Henk van der Velden
: - is anyone acquainted with this specific error? Any tips? - what's the best way to go on from here? Is there any general advice as to how this sort of error can be debugged (remember these are school computers, so messing up with the configuration is no option)? Kind regards, Henk

Re: 2 dimensional Arrays

2007-03-14 Thread Henk van der Velden
a look at http://www.sonsothunder.com/devres/revolution/tips/arry001.htm Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 36 3584 GR UTRECHT Netherlands 0031 (0)6 16 024 337 www.iglow-media.nl I have a two dimensional array in my program and I am

[ANN] MediaMaatje 1.1 released

2007-02-24 Thread henk
Revolution. So everyone is invited to take a look. Any comments are welcome. Kind regards, Henk v.d. Velden henk (at) iglow-media.nl iGlow Media Utrecht, the Netherlands This message was sent using IMP, the Internet Messaging Program

game navigation: some advice

2007-02-09 Thread Henk van der Velden
, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 36 3584 GR UTRECHT Netherlands 0031 (0)6 16 024 337 www.iglow-media.nl ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url

multiplayer game on LAN

2007-02-09 Thread Henk van der Velden
into account, on how to set this up. I see an option to use socket communications, like in chatservers and clients. Or I could perhaps use communication between standalones, with every client communicating with a kind of 'game server'. Any opinions? Kind regards, Henk

Re: Display a text on a movie (Ludovic Th?bault)

2007-01-15 Thread henk
Hi Ludovic, set the alwaysbuffer of your movie to true and you can put text fields on top of it. Henk Thanks, but i want add text in Rev. I've made a little stack to sync subtitles, and there is a video preview, but actually, subtitles are outside the video because i can't put it on the video

Copy group to new stack

2006-12-18 Thread Henk van der Velden
don't create an extra card. But as soon as you create one, the copying fails. Can anyone tell me what's going on here? The stack can be downloaded here: http://www.iglow-media.nl/xchange/ CopyToNewStack.zip Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda

Re: copy group to new stack

2006-12-18 Thread Henk van der Velden
is not copied (at least the text of editable fields). If I create a stack, but don't create new cards in that stack, than the copying works fine. Henk Hi Henk, Not sure to understand precisely your problem ; seems to be that you should group your fld fld_conclusion and set it to behave like

Re: copy group to new stack

2006-12-18 Thread Henk van der Velden
an editable text field from stack A to stack B It turns out that the text of the editable text field is not copied to stack B, only the (empty) field. If you skip step 2a, both the editable field and its content are copied to stack B. Any opinions on this? Henk Hi André, The stack

Re: [ANN] New PenTool Script

2006-11-22 Thread Henk van der Velden
the file filtering is cross platform. Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 36 3584 GR UTRECHT Netherlands 0031 (0)6 16 024 337 www.iglow-media.nl On 22-nov-2006, at 19:02, [EMAIL PROTECTED] wrote: [ANN] New PenTool Script Alejandro

Re: Where Rev could be going...3D?

2006-11-22 Thread Henk van der Velden
the only way to do 3D in Rev, since Axel is dead. Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 36 3584 GR UTRECHT Netherlands 0031 (0)6 16 024 337 www.iglow-media.nl On 22-nov-2006, at 19:02, [EMAIL PROTECTED] wrote: From: Viktoras

proxy authentication

2006-11-16 Thread henk
: is that .dll still needed? Rev's own libURL doesn't support this scheme? In one posting on the list a reference was made to a handler 'libUrlSetAuthToken', but in the documentation I can't find anything about it. Can anyone tell me more about this one? Kind regards, Henk v.d. Velden

Re: proxy authentication

2006-11-16 Thread Henk van der Velden
Hi Dave, The supported schemes are Negotiate, NTLM and Kerberos - no Basic scheme. It's a Windows system. I would be very glad if you could send me the package with the dll and the sample. You can contact me off list. Kind regards, Henk -- Henk v.d. Velden iGlow

HTTPProxy

2006-11-07 Thread Henk van der Velden
|6924 CLOSED 10.1.1.10:80|6924 GET http://www.mediamaatje.nl:80/Download/ HTTP/1.1 Host: www.mediamaatje.nl User-Agent: Revolution (Win32) I must admit that I am not an expert in network matters. So could anyone perhaps give me a clue as to what I can do in this situation? Kind regards, Henk

Re: App integration - anyone done this?

2006-10-28 Thread Henk van der Velden
external of Trevor deVore gives some possibilities to interact with Flash / Actionscript. Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 36 3584 GR UTRECHT Netherlands 0031 (0)6 16 024 337 www.iglow-media.nl On 28-okt-2006, at 19:02, [EMAIL

Re: Multimedia Authoring - Quicktime Dead?

2006-10-21 Thread Henk van der Velden
be attached to objects. For example if you want an object to bounce inside a box, you can just attach the behavior to it, fill in some parameters and you're done. Of course LSP has it's limitations, but they are (at least) as much QuickTime's limitations as they are LSP's. Kind regards, Henk

Re: use-revolution Digest, Vol 37, Issue 37

2006-10-20 Thread Henk van der Velden
from the .xls file, you will run into a lot of difficulties, I think. These files contain lots of data that you are probably not interested in, so you have to filter the data. And in order to do that, you have to understand the file format. Kind regards, Henk

Re: shortcut problems

2006-10-20 Thread Henk van der Velden
to Desktop. In the last case the 'Start In field gets its proper value automatically. In the first case it is left blank. I still have to check whether short cuts created by Revolution have this property set. Thanks for your help, Henk On 16-okt-2006, at 16:28, [EMAIL PROTECTED] wrote

Re: Use of Flash animations in Revolution

2006-10-20 Thread Henk van der Velden
Hi Steve, only as long as the interactivity is Flash 5 compatible. You can also use altBrowser, which actually displays your Flash movie in Revolution through the browser. That way you can have Flash content displayed up to the current Flash version. Kind regards, Henk Stgoldberg

Re: enable flash

2006-10-17 Thread Henk van der Velden
Sorry Ken, I should have been more specific. Trevor DeVore told there was a workaround on the Quicktime-api list: http://lists.apple.com/archives/quicktime-api/2006/Sep/msg00103.html However the workaround is beyond my understanding. Can I use this in Revolution? How? Kind regards, Henk

shortcut problems

2006-10-16 Thread Henk van der Velden
the defaultURL is the URL of the desktop where the shortcut is located (C:/Documents and Settings/carels/Bureaublad) instead of the folder where the program is located (//Bellefleur/M-schijf/Leerlingen/ de dijk/hardinxveld.exe). How can this be? What can be done about it? Kind regards, Henk

enable flash

2006-10-16 Thread Henk van der Velden
Good day, From QuickTime 7.1.3 on Flash playback is an option, and it's default is off. Is there any way to change this to 'on' programmatically? Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 36 3584 GR UTRECHT Netherlands 0031 (0)6 16 024

edit xmp metadata: developers needed

2006-09-27 Thread Henk van der Velden
of functionality - an estimation of the costs You can contact me off list. Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 44 3584 GR UTRECHT 0031 (0)6 16 024 337 www.iglow-media.nl ___ use-revolution mailing list use

Re: quicktime 3D

2006-07-11 Thread Henk van der Velden
a text based file format). So the best thing would probably be to use altBrowser to display web pages inside Revolution, and have your 3D files played in the web page. Kind regards, Henk On 10-jul-2006, at 18:23, [EMAIL PROTECTED] wrote: From: Viktoras Didziulis [EMAIL PROTECTED] Date: 10

Re: Associating Icons with Standalone Applications.

2006-06-08 Thread Henk van der Velden
this combination to work properly now. In the end I have created custom icons on Windows using IconDeveloper, and these are OK. Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 44 3584 GR UTRECHT 06 16 024 337 www.iglow-media.nl

Re: launch QT installer

2006-06-07 Thread Henk van der Velden
Danke Klaus, thanks Ken, Dag Henk, Good day all, My application launches the QuickTime 7.1 Installer on Windows XP. The installer starts and then I get an error message: http://www.iglow-media.nl/xchange/foutmeldingQTinstaller.gif This is the QT standalone installer, saved locally

launch QT installer

2006-06-06 Thread Henk van der Velden
QuickTimeInstaller.exe or get shell(start QuickTimeInstaller.exe). The same method works OK with the QuickTime 6.5 standalone installer. Anyone any ideas about what's happening? What can be done to fix this? Kind regards, Henk -- Henk v.d. Velden iGlow Media Magda Janssenslaan 44

Re: imagedata in Word XML

2006-03-22 Thread Henk van der Velden
and set the text of that image to the decoded binary data. Henk ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman

Re: imagedata in Word XML

2006-03-22 Thread Henk van der Velden
to base64Decode(theData) The hard part of course is to parse Word XML in a proper manner. I'm working on that right now. I'll see where I get. If it works OK, I'm willing to share my code, of course. Henk On 22-mrt-2006, at 19:00, [EMAIL PROTECTED] wrote: I've done some testing, here are my results

Re: Integrating Revolution and Flash

2006-03-19 Thread Henk van der Velden
Hi Pradeep, you can also take a look at Trevor deVore's Enhanced QuickTime External: http://www.bluemangolearning.com/developer/revolution/ Kind regards, Henk On 18-mrt-2006, at 15:17, [EMAIL PROTECTED] wrote: Hi Pradeep, First, i would say yes, as long as flash can be handled trough

Re: imagedata in Word XML

2006-03-19 Thread Henk van der Velden
the WordXML node. Thanks. Henk On 18-mrt-2006, at 19:00, [EMAIL PROTECTED] wrote: Well, even though you decode the information from the WordML file, now you have a binary representation of a PNG or JPEG, etc., and that is not in a format proper for imageData, which is an array of 4-byte

imagedata in Word XML

2006-03-17 Thread Henk van der Velden
in a Word XML file. But then Word doesn't understand the data. Is there anyone who knows how Word's binary image data can be used in Rev? Kind regards, Henk ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe