r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[Plugin-2] Browser Plugins

Louis
13-Oct-2006
[1821x10]
Ok, I put the data into the script as a block of blocks, but now 
the plugin cannot load the image files.


Am I at a deadend here? or is there still a way to make this work?
Simplicity is turning complicated.
If I use to-binary to convert an image to a binary string that can 
be stored in the View script, how can I then display it? 

image to-image binary-string 

doesn't work.
I remember seeing a script that did this once, but I don't remember 
which script it was. One of Carl's perhaps.
build-pack.r from the library seems to be just what I need.
No, I don't think build-pack.r will work either, as it would have 
to download all the data with the script before the slideshow would 
start.
I have one other idea.
Sweet success!  It now works perfectly running under Cheyenne on 
my local machine. Now for testing on a remote server.
Thank you Dockimbel! Cheyenne made this possible.
Thanks also to Anton, who always helps me through the difficult parts.
Anton
13-Oct-2006
[1831x2]
>> do as-string to-binary mold logo.gif
== make image! [100x24 #{
25252514141414.....
Louis, no problem. Glad I could help you.
Graham
22-Oct-2006
[1833x2]
Can someone at RT update the plugin test page http://www.rebol.net/plugin/tests/test.html
Anyone know how to set the footers, and headers for printing using 
the plugin ?
Graham
24-Oct-2006
[1835x4]
Since IE7 always opens a new window on browse/only, I wonder if I 
can use the plugin to setup a little server to control IE behaviour.
so, this little server waits for commands, and then either browses 
to the required page in an iframe, or, opens up a new tab and puts 
the page there.
What do people think?
rebol windowing system using the plugin http://www.timwylie.com/files/ros/ros.html
Maxim
24-Oct-2006
[1839]
that's pretty neat!
Graham
24-Oct-2006
[1840x3]
the main test page for the plugin doesn't work, but this does http://www.rebol.net/plugin/tests/double.html
Anyone know if it is possible to get the rebol plugin to cause the 
browser to navigate to another page.
In javascript this is done using window.open(), or window.location=(url)
Anton
24-Oct-2006
[1843]
There might be a way, but probably you can't rely on this technique, 
with browser security being what it is.
Graham
24-Oct-2006
[1844]
and this is?
Anton
24-Oct-2006
[1845]
I'm sorry, I don't know, just making the point that perhaps you shouldn't 
rely on this method.
Graham
24-Oct-2006
[1846]
Just installed FF2 and the plugin still works.
Anton
24-Oct-2006
[1847]
That's a good sign.
Mchean
6-Dec-2006
[1848x2]
Need some assistance in running the plugin from Opera9
After installing what do I have to do next
Graham
6-Dec-2006
[1850x2]
Do any of the demos work?  ( http://www.compkarori.com/reb/) is 
a working demo ...
many of the existing demos don't work.
Mchean
7-Dec-2006
[1852x2]
thanks Graham that does work
but you are right the other demos on the rebol site don't work
CharlesS
7-Dec-2006
[1854x2]
yea dont work for me either
doesnt*
Graham
7-Dec-2006
[1856]
they are written for the earlier plugins
Maxim
27-Jan-2007
[1857]
stupid questions... does current plugin allow us to access files 
and save out?  (using file browser or not)
Maxim
28-Jan-2007
[1858x3]
anyon can tell me how I can fix a web page containing a rebol plugin, 
so it detects the vertical size properly?
do-browser "document.getElementById('REBOL').offsetHeight" in firefox 
returns 19 !!
sorry, DAMN CTRL-S reset again:

do-browser "document.getElementById('REBOL').offsetHeight"

in IE returns proper height, in firefox 2.x I get 19
Oldes
28-Jan-2007
[1861]
try to use just .height
Chris
28-Jan-2007
[1862]
Use Firebug to inspect which DOM properties give you the correct 
height...
Maxim
6-Feb-2007
[1863x3]
talking about saving files in the plugin... I did a simple (very) 
test... 

rebol [] write %test.txt "test"
ran that in the browser and then did a full disk search and I never 
found One file named test.txt  :-(
reading seems to be ok... but not writing.
Volker
6-Feb-2007
[1866x2]
try a    alert mold what-dir
there is no linux-plugin :(
Maxim
6-Feb-2007
[1868x2]
IIRC It was argued, that it would be too easy to make DOS attacks 
... 
ex: 


loop 100000 [loop 10000000 [write/append %dos-attack.txt "1234567890"]
(talking about file writing)
Volker
6-Feb-2007
[1870]
hmm.  did not explore that far.