Is it possible to insert hyperlink into NSRunAlertPanel
message text, using standard apple tools?
Asked
Active
Viewed 659 times
2

Feo
- 161
- 6
-
1You should avoid using the `NSRunAlertPanel()` function and use the `NSAlert` object instead. – Rob Keniger Apr 24 '12 at 02:22
1 Answers
4
I don't think that this is possible because the message in an NSAlert
panel is just a string, or in other words just simple text. If it wasn't just a string but for example NSMutableAttributedString
, that would be possible.
So I suggest you create a custom panel, view or window and your hyperlink in that.

Rob Keniger
- 45,830
- 6
- 101
- 134

Justin Boo
- 10,132
- 8
- 50
- 71