View Single Post
Posts: 10 | Thanked: 5 times | Joined on Mar 2008
#124
Originally Posted by gerbick View Post
geoff, thanks a ton... however one question. I want to disallow onslide too. how would I accomplish that?
I only have a n800, so I didn't even looking into onslide... in fact, it took a few seconds to figure out what you meant

I can't test this, but it would seem that the same logic can be used on the function called slide():
Code:
def slide(id,obj):
        f = open(slidestatus,'r')
        status = f.read()
        f.close()
        if status == "closed\n":
                new_orientation = "closed"
                rotate(new_orientation)
        elif status == "open\n":
                new_orientation = "open"
                rotate(new_orientation)
If this snippet, change new_orientation to be normal in the case where you don't want rotation.

Hope this helps.

Geoff