Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

write into one line +1


  • Please log in to reply
5 replies to this topic
Sesters
  • Members
  • 3 posts
  • Last active: Aug 28 2015 11:01 AM
  • Joined: 11 Jun 2013

Hey there, i wanted to write a ahk for writing 1.csv+2.csv+3.csv and so on... into a cmd.

I try it with a loop, but there is no output, which helps me to get a "plus 1" after each (Number).csv+[Number+1].csv+[Number+2].csv and so on.

 

 

can someone help me? Or understand...:-)



Xtra
  • Members
  • 954 posts
  • Last active: Jul 23 2016 09:04 PM
  • Joined: 29 Sep 2013

Example demo using a tooltip to show:

Loop, 10
{
    ToolTip %A_Index%.csv
    Sleep 500
}

hth



Sesters
  • Members
  • 3 posts
  • Last active: Aug 28 2015 11:01 AM
  • Joined: 11 Jun 2013

Hey Xtra,

 

maybe i discribe wrong - i need it this way:

 

NumpadDot::
SetKeyDelay, 0
send {U+002E}csv{numpadadd}
return

 

I want to make a loop, for example 100, and even when i push the hotkey it starts @ "1.csv+[loops] until the end ...100.csv - after 100 loops it stops

 

maybe you understand me now:-)
 



Xtra
  • Members
  • 954 posts
  • Last active: Jul 23 2016 09:04 PM
  • Joined: 29 Sep 2013

Maybe like this:

NumpadDot::
    SetKeyDelay, 0
    Loop, 100
    {
        send {U+002E}%A_Index%.csv{numpadadd}
	Sleep 16
    }    
return


Sesters
  • Members
  • 3 posts
  • Last active: Aug 28 2015 11:01 AM
  • Joined: 11 Jun 2013

15x - 4i > 3 (5x - 4U)

15x - 4i > 15x - 12U

- 4i > - 12U

4i < 12U

i < 12 / 4U

i < 3 U

 

I LOVE YOU!!!



bhagatwebcreation
  • Members
  • 2 posts
  • Last active: Nov 05 2015 06:13 AM
  • Joined: 20 May 2015

ahannn well done    :D