1

In my IdaPython script I print function that I found.

print(func_address)

How can I do that if user click on this function (in output windows) Ida will jump to this function?

1 Answer 1

1

Just print address as hex-value:

print("%08x" % func_address)

So in Output window:

Python>print(0x1001CC80)
268553344     # <---- this is not clickable
Python>print("%08x" % 0x1001CC80)
1001cc80      # <---- this is clickable
2
  • Is there any way to give a name to clickable? like "press here" and this link to address? Commented Apr 20, 2020 at 6:31
  • IDA can jump only if it knows the name or address. You can print a comment with address like print("click on address to jump: %08x" % ea) Commented Apr 20, 2020 at 17:25

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.