Skip to content
Back to formatted view

Raw Message

Message-ID: <4b4206c7.0e0db80a.5127.ffffd5f8@mx.google.com>
Date: 2010-01-04T15:18:30Z
From: Thomas Roth
Subject: locator and print

Hi,

Using the following R-Code the printing via print takes place after locator
although print is placed before locator

###
test = function()
{
plot(1:10)
print("test")
locator(1)
}

test
###

Is there some way to force the printing before locator is being evaluated. I
assume that there is some buffer that needs to be turned off? Where do I
have to look. Locator and print help page don't cover this problem.

Thanks in advance,

Thomas