Hyperlink constructor

init

Creates an instance of a hyperlink.

def __init__(self, url):
    ...
ParameterTypeDescription
urlstrHyperlink URL.

init

Creates an instance of a hyperlink which points to specific slide. Note: created hyperlink should be assigned to some object from the same presentation, otherwise link will be saved as NoAction.

def __init__(self, slide):
    ...
ParameterTypeDescription
slideISlideTarget slide.

Creates an instance of a hyperlink using another hyperlink as source, overriding secondary properties.

def __init__(self, source, target_frame, tooltip, history, stop_sounds_on_click, highlight_click):
    ...
ParameterTypeDescription
sourceHyperlinkSource hyperlink
target_framestrTarget frame
tooltipstrTooltip text
historybool
stop_sounds_on_clickbool
highlight_clickbool

See Also