Announcement

Collapse
No announcement yet.

Loading and Value saving

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

  • Loading and Value saving

    hi everyone

    I have been working on a project at the university but Im facing 2 problems
    1)if im having an Input object where students can write their name and when they click next page there will be a label on the top by the name they have added in previous page.. The problem is that when I type this code the page cant get the input text as its in previous page!!! could anyone tell me how to save the value?

    2) My software kinda heavy so it hangs when I start it.. How to add loading bar?

    I have few days only to submit so please help me !!!!

    thanks a lot in advance

  • #2
    al7abob
    Hi with respects item 1
    on next page button
    Code:
    tName = Input.GetText("Input1");
    
    Page.Jump("Page2");
    on page 2 on show
    Code:
    Label.SetText("Label1", tName);
    Not sure what you mean in item 2
    Cheers
    Col

    Comment


    • #3
      Hi dear al7abob
      1) Unfortunately you can not get value from an object that is in page "Page1" from the other page (Example Page2) for resolve this problem, in page "Page1" get your object value and save it in a variable then jump to target page and use that variable 2) for publish your project in autoplay media stuio press F7 and select web/email executable then press next and check show progress window checkbox

      Comment


      • #4
        mahdishams Sorry did you not see my post
        OR if you use a "global function" you can get a value from any page or object
        cheers

        Comment


        • #5
          Originally posted by colc View Post
          mahdishams Sorry did you not see my post
          OR if you use a "global function" you can get a value from any page or object
          cheers
          Hi dear friend
          i see your post
          but i send new post to learn how show progressbar for published project !!!

          i mean below :
          for publish your project in autoplay media stuio press F7 and select web/email executable then press next and check show progress window checkbox

          Comment

          Working...
          X