Coder Social home page Coder Social logo

foo_rehearsal's People

Contributors

ptytb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

foo_rehearsal's Issues

How do I use this?

Excuse me for such a lame question but I installed the plugin and don't see it anywhere in terms of commands or whatnot...

Possible issue with foo_playcount enabled

Hello,

Firstly big thanks for this component. I was missing looping feature in f2k and this plugin does exactly what I wanted, it's great!

I've noticed some possible issue - sometimes active loop resets by itself after some time. After quick researching it looks like Playback Statistics (foo_playcount) is the cause, without it loop never resets (checked with various versions of f2k, foo_rehearsal and foo_playcount). So may be it could be fixed and foo_playcount is much needed too.

Update: it seems the issue only happening when looper window is active

Also I've made some little AutoHotKey script which makes control easier, may be it could be useful for someone else.
Tab key swithes between input windows
[ key sets begin of loop
] key sets end of loop
ctrl + [ shifts begin of loop back
ctrl + ] shifts begin of loop forward
alt + [ shifts end of loop back
alt + ] shifts end of loop forward
Enter enables loop
S stops loop

loopstep = 0.05

#IfWinActive Loop interval ahk_class #32770
SetControlDelay -1

enter::
sleep 50
ControlClick, Button1, ahk_class #32770,,,, NA
return

S::
ControlClick, Stop, ahk_class #32770,,,, NA
return

TAB::
toggle:=!toggle
if toggle
   {
   ControlFocus, Edit2, ahk_class #32770
   sendinput, {end}{left}{left}
   }
else
   {
   ControlFocus, Edit1, ahk_class #32770
   sendinput, {end}{left}{left}
   }
return
   
[::
ControlClick, Button3, ahk_class #32770,,,, NA
return

]::
ControlClick, Button4, ahk_class #32770,,,, NA
return

^]::
controlgettext, loop1, Edit1, ahk_class #32770
loop1 += loopstep
loop1 := round(loop1,3)
controlsettext, Edit1, %loop1%, ahk_class #32770
sendinput, {end}{left}{left}
return

^[::
controlgettext, loop1, Edit1, ahk_class #32770
loop1 -= loopstep
loop1 := round(loop1,3)
controlsettext, Edit1, %loop1%, ahk_class #32770
sendinput, {end}{left}{left}
return

!]::
controlgettext, loop1, Edit2, ahk_class #32770
loop1 += loopstep
loop1 := round(loop1,3)
controlsettext, Edit2, %loop1%, ahk_class #32770
sendinput, {end}{left}{left}
return

![::
controlgettext, loop1, Edit2, ahk_class #32770
loop1 -= loopstep
loop1 := round(loop1,3)
controlsettext, Edit2, %loop1%, ahk_class #32770
sendinput, {end}{left}{left}
return

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.