It is currently May 9th, 2024, 7:34 am

connect via VNC skins do not show

Get help with creating, editing & fixing problems with skins
malcolmn
Posts: 12
Joined: June 10th, 2012, 12:08 pm

connect via VNC skins do not show

Post by malcolmn »

I have a server that I connect to via
tightvnc. The skins I have running do not
show, although if I click in the appropriate
positions then the actions still work,
so the skins are there just not viewable.
must be a display difference with the windows desktop?
M
User avatar
jsmorley
Developer
Posts: 22632
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: connect via VNC skins do not show

Post by jsmorley »

I suspect that tightvnc is seeing the Rainmeter skins as an element of the "desktop" and is not displaying them, much as it doesn't display the desktop wallpaper, in order to save communication resources.

There may be a way to override this in tightvnc, I don't know. I don't use it.
User avatar
KreAch3R
Posts: 608
Joined: February 7th, 2011, 7:27 pm
Location: Thessaloniki, GR

Re: connect via VNC skins do not show

Post by KreAch3R »

I don't use it either, but if you want an alternative Teamviewer is surely displaying everything correctly, on all quality settings.
Inactive, due to life changes. Send me a PM for any question.

Desktop DeviartArt
Image
malcolmn
Posts: 12
Joined: June 10th, 2012, 12:08 pm

Re: connect via VNC skins do not show

Post by malcolmn »

Thanks guys.
found that ultravnc shows the desktop properly.
I have another problem now on that server
the skin uses webparser to login to the router
and supply the code for regexp.
When i do a debug=2 the code for the page returned
is minimal < ...> home.html </...>.
and does not give the normally viewed text source.
Looks like I will have to pre-execute something to go out and get the
web source and dump it to a file.
Any ideas on some piece of software that will do that.
User avatar
KreAch3R
Posts: 608
Joined: February 7th, 2011, 7:27 pm
Location: Thessaloniki, GR

Re: connect via VNC skins do not show

Post by KreAch3R »

I'm sorry I didn't understand your question. What are you trying to do? How is a skin and Webparser involved?
Inactive, due to life changes. Send me a PM for any question.

Desktop DeviartArt
Image
malcolmn
Posts: 12
Joined: June 10th, 2012, 12:08 pm

Re: connect via VNC skins do not show

Post by malcolmn »

Fpath=#CURRENTPATH#downloadfile\html.txt
Url1=http://admin:admin@192.168.1.1
RegExp1=(?siU)(\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b).*(\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b)

[LoadIP1]
Measure=Plugin
Plugin=Plugins\WebParser.dll
UpdateRate=3600
Url=#UrL1#
RegExp=#RegExp1#
StringIndex=1

----------------------
with debug=2
the text file i get back is->
<html><head><meta name=Pragma content=No-Cache></head>
<body></body></html><meta http-equiv=refresh content='0; url=/home.htm'>

not the full web info page for the router.
so regexp does not work ( obviously)
so i need another way of getting the web source,
webparser doesn't seem to get it.
User avatar
KreAch3R
Posts: 608
Joined: February 7th, 2011, 7:27 pm
Location: Thessaloniki, GR

Re: connect via VNC skins do not show

Post by KreAch3R »

If you want to grab the whole page in Webparser, use this RegExp: RegExp=(?siU)(.*)$ Why are you using that complicated one?

I still have a feeling that I haven't grabbed what you 're up to yet.
Inactive, due to life changes. Send me a PM for any question.

Desktop DeviartArt
Image
malcolmn
Posts: 12
Joined: June 10th, 2012, 12:08 pm

Re: connect via VNC skins do not show

Post by malcolmn »

lets try again
If i go to chrome and login to the router and then 'view source' i get
------------------------------------------------------------------------------
.........................
if (document.formsummary.dualwanEnabled.value=="0") document.write("WAN IP");
else document.write("WAN1 IP");
</script>
</font></a></u></font><font color="#000000"> :</font> </td>
<td width="32%">
0.0.0.0 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</td>
<td width="27%">
<input type=button value=Disconnect onClick=falseSubmit('12')> <input type=button value=Connect onClick=falseSubmit('13')>
</td>
</tr>
<tr valign="middle">
<td width="41%"><font color="#0000FF"><u><a href="network.htm"><font color="#000000">
<script>
if (document.formsummary.dualwanEnabled.value=="0") document.write("DMZ IP");
else document.write("WAN2 IP");
</script>
</font></a></u></font><font color="#000000"> :</font> </td>
<td width="32%">
<script>
if ((document.formsummary.dualwanEnabled.value=="0") && (document.formsummary.DmzRangeFlag.value=="1"))
document.write("---");
else
document.write('216.208.38.122 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ');
</script>
</td>
<td width="27%">
</td>
</tr>
..............................
--------------------------------------------

when i use the url in webparser
i get the 1 line as per previous note.
so webparser will not get the source code correctly.
so I need another method of getting the html source.
maybe to execute some other html grabber.