Jump to content
EN
Play

Forum

Quick ‘n Easy Server Loader (made by werty8763)


 Share

Recommended Posts

get a Dell/Toshiba/Asus/Acer/Chromebook/Samsung/HP/anything else that is better then Apple

I'm never getting Samsung! :angry:

Maybe for gaming, but I don't game.

Chrome books? That cheap piece of crap? No

Share this post


Link to post
Share on other sites

I'm never getting Samsung! :angry:

Maybe for gaming, but I don't game.

Chrome books? That cheap piece of crap? No

Why not? :huh:

Samsung is currently the world's best producer of electronics..... :)

And my computer is a Samsung laptop..... :D

Share this post


Link to post
Share on other sites

Why not? :huh:

Samsung is currently the world's best producer of electronics..... :)

And my computer is a Samsung laptop..... :D

Huh, why is their a "buy one get 1 free" deal on Samsung phones? Cause they need to sell them, I do have Samsung refrigerator, washer, dryer :ph34r:

But they must not make a lot of money with that deal

Share this post


Link to post
Share on other sites

^ get back on topic, man.......... <_<

Anyway, has ANYONE tried one or more of my programs? -_-

It's kinda depressing if no one uses them.......... <_< :(

Share this post


Link to post
Share on other sites

^ get back on topic, man.......... <_<

Anyway, has ANYONE tried one or more of my programs? -_-

It's kinda depressing if no one uses them.......... <_< :(

<_< cool put it on the Mac them you got a tester, but I guess everyone thought you left

Share this post


Link to post
Share on other sites

^ get back on topic, man.......... <_<

Anyway, has ANYONE tried one or more of my programs? -_-

It's kinda depressing if no one uses them.......... <_< :(

erm... not yet maybe when my internet gets faster in a few weeks?

Share this post


Link to post
Share on other sites

I Tried them .. Its good ;)

 

Try to make one for standalone flash player .. 

What do you mean by "one"?

A server loader or a screen capture? :huh:

Share this post


Link to post
Share on other sites

"One" refers to making a script that loads the server we want in flash player .. and is there any way that we could prevent the screen capture from not saving the file if the first picture was not renamed ??

Hmm, I'm not sure about the first one; as for the second one, I'm working on it.... ;)

Share this post


Link to post
Share on other sites

I've been thinking of creating a script for keeping a list of journeys with their distances but I was always troubled on how to automatically get the distance in miles between two UK postcodes using autohotkey.

 

Well I figured it out after a bit of searching, on how to get specific node information from the google maps xml search query

 

 


SetWorkingDir %A_ScriptDir% 

inputbox, origin, origin,,,200,100
inputbox, destination, destination,,,200,100
url :="http" . "://maps.googleapis.com/maps/api/directions/xml?origin=" . origin . "&destination=" . destination . "&sensor=false"

; I separated the http because this forum auto hides the address otherwise

URLDownloadToFile, %url%, url.xml
FileRead, xmldata, url.xml
doc := ComObjCreate("MSXML2.DOMDocument.6.0")
doc.async := false
doc.loadXML(xmldata)
DocNode := doc.selectSingleNode("//leg/distance/value")
distance := DocNode.text
filedelete, url.xml
distance := ceil(distance / 1609.34) ; rounds up to the next whole mile
MsgBox Distance = %distance% miles

 

 

 

Try it! Tell me what you think. :)

Edited by AbsoluteZero
  • Like 1

Share this post


Link to post
Share on other sites

I've been thinking of creating a script for keeping a list of journeys with their distances but I was always troubled on how to automatically get the distance in miles between two UK postcodes using autohotkey.

 

Well I figured it out after a bit of searching, on how to get specific node information from the google maps xml search query

 

 

 

SetWorkingDir %A_ScriptDir% 

 

inputbox, origin, origin,,,200,100

inputbox, destination, destination,,,200,100

url :="http" . "://maps.googleapis.com/maps/api/directions/xml?origin=" . origin . "&destination=" . destination . "&sensor=false"

; I separated the http because this forum auto hides the address otherwise

 

URLDownloadToFile, %url%, url.xml

FileRead, xmldata, url.xml

doc := ComObjCreate("MSXML2.DOMDocument.6.0")

doc.async := false

doc.loadXML(xmldata)

DocNode := doc.selectSingleNode("//leg/distance/value")

distance := DocNode.text

filedelete, url.xml

distance := ceil(distance / 1609.34) ; rounds up to the next whole mile

MsgBox Distance = %distance% miles

 

 

 

Try it! Tell me what you think. :)

Nice!! :D

 

 

But.................what does this actually do? :huh: 

I have no idea.......... :lol:

 

 

Share this post


Link to post
Share on other sites

It can be adapted to where you live.

I couldn't find anything via goolgle searching that would do this. It will be of use to somebody.

Ok.... :)

Share this post


Link to post
Share on other sites

This topic is now closed to further replies.
 Share

×
×
  • Create New...