hyperlink

Convert javascript links in PDF to real annotations

旧时模样 提交于 2019-12-13 05:04:34
问题 We are using javascript in PDFs to facilitate the automated creation of Goto page.. etc links, or based on certain keywords. LIke this: this.pageNum = 2 This works fine, as long the PDF is opened inside a viewer that supports javascript. I am now looking for a way, preferably i Java, to convert these annotations to real annotations, which will then be usable outside of Acrobat. I have done quite some research on the net so far (i think. ,) - but couldnt find an approach how to go on with that

XSL stylesheet: creating Hyperlink based of query item_id

我与影子孤独终老i 提交于 2019-12-13 04:51:36
问题 I am new to coding. Started XSL coding from past 1 month. I want to creat a hyperlink according to the item_id. But my concat is not working as desired. My requirement is that i have to get create hyperlinks based on the variable item_id For example: https://xyz.com/webpr/webpr.php?objtype=frames&g_startlink=maintain&g_startdata= 194970 &g_userid=msbzzh&g_session_id=6017650` https://xyz.com/webpr/webpr.php?objtype=frames&g_startlink=maintain&g_startdata= 194971 &g_userid=msbzzh&g_session_id

Possible to make my images called from a database to be a link to another page?

≡放荡痞女 提交于 2019-12-13 04:41:14
问题 <?php include 'dbconnect.php'; $query = mysql_query("SELECT * FROM champicons ") or die("Error: " . mysql_error()); echo "<table border='1' width='100%' >"; echo "<tr>"; $i = 0; while($row = mysql_fetch_array($query)){ if($i++%10 == 0) echo '</tr><tr>'; $image = $row[2]; echo "<td>"; echo '<img src="data:image/png;base64,' . base64_encode($image) . '" />'; echo "</td>"; } echo "</tr>"; echo "</table>"; ?> I'm calling 117 images which are small icons into a table with 10 images per row, I want

Execute a HTTP request within an app

孤街浪徒 提交于 2019-12-13 04:18:36
问题 I was wondering if I could make it open But NOT open the android browser, I just need it to visit: (pretend this is the ip) http;//91.91.91.91:2228?1, where it will trigger action on my arduino mega. I have tried to get it just to do this with this code onclick(Intent websiteIntent = new Intent(Intent.ACTION_VIEW); Uri uri = Uri.parse("http;//91.9.91.91:?1"); websiteIntent.setData(uri); startActivity(websiteIntent);) but I don't know how to get it to do so 回答1: A HttpClient will allow you to

VBA code to create formula depending on cell value

社会主义新天地 提交于 2019-12-13 04:07:01
问题 I have a spreadsheet with values in cells A to G. I need to read the data in Cell F, and depending on the data, formulate a hyperlink into the corresponding cell in column H, with the data from cell G (next to F) inserted within the hyperlink. EG 1 Cell F contains : DPD Cell g contains : 123456 Desire cell H to create hyperlink : =HYPERLINK("http://www.dpd.co.uk/tracking/quicktrack.do?search.consignmentNumber="&CELLG*&"&search.searchType=16&search.javascriptValidated=0&appmode=guest") EG 2

Open local folder from different browsers

寵の児 提交于 2019-12-13 03:59:24
问题 I'm developing an intranet (written in c#) and I need to access some local folders (stored in an internal server) using local links. I actually tried to use "\server-name\folder-name$" as link and it works fine on Internet Explorer. If used on Chrome though, nothing happens; worse on Firefox, where I get the 404 error message. I also tried to change the link (as seen in many posts here) in "file://server-name/folder-name$" or "file://///server-name/folder-name$", always working on IE, but

How to convert bbcode url tag to an html hyperlink using the bbcode tag's values?

﹥>﹥吖頭↗ 提交于 2019-12-13 03:57:41
问题 How can I convert a bbcode [url] tag to an <a> tag with an href attribute and text between the opening and closing tag? Here are some sample strings: [url]https://any.com/any[/url] [URL="https://any.com/any?any=333"]text text[/URL] [url]http://www.any.com/any?any=44#sss[/url] *Notice that the double quoted substring in the opening [url] tag is optional and impacts the desired output... I've tried this pattern: (?:\[url="(https?://(?:www)?.+?)\]|\[url\](https?://(?:www)?.+\[)) \[url="(https?:\

Get content of the page given by an URL thru Javascript

核能气质少年 提交于 2019-12-13 03:54:59
问题 Does anybody here solved a similar problem? I have a link that contains nothing but another link. For example, given a URL lets say it is www.abc123proxy.info. And then that URL contains another URL on its page (yeah, just text) lets say the URL for this one is www.masked-url.com?token=231940812093810. I need go to the second URL but I only have the first URL. This is what I want to happen: $(document).ready(function() {window.location = 'www.abc123proxy.info';}); // But I wanted to go to the

How can i add id and password (unique link) to survey link created with ibm spss data collection professional/author?

删除回忆录丶 提交于 2019-12-13 03:48:06
问题 I created a survey with ibm spss data collection professional/author. Survey link is like : http://survey.xxxyyy.com/mrIWeb/index.htm?I.Project=TestSurvey I would like to add id and password to survey link for personalization. I mean new link should be like: http://survey.xxxyyy.com/mrIWeb/index.htm?I.Project=TestSurvey&Id=xxxxxxxxx&PWD=xxxxxxxxx How can i do that? Thanks in advance for all your help. 回答1: It may be a little late for this answer, but this is quite easy to do. During Project

Counting hyperlinks on Google Sheets formula

怎甘沉沦 提交于 2019-12-13 03:47:57
问题 How do you count hyperlinked numbers within a simple Google Sheet formula? Currently the =SUM(F6:CS6) (for example) does not count cells with hyperlinks. 回答1: This requires a custom function, because built-in functions cannot detect what formulas are entered in other cells, they can only access values. The discussion at Google Product Forum confirms this. There is already a custom function posted there, but I wrote another one, a bit shorter and not case-sensitive: function countLinks