davidmeen / TomeOfTeleportation

Warcraft addon that allows easy access to teleportation spells and items.
7 stars 6 forks source link

Request: API to open Tome of Teleportation outside the AddOn #51

Closed Toxicom closed 2 months ago

Toxicom commented 2 months ago

Description

Hello, I am Toxi from ToxiUI and have received a request to integrate Tome of Teleportation in to my AddOn, see https://github.com/Toxicom/toxiui/issues/113

Basically I would call a function to open Tome of Teleportation from inside my AddOn, but after looking through your code, I can't find a function that I could call.

Could you please add a way for other addons to open Tome of Teleportation, or if a method already exists direct me to it?

Acceptance criteria

davidmeen commented 2 months ago

Try TeleporterOpenFrame()

Toxicom commented 2 months ago

That works, thank you

Toxicom commented 2 months ago

Sorry, reopening the issue. Could you introduce a toggle function for the teleporter? That seems like a standard for all the WoW API frames.

function TeleporterToggle()
  if isVisible then
    TeleporterClose()
  else
    TeleporterOpenFrame()
  end
end
davidmeen commented 2 months ago

You can use TeleporterSlashCmdFunction() to do that.