Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
On your screenshot, the RRSCREEN says "Contains no data" because RRSCREEN is a LABEL CODE -- NOT a variable. Please select "LABEL" in the skintool and it should show the right data -- if not post the screenshot with the right option selected, but it should work as I tested it. On another note, the RRSCREEN label will always return the name of the .skin file in lowercase.. so if you're on "MySkin.skin" it will return "myskin.skin" (lowercase) -- perhaps that could have an influence in your autoit code.
Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
Hoops,
Thanks guino,
That run well with label selected !![]()
Ho yes,
I found my error.
I have modified my autoit variable by :
Add now all is ok.Code:$RRScreen = $rr.getinfo("=$RRSCREEN$")
Is it possible to have a hold option when i click on an indicator with the following function ?
ThanksCode:Public Sub IndicatorClick(IND As String) 'If one of our indicators Select Case LCase(IND) Case "!gmailnotifier" RRSDK.Execute ("SENDMSG;GmailNotifier;RUNGMAIL",@SENDMSG;GmailNotifier;INITIALISE@) End Select End Sub
Unfortunately, there's no "hold" option for indicators, you can turn it into a button then control the images on it using LOADIMAGE, that way you can make it work as an indicator and as a button (with normal press and hold functions).
Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
I try to use WEB and WEBURL commands in a new autoit script.
When i use WEB, my screen browser defines in rr.ini is launched with , here, fennec well embedded.
If just fater the command WEB i use WEBURL;mail.google.com , i have a screen empty.
But if i use the skintool and put these commands into two differents case 'send command',
my browser is well launched and with the other send command the url is well launched.
I don't understand how to write my commands in autoit.
This is my commands:
Code:$rr.execute("WEB||wait;2") $rr.execute("WEBURL;www.google.com")
There's no telling how long it will take for RR to open your web browser (the one you choose) on your specific machine. Of course we can wait for it by code (and RR does that already) -- but either you have to put a longer wait to execute the weburl command OR you can add a detection to autoit to see when the browser opened, so you can send the command. If you want to keep it simpler, try this:
"WEB||DELAYEXEC;3;WEBURL;www.google.com"
Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
Bookmarks