Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Use function details outside function

Explorer ,
Jul 07, 2020 Jul 07, 2020

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);

 

191
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jul 07, 2020 Jul 07, 2020

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.

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 08, 2020 Jul 08, 2020
LATEST

Thank you Klaus, I will keep this in mind.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines