executer300183's Forum Posts

  • A construction like "tag1" " tag2 " doesn't work!

    When you try to insert a space, the compiler swears and does not enter the string

    I don't need a single tag!

    The.&. operator-combines tags-two in one

    And I need it to be like this for example. "audio" "audio2"

    But it doesn't work that way-the compiler won't skip the space between tags!

    And here is "audio" & "audio2". it ends up with ONE tag "audio audio2"-I don't need that!

  • A construction like "tag1" " tag2 " doesn't work!

    When you try to insert a space, the compiler swears and does not enter the string

  • If you want to specify multiple tags, you still use a single string, but the tags are separated by spaces, e.g. "foo bar". You can use an expression to generate such a string, but it must be a valid expression. The expression str(Midi.NoteNumber - 23) & " audio" will do this as it will return something like "50 audio" - note the space before " audio". Using a number is an odd kind of tag though, I'd suggest something like "note" & str(Midi.NoteNumber - 23) & " audio", which will produce a tag string like "note50 audio", i.e. two tags "note50" and "audio".

    I don't need a string consisting of combined tags!

    I need 2 separate working tags for one sound

    It seems that there is a bug in construct 3

    You can't just separate 2 tags with spaces-the compiler doesn't skip them!

  • If you want to specify multiple tags, you still use a single string, but the tags are separated by spaces, e.g. "foo bar". You can use an expression to generate such a string, but it must be a valid expression. The expression str(Midi.NoteNumber - 23) & " audio" will do this as it will return something like "50 audio" - note the space before " audio". Using a number is an odd kind of tag though, I'd suggest something like "note" & str(Midi.NoteNumber - 23) & " audio", which will produce a tag string like "note50 audio", i.e. two tags "note50" and "audio".

    Dear friend,

    You're wrong(

    letter. "& " joins strings

    And it turns out ONE total tag-and I need TWO different and separate ones

  • it needs to be one continous string with the spaces separating the tags, i.e. str(Midi.NoteNumber - 23) & " audio"

    Thank you but;;

    In this case, it will be a SINGLE combined tag

    Because the & - operator combines two arguments into one

    I need exactly TWO separate tags(((

  • It says that you can make 2 tags separated by spaces

    It doesn't work

    MULTI is enabled in the audio properties

    Is this a bug?

    maybe not a space should be and something else?

    The tags must be different-they are for different purposes!

    Moreover, if you do it like this, it works. "123""456"

    But if there is a str function instead of a tag the compiler no longer accepts it(and without a space-which contradicts the context hint that it is needed)

    This is clearly a bug

  • I can't go to JavaScript

  • Thanks!

    But

    this plugin is for the 2nd construct(

    for the 3rd only NWJS-but for some reason on my MAC nothing happens when I put the command show open dialog ((

  • export error message in the program

    What should I do to make it work?

    I have the Edge browser installed-but still this error occurs

    Macosx 13.5 ventura

    How can I "Choose a different browser" - if it's a macosx executable???

  • You don't understand me!

    I'm writing a music program

    It must download sounds from an external source!

    Sounds unknown in advance

    This is a sampler program

    This is NOT an import to the editor

  • no

    I want to upload for example 50 audio files from the desktop folder to the sounds Construct 3 folder so that they can be used via Play

  • When you release a midi note, it is played again!

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Please tell me - how to upload audio files FROM the program CODE to the sounds folder?(not importing)

  • Good afternoon

    thank you for the new midi plugin in beta version k 421!

    Please tell me why the MIDI filters don't work.PitchWheelValue,MIDI.ControllerValue(in theory,this function should have an argument in the form of the number of the controller from which reading is performed-but it has no arguments and does not work at all-it does not return anything)

    -they don't return anything

    How can I track the values of the controllers in this case?

    Why isn't there such an important function as MIDI.Modulation WheelValue?

    Only works (MIDI. Velocity (((((

  • I think this is because the level change should only occur when the sound amplitude passes through 0-but in reality this is not the case

    How can I fix this?

    I was trying to implement an audio attack control

    But it works with clicks-because of the problem of going through 0 sound level

    Any idea how to fix this?

    If there was a system behavior for the FADE IN sound,it would probably work as expected

    , but it doesn't exist