Announcement

Collapse
No announcement yet.

[Solved]SWF removal on function

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [Solved]SWF removal on function

    Howdy Folks,
    got a Hud that's only used when inside a volume, creating it using :
    Code:
    AddClip( SwfMovie'Blah.Blah', Align_Center );
    however when i want to kill it, i can't find the "RemoveClip(Swfmovie'blah');" function, so im guessing it's called something else, anyone have the name handy?
    cheers ~ Matt

    #2
    Nevermind, self-solved it.

    Code:
    //pseudocode
    Var YourHudClass NAME;
    
    function blah()
    {
    name.Close(true);
    }
    ~matt

    Comment

    Working...
    X