Link Target
From SAP Enable Now Wiki
Where to find it
- Web Assistant Project > Text Editor > Insert Link dialog box > Link Target field
Purpose
This field specifies the URL of the target of a hyperlink in a Guided Tour or Context Help Bubble.
Use
The format of the Link Target will depend upon the type of link selected on the rightmost side of the Insert Link dialog box. Refer to the sections below for details.
Help4 API Link
Should be one of the following:
Link Target | Purpose | Example |
---|---|---|
Help4.API.enableWhatsNew(value) | Activate or deactivate What's New. value can be true/false/toggle. | Help4.API.enableWhatsNew(true) |
Help4.API.openLearningApp(value) | Open or close the Learning section. value can be true/false. | Help4.API.openLearningApp(true) |
Help4.API.openWA(value) | Open or close the Web Assistant (Carousel?). value can be true/false/toggle. | Help4.API.openWA(false) |
Help4.API.selectHelpTile(tile) | Select a specific Help Tile and open its bubble. tile is specified as either the tile sequence number (not recommended!), or the tile UID in single quotes. | Help4.API.selectHelpTile(3) Help4.API.selectHelpTile('MAC_XXXXXXXXXX') |
Help4.API.selectTourStep(step) | Jump to a specific Tour Step. step is specified as either the Step sequence number (not recommended!), or the Step's UID in single quotes. | Help4.API.selectTourStep(7) Help4.API.selectTourStep('MAC_XXXXXXXXXX') |
Help4.API.showHelpBubble(tile) | Open the Bubble for a specific Help Tile (without selecting the Help Tile in the Carousel). tile can be specified as either the tile sequence number (not recommended!), or the tile UID in single quotes. | Help4.API.showHelpBubble(3) Help4.API.showHelpBubble('MAC_XXXXXXXXXX') |
Help4.API.startProject(tour,value) | Start a specific Guided Tour. tour is the UID of the Guided Tour, and value is one of:
|
Help4.API.startProject(PR_XXXXXXXXXX,all) |
Help4.API.tourNextStep() | Advance to the next step in the current Guided Tour | Help4.API.tourNextStep() |
Help4.API.tourPrevStep() | Advance to the previous step in the current Guided Tour | Help4.API.tourPrevStep() |