Announcement

Collapse
No announcement yet.

go page after end audio

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

  • go page after end audio

    How you can move to the next page after the end of the audio on the current page
    thanks

  • #2
    Would this work?

    Code:
    result = Audio.GetLength(CHANNEL_BACKGROUND);
    
    a = 0;
    if (a == result) then
    Page.Jump("Page2");
    end
    Plugins:

    Bitmap (113 KB)

    ComboBoxEx (141 KB)

    Comment


    • #3
      Replace the a = 0 with the length of your Audio (in secounds) and maybe use a timer event.
      Plugins:

      Bitmap (113 KB)

      ComboBoxEx (141 KB)

      Comment


      • #4
        Timer

        Or you can also start timer on page and post this script

        len = Audio.GetLength(CHANNEL_NARRATION);
        pos = Audio.GetCurrentPos(CHANNEL_NARRATION);

        if len == pos then
        Page.Jump("Page2");
        end

        Change the channel and page by your demands

        Comment


        • #5
          help

          Please possible example

          Comment


          • #6
            They have posted some code that would help you get started, all you have to do is create it, you also should read the manual and get to know the app much better, we don't just post examples all the time here, you asked for help not asked us to do your work for you.
            Plugins or Sources MokoX
            BunnyHop Here

            Comment


            • #7
              afterlight
              ruth
              Please possible example

              Comment

              Working...
              X