Announcement

Collapse
No announcement yet.

Displaying in a dialog, or RTF the complete Return table?

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

  • #1
    This could be done easily using a custom function, like this:
    Code:
    function Table.ToString(tTable)
        local sOutput = "";
        for i, v in pairs(tTable) do
            sOutput = sOutput .. i .. " : " .. v .. "\r\n";
        end
        return sOutput;
    end
    
    Dialog.Message("", Table.ToString(System.GetLANInfo()));
    Also, the documentation may help further.

    Ulrich

    Comment


    • #2
      Here's a sample: My LanInfo.apz
      Cheers

      Comment


      • #3
        Edit: sorry folks above example requires splashT action plugin

        https://****************/drive/folde...e8?usp=sharing

        It's just for my own splash image LoL - to preview without error just delete from project plugins or this one without splash
        LanInfo no splash.apz

        Cheers

        Comment

        Working...
        X