Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 13 of 13

Thread: Any way to...

  1. #1
    Join Date
    Jun 2007
    Posts
    34

    Any way to...

    I have a main display page with several buttons on the side. The content on the main page displays a paragraph block containing important "Read Me" information. The question is...Is there a way to disable the buttons I want until the Read Me text scrollbar actually has been moved to the bottom, as it would be if the users read the entire block of text?

    Thanks.

  2. #2
    Join Date
    Jan 2007
    Posts
    271

    Arrow Hello Steve

    I think you might do that with mouse position.
    I know others are much better than I am at this.
    It seems there aren't many online right now.
    If you want to chat on a chat program I have been working on download
    and I'll be online..

    Thank You,
    AudioSam

  3. #3
    Join Date
    Feb 2005
    Location
    Birmingham, Alabama
    Posts
    175
    why not just put a "check box" that must be "checked", which states that the user has indeed read the text before proceeding.

  4. #4
    Join Date
    Jan 2007
    Posts
    271

    Arrow Hello Mike

    I think he wants to be sure they have at least gone thru the motions of reading the important information before allowing the user to continue.
    I may be wrong but I think thats it.

    I thought mouse position up might do the trick.

    Thanks,
    AudioSam

  5. #5
    Join Date
    Feb 2005
    Location
    Birmingham, Alabama
    Posts
    175
    here is a sample
    Attached Files

  6. #6
    Join Date
    Feb 2005
    Location
    Birmingham, Alabama
    Posts
    175
    yeah, it probably would. In case you "only" want to cover yourself, a checkbox will do the trick.

    the great thing about AMS is there is usually about a half dozen ways to get from A to B!

  7. #7
    Join Date
    Jan 2007
    Posts
    271

    Arrow Hey Mike

    My home town is pretty close to you.
    Laurel, Ms.
    Just thought I would say hello.
    I downloaded the sample file for future use..

    Thanks,
    AudioSam

  8. #8
    Join Date
    Sep 2002
    Location
    Sol 3
    Posts
    3,160
    I have done this with the paragraph object and the GetScrollPosition (I think that is the right action anyway). You can get the current scroll position of the paragraph and once that equals the end of the paragraph then you can enable these other options. I did this on a software installer I created.

    Here is the code I used and this was placed in the On Timer event for the page

    Code:
    tbRange = Paragraph.GetScrollRange("Paragraph1", true);
    if tbRange.Max - (Paragraph.GetSize("Paragraph1").Height/17) <= Paragraph.GetScrollPos("Paragraph1", true) then
    	Plugin.SetEnabled("Plugin1", true);
    	Page.StopTimer();
    end
    You will have to play around with the scroll position of the object to find the correct values to use. the divisior is used to determine the height of the paragraph object and then allows you to approximately determine when you are at the end of the paragraph object.

    HTH
    Tigg
    TJ-Tigger
    "A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
    "Draco dormiens nunquam titillandus."
    Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine

  9. #9
    Join Date
    Feb 2005
    Location
    Birmingham, Alabama
    Posts
    175
    hey sam! I go to MS (or used to) for crawfish boils! Lots O fun!

    oh... the sample is just beginner stuff..... probably not much use to you, but I remember when I started using AMS, babe in the woods bro... Come to think of it, I still am! LOL

  10. #10
    Join Date
    Jan 2007
    Posts
    271

    Arrow Hey Mike,

    Download this app.

    http://www.sendspace.com/file/q5xboi

    Will be able to chat.
    Its my personel chat app , no junk.

    Thanks,
    AudioSam

  11. #11
    Join Date
    Feb 2005
    Location
    Birmingham, Alabama
    Posts
    175
    "file not available"

  12. #12
    Join Date
    Feb 2007
    Location
    Missouri
    Posts
    178
    I believe he took it down a while ago.

  13. #13
    Join Date
    Jun 2007
    Posts
    34

    Thanks

    Thanks Tigg!

Posting Permissions

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