• Products
    • Isadora
    • Get It
    • ADD-ONS
    • IzzyCast
    • Get It
  • Forum
  • Help
  • Werkstatt
  • Newsletter
  • Impressum
  • Dsgvo
  • Press
  • Isadora
  • Get It
  • ADD-ONS
  • IzzyCast
  • Get It
  • Press
  • Dsgvo
  • Impressum

Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags

    Features wish

    Feature Requests
    2
    4
    1421
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • jhoepffner
      jhoepffner last edited by

      Hello,

      I will fill also a features report, but perhaps it concern other.
      **set/get global** : It would be good to have te possibility to directly write or read the nth value of a global without opening the n input and output
      **javascript** : It would be very useful to have the possibility, inside javascript actor, to take the value of an ID output or give a value to an ID input.
      For example, I want to change some (like 64…) text edit in the control pane to initialize a display. Now I need to create 64 output in javascript and manually join each edit text to each output. It could be very useful to make nice UI. Also the possibility to give a name to output and input and to force the quality of input and output, int, float, string etc. (as in user actor).
      **UI** : it would be good to have the possibility to search a specific actor or a ID control slot in a complicated scene and in all the patch.

      Jacques Hoepffner http://hoepffner.info
      GigaByte 550b / Ryzen 7 3800X / Ram 64 Go / RTX 3090 24 Go / SSD 2 To / raid0 32 To
      MBP 13' i5 2.6 Ghz 16 Go / Intel Iris / macOs 10.11.6 / izzy 2.6.1 + 3.0.3b2
      MBP 15' i7 2.6 Ghz 16 Go / GTX 650M 1Go/ MacOs10.13.3 / Izzy 2.6.1
      MSI GS65 i7 3.6 Ghz 32 Go / GTX 1070 8 Go / Windows 10 / Izzy 3.0.3b2

      1 Reply Last reply Reply Quote 0
      • jhoepffner
        jhoepffner last edited by

        Hello,

        I have a question concerning javascript actor. There is a possibility to read and write text file?
        I tried that but with no result, any idea?
        Thanks,
        function main()
        {
        var output = "";
        var f = new FileReader();
        output = f.readAsText("texte.txt");
        return output;
        }

        Jacques Hoepffner http://hoepffner.info
        GigaByte 550b / Ryzen 7 3800X / Ram 64 Go / RTX 3090 24 Go / SSD 2 To / raid0 32 To
        MBP 13' i5 2.6 Ghz 16 Go / Intel Iris / macOs 10.11.6 / izzy 2.6.1 + 3.0.3b2
        MBP 15' i7 2.6 Ghz 16 Go / GTX 650M 1Go/ MacOs10.13.3 / Izzy 2.6.1
        MSI GS65 i7 3.6 Ghz 32 Go / GTX 1070 8 Go / Windows 10 / Izzy 3.0.3b2

        1 Reply Last reply Reply Quote 0
        • mark
          mark last edited by

          Dear @jhoepffner,

          Since things like writing to the file system might allow someone to do something malicious – even if it was just to fill up someone's hard drive – it's probably disabled.
          That being said, I put the var f = new FileReader(); and output = f.readAsText("texte.txt"); lines inside of a try/catch block and an error was thrown. The error message was "FileRead is not defined."
          Best Wishes,
          Mark
          Here's the code:

          function main()

          {

          var output = "didnt_work";

          var err = "";

          try {

          var f = new FileReader();

          output = f.readAsText("file:///Users/mconiglio/text.txt");

          } catch (catchErr) {

          err = catchErr.message;

          }

          return [output, err];

          }

          Media Artist & Creator of Isadora
          Macintosh SE-30, 32 Mb RAM, MacOS 7.6, Dual Floppy Drives

          1 Reply Last reply Reply Quote 0
          • jhoepffner
            jhoepffner last edited by

            Dear @Mark,

            Thank you for the info, I will try using "include", perhaps I can open a file inside javascript and parse the content.
            But the big problem is still the lack of UTF8 output in javascript actor! We Europeans need it because we use this bloody little sign.
            Now, like DusX suggest it, I use an external editor (atom) to write my javascript and use "include" to insert in. It would be good to have a way to update the script when we save the external file, without the necessity to open and close the editor in Isadora. Like a trigger input.
            Best Regards,
            Jacques

            Jacques Hoepffner http://hoepffner.info
            GigaByte 550b / Ryzen 7 3800X / Ram 64 Go / RTX 3090 24 Go / SSD 2 To / raid0 32 To
            MBP 13' i5 2.6 Ghz 16 Go / Intel Iris / macOs 10.11.6 / izzy 2.6.1 + 3.0.3b2
            MBP 15' i7 2.6 Ghz 16 Go / GTX 650M 1Go/ MacOs10.13.3 / Izzy 2.6.1
            MSI GS65 i7 3.6 Ghz 32 Go / GTX 1070 8 Go / Windows 10 / Izzy 3.0.3b2

            1 Reply Last reply Reply Quote 0
            • First post
              Last post