Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 5 of 5

Thread: Web Object

  1. #1
    Join Date
    Nov 2002
    Posts
    1

    Web Object

    Is there anyway to close the whole autoplay program, from within the Web Object?? like calling an action from inside the object from the webpage displayed.

    Or is there any way to script it, like when teh status text says closing, to have Autoplay recognize this and close only when that text is displayed??


    (i'm making an autorun to autorun a webpage, so the webpage is the autorun, just need a exe to run it)

  2. #2
    Corey is offline Indigo Rose Staff Alumni
    Join Date
    Aug 2002
    Posts
    9,746

    Re: Web Object

    Sure that's simple as pie, I've attached a demo file you can use as a model... Let me know if you have any more questions.

    <<<< See Attached

    14665-close app.zip

    Corey Milner
    Creative Director, Indigo Rose Software

  3. #3
    Join Date
    Jun 2002
    Location
    Israel
    Posts
    1,843

    Re: Web Object

    Corey,
    NICE!!
    from the attached file, I see that you have an "extra" string aded to the url, preceded by a ?
    Is it a standard way to pass a string value from a web page?

    Thanks
    Yossi

  4. #4
    Corey is offline Indigo Rose Staff Alumni
    Join Date
    Aug 2002
    Posts
    9,746

    Re: Web Object

    That's called "sending variables via the GET method". When you use POST the variables are not visible as they get passed from page to page but if you use GET, i.e. in the URL, they are... Anything visible is parsable, ergo the solution...

    Check out http://www.liquidcabaret.com to see GET in full action, i.e. try adding a few CDs to your cart and just keep watching the URL change as you surf around adding stuff to your cart. Notice that the URL carries your complete order info with you as you move around. That's why our cart works on any browser, through any firewall, and without any cookies...

    That's the power of GET and definitely the very best way to make your web objects fully interactive with all your other objects. Best of all, it's simple, works with pure HTML and is recursive,( i.e. you don't need to add "extra" pages or code)...

    *NOTE* GET is obviously not secure, never send secure info using GET, that's what POST is for. GET is best used for passing info which has no security risk attached to it such as page commands and order details.

    Corey Milner
    Creative Director, Indigo Rose Software

  5. #5
    Join Date
    Mar 2003
    Posts
    3

    Re: Web Object

    I checked the attachment out and this is what I've been looking for...........but I'm not exactly sure on how to implement it into my project. I tried pasting the code into my web page but it didn't work properly.

    My project is simply one web page (web object) that is linked to another web page and it's on the second page that I want the close button. When I pasted your code in, it just closed the page and not the application.

    Please help

    MontyJ

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts