0
Use function details outside function
Explorer
,
/t5/framemaker-discussions/use-function-details-outside-function/td-p/11271593
Jul 07, 2020
Jul 07, 2020
Copy link to clipboard
Copied
Hi,
I am using this function/code to get marker text. I want to use the output of this function in another function which I am unable to do so.
Is there a way to store/use the text2 outside this function?
#target framemaker
var doc, marker, nextMarker, regex, text2;
regex = /^newlink Filename\:.*/;
doc = app.ActiveDoc;
function getMarker(doc, text2){
marker = doc.FirstMarkerInDoc;
while (marker.ObjectValid () === 1) {
nextMarker = marker.NextMarkerInDoc;
if (marker.MarkerTypeId.Name === "Hypertext") {
if (regex.test (marker.MarkerText) === true) {
text2 = marker.MarkerText;
}
}
marker = nextMarker;
}
}
alert (text2);
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Enthusiast
,
/t5/framemaker-discussions/use-function-details-outside-function/m-p/11271639#M66685
Jul 07, 2020
Jul 07, 2020
Copy link to clipboard
Copied
It's Javascript basic:
call function like this:
var Text = getMarker(doc, pgf, text2)
function getMarker(doc, pgf, text2){
.
.
.
.
return text2
}
We all like to help you with special problems, but your questions indicate that you have not yet mastered the basics.
I would suggest that you get into the basics of programming first.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
sam95317750
AUTHOR
Explorer
,
LATEST
/t5/framemaker-discussions/use-function-details-outside-function/m-p/11274438#M66698
Jul 08, 2020
Jul 08, 2020
Copy link to clipboard
Copied
Thank you Klaus, I will keep this in mind.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

