search for: hyperlinks

Displaying 20 results from an estimated 424 matches for "hyperlinks".

2008 Feb 13
1
[LLVMdev] Is there someone tried LLVM 2.1 on Visual Studio 2005?
If you are using the Express versions of Visual Studio, the Platform SDK(windows.h) is a seperate install that you have to download. Kevin Tew Ted Neward wrote: > Thanks--I was offline when I wrote it, couldn't Google. Found it in about 5 > seconds once I was back online. > > Second question: I'm getting various build errors relating (it seems) to > configuration:
2023 Mar 07
2
insert hyperlink into svg graphic
Perhaps this thread on stackoverflow (from a search on "include hyperlink in svg graphic") may be of use: https://stackoverflow.com/questions/41970535/a-hyperlink-in-svg-use Cheers, Bert On Tue, Mar 7, 2023 at 12:34?AM Rusty Travis <rusytravis19 at gmail.com> wrote: > Greetings, > > I am creating plots of weather data and wish to include a link to the > data source
2023 Mar 07
1
insert hyperlink into svg graphic
This was actually the first thing that ChatGPT debugged for me. The issue was that I was able to click on the link when I displayed the raw SVG in the browser (you can use that to test whether the syntax is even correct), but not when the svg displays inside a html page with the <img ...> tag. ChatGPT correctly identified the issue and suggested a solution using <object ...> tags
2006 Jun 09
3
SV: Database file to copy for active sessions.
Hello I can save you a lot of time, and tell you that it wont work. It does hold some registration information in the asterisk database, but most of the information is kept internally in Asterisk. Just FYI. Jon _____ Fra: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] P? vegne af Shenen Shenen Sendt: 9. juni 2006 11:37 Til:
2007 Mar 06
2
SVG and tooltips, hyperlinks
Dear all, is there a good way to create SVG plots with R whose elements have titles (tooltips) or act as hyperlinks? I am using the RSvgDevice package, which works great - but it doesn't seem to support the notion that plot objects have titles or are act as hyperlinks, so I am helping myself by giving the objects funny unique colors and then postprocessing the .svg file. I wonder whether somebody has al...
2023 Mar 07
1
insert hyperlink into svg graphic
Greetings, I am creating plots of weather data and wish to include a link to the data source into a title() object in the plot. My syntax must be wrong though, as the hyperlink doesn't display, just the text and tags. > svg("/tmp/temps.svg", width=9, height=6) > #plot created here > title(sub="produced by Rusty Travis? \nusing data from <a
2007 Jun 26
0
[1082] trunk/wxruby2/doc/textile/hyperlinkctrl.txtl: Added HyperlinkCtrl and HyperlinkEvent documentation
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2013 Mar 15
1
Creating a hyperlink in a csv file
Hi, I was wondering if it is possible to create a hyperlink in a csv file using R code and some package. For example, in the following code: links <- cbind(rep('Click for Google',3),"http://www.google.com") write.table(links,'test.csv',sep=',',row.names=F,col.names=F) the web address should be linked to 'Click for Google'. many thanks!
2023 Mar 08
1
insert hyperlink into svg graphic
On 3/7/23 13:12, Paul Murrell wrote: > Hi > > I think the main issue here is that you are *drawing* text on the > graphics device, so I would only expect to see literal XML text output > in the result. > ''' > > Hope that helps Thank you for your consideration of the matter, but that seems extraordinarily overly-complicated for the results of
2007 Apr 26
2
Can a hyperlink be placed, thorugh R programming, on a graph?
Hi, If I use x<-1:10 y<-rnorm(10,0,1) ### pdf(file="c:\\aldi\\test.pdf") plot(x,y) segments(x,y,x+2,y+2) segments(x,y,x+0.5,y+0.5,col=3) ### dev.off() ### q() Is there a way that I can imbed in the graph plot for each point defined by x to x+0.5 and y to y+0.5 (and colored in green) a different hyperlink? For example point one (together with the green tail) will have the
2009 Jan 10
1
Hmisc-xtable label
...but is not clear to me how to get around the label problem. The first table(longtable below) is generated with the latex function from Hmisc but for some reason when I try to hyperlink to it,it takes me to the top of the document. The second table created with the xtable package(bottom of document)hyperlinks OK, but if I would create the bottom table first using xtable and then create the longtable using Hmisc then the hyperlink works OK on the longtable but not on the other one. Thanks I'am using Sweave and Miktex, windows XP,R-2.8.1 to generate the document below: \documentclass[11pt]{articl...
2023 Mar 08
1
insert hyperlink into svg graphic
Hi On 8/03/23 15:27, Rusty Travis wrote: > On 3/7/23 13:12, Paul Murrell wrote: >> Hi >> >> I think the main issue here is that you are *drawing* text on the >> graphics device, so I would only expect to see literal XML text output >> in the result. >> ''' >> >> Hope that helps > > Thank you for your consideration of the
2006 Mar 22
0
Re: hyperlinks in Agile Web Development with Rails 1.1
My vote is that you maintain the hyperlinks! While working through the book, the code hyperlinks are essential to make sure one knows which version of depotNN is being referred to at the moment, for example, and as a convenient way of reviewing the code. And it is very useful to jump to in-depth references. I found the hyperlinks very helpfu...
2004 May 03
1
installed.packages hyperlink wrong in two spots (PR#6850)
Full_Name: Kevin Wright Version: 1.9.0 OS: Windows 2000 Submission from: (NULL) (170.54.59.160) The html help file for the 'library' function contains this sentence: Note that installed.packages() returns... The 'installed.packages' hyperlink points to 'installed.packages.html'. The latter file does not exist for me. I suspect the link should be to
2011 Dec 05
3
adding hyperlinked text to pdf plot
Howdy, I have read that if you put a URL in the text of a plot being saved into pdf, the result is a functional hyperlink. I am interested in having text in a plot that is linked to a URL, but I would like the text to be something other than the URL. Is this possible? Thank you. - Fincher
2013 Mar 15
2
Writing a hyperlink to a csv file
Hi, I was wondering if it is possible to create a hyperlink in a csv file using R code and some package. For example, in the following code: links <- cbind(rep('Click for Google',3),"google search address goes here") ## R Mailing list blocks if I put the actual web address here write.table(links,'test.csv', sep=',',row.names=F,col.names=F) the web address
2008 Dec 05
2
xtable html links
Hi, I was trying to get hyperlinks using xtable, but couldn't get the hyperlinks to function properly. For example, if I use ## Try to link NY times website to every figure in column 4 mat <- matrix(1:43,6,5) mat[,5] <- "http://nytimes.com" for(i in 1:nrow(mat)){ strr <- paste('<a href="'...
2005 Jul 15
2
rmpi in windows
Hi Folks, Has anyone been able to get rmpi to work under windows ? Thanks, Tolga Please follow the attached hyperlink to an important disclaimer <http://www.csfb.com/legal_terms/disclaimer_europe.shtml> ============================================================================== Please access the attached hyperlink for an important electronic communications disclaimer:
2007 May 04
0
new package: RSVGTipsDevice: create SVG plots with tooltips & hyperlinks
the DESCRIPTION file: Package: RSVGTipsDevice Version: 0.7.0 Date: 04/30/2007 Title: An R SVG graphics device with dynamic tips and hyperlinks Author: Tony Plate <tplate at acm.org>, based on RSvgDevice by T Jake Luciani <jakeluciani at yahoo.com> Maintainer: Tony Plate <tplate at acm.org> Depends: R (>= 1.4) Description: A graphics device for R that uses the w3.org xml standard for Scalable Vector Grap...
2005 Mar 04
2
how to draw graphs within clickable hyperlink
Hi all I want to draw a graph containing points and edges. Package graphics could do this. However I want to make each those points and edges clickable with a hyperlink on them. Anybody know how to do this? Thanks very much.