Sending a Space

Technical support and scripting issues

Moderators: Dorian (MJT support), JRL

Post Reply
fightcancer
Macro Veteran
Posts: 239
Joined: Fri Apr 15, 2005 8:32 am

Sending a Space

Post by fightcancer » Fri Feb 22, 2013 9:33 pm

The way I read the Help file, these 2 lines of code do the same thing.

Code: Select all

Send> 
Ascii>32
(There's a space after "Send>" even though it may not appear.)

However, in my macro, the second line will not accomplish what the first line does. Am I reading it right?

User avatar
Rain
Automation Wizard
Posts: 550
Joined: Tue Aug 09, 2005 5:02 pm
Contact:

Post by Rain » Fri Feb 22, 2013 10:25 pm

Try

Code: Select all

Ascii>32,

fightcancer
Macro Veteran
Posts: 239
Joined: Fri Apr 15, 2005 8:32 am

Post by fightcancer » Fri Feb 22, 2013 10:39 pm

Negative, Ghostrider.

User avatar
JRL
Automation Wizard
Posts: 3501
Joined: Mon Jan 10, 2005 6:22 pm
Location: Iowa

Post by JRL » Fri Feb 22, 2013 10:43 pm

However, in my macro, the second line will not accomplish what the first line does.
What do you want ASCII>32 to accomplish? Sending either to notepad gives me a space. Hard to diagnose without knowing what is failing.

fightcancer
Macro Veteran
Posts: 239
Joined: Fri Apr 15, 2005 8:32 am

Post by fightcancer » Fri Feb 22, 2013 11:14 pm

The code is supposed to click the browse box. "Send> " works but "Ascii>32" doesn't.

Code: Select all

IEGetFromURL>tinypic.com,myIERef
IEGetTags>tinypic.com,INPUT,O,tags
Let>pos=0
Let>kTag=0
While>pos=0
  Add>kTag,1
  Let>tag=tags_%kTag%
  Pos>name=the_file,tag,1,pos
EndWhile
// Focus the Browse button and press the space bar.
IETagEvent>tinypic.com,INPUT,kTag,focus,
//IEWait>myIERef
SetFocus>TinyPic*
Send> 
//Ascii>32

User avatar
CyberCitizen
Automation Wizard
Posts: 721
Joined: Sun Jun 20, 2004 7:06 am
Location: Adelaide, South Australia

Post by CyberCitizen » Sat Feb 23, 2013 12:28 am

What about %SPACE%
FIREFIGHTER

Me_again
Automation Wizard
Posts: 1101
Joined: Fri Jan 07, 2005 5:55 pm
Location: Somewhere else on the planet

Post by Me_again » Sat Feb 23, 2013 12:54 am

I confirm the original post, ASCII>32 doesn't act on a window the same as Send>{invisible space} does. (For instance hitting space on this forum in IE will move down the page.)

Send>%SPACE% does work for me.

fightcancer
Macro Veteran
Posts: 239
Joined: Fri Apr 15, 2005 8:32 am

Post by fightcancer » Sun Feb 24, 2013 4:12 pm

OK. Ty for "Send>%SPACE%". I wasn't aware that option existed. Much appreciated! :)

User avatar
Marcus Tettmar
Site Admin
Posts: 7380
Joined: Thu Sep 19, 2002 3:00 pm
Location: Dorset, UK
Contact:

Post by Marcus Tettmar » Mon Feb 25, 2013 9:53 am

You could also do:

Send>{" "}

Or just

Send>_

(Replacing _ with a space)
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar

Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?

Post Reply
Sign up to our newsletter for free automation tips, tricks & discounts