Login / Registrieren
DE EN FR ES IT CZ
Zurück Nach oben

Multiple registerHookFunctions ?

  • #1, by dionous 8 years ago Zitieren
    Hi all,

    Would it be possible to have multiple registerHookFunctions for example one for setTextPosition and one for getActionText at the same time?
  • #2, by SimonS 8 years ago Zitieren
    No, it's not possible. How should the engine decide which value to use? You would need to build your own hook system on top of one hook.
  • #3, by sebastian 8 years ago Zitieren
    hu? but didnt he want to know if its possible to have a registerHookFunction for two different hooks? 
  • #4, by SimonS 8 years ago Zitieren
    Then I misunderstood, that's possible. But only one for each.
  • #5, by dionous 8 years ago Zitieren
    Thanks all -  noted, yes basically i would like to use the registerHookFunction two or mores times, each with different hooks.

    So i guess there is no need to unregister a hook? (btw is it possible to do this, just like the event hook?)
  • #6, by SimonS 8 years ago Zitieren
    To remove a hook you would  basicly do it like this:
    registerHookFunction("setTextPosition","")
  • #7, by dionous 8 years ago Zitieren
    Great thanks!