Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

It's time to boot, do your boot ROMs know where your disk controllers are?


devel / comp.lang.javascript / Fetch slidebar value fail???

SubjectAuthor
* Fetch slidebar value fail???Jonas Thörnvall
`* Re: Fetch slidebar value fail???Jonas Thörnvall
 `* Re: Fetch slidebar value fail???JJ
  +- Re: Fetch slidebar value fail???Jonas Thörnvall
  `- Re: Fetch slidebar value fail???Jonas Thörnvall

1
Fetch slidebar value fail???

<cb2463fe-9e8d-4c64-bc0e-332fe01b0bd7n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17161&group=comp.lang.javascript#17161

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:6214:15d0:: with SMTP id p16mr1717011qvz.21.1625169819012;
Thu, 01 Jul 2021 13:03:39 -0700 (PDT)
X-Received: by 2002:a05:6830:23ad:: with SMTP id m13mr1435208ots.2.1625169818851;
Thu, 01 Jul 2021 13:03:38 -0700 (PDT)
Path: i2pn2.org!i2pn.org!paganini.bofh.team!usenet.pasdenom.info!usenet-fr.net!fdn.fr!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Thu, 1 Jul 2021 13:03:38 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.163.187; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.163.187
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <cb2463fe-9e8d-4c64-bc0e-332fe01b0bd7n@googlegroups.com>
Subject: Fetch slidebar value fail???
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Thu, 01 Jul 2021 20:03:39 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Jonas Thörnvall - Thu, 1 Jul 2021 20:03 UTC

To set the slidebar using reading out inputfield work fine, two lower functions.

But read out the value and mirror it to input field does not work???
I can send slidebar values to synth without problem?
Is the task to mirror value to input field to fast?
It is not even give the correct values for alerts?

function velocityslideBar(){
var slVol=document.getElementById("noteslidebar").value;
alert(slVol);
document.getElementById("NOTEVEL").value=slVol;
}

function noteslideBar(){
var slNote=document.getElementById("velocityslidebar").value;
alert(slNote);
document.getElementById("NOTEVAL").value=slNote;
}

function setvelocityBar(){
var slideVol=document.getElementById("NOTEVEL").value;
document.getElementById("velocityslidebar").value=slideVol;
}

function setnoteBar(){
slideNote=document.getElementById("NOTEVAL").value;
document.getElementById("noteslidebar").value=slideNote;
}

Re: Fetch slidebar value fail???

<944301ae-ddcf-420d-a68b-feb3bf4e3cc8n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17162&group=comp.lang.javascript#17162

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:ac8:7f87:: with SMTP id z7mr1761462qtj.238.1625171744096;
Thu, 01 Jul 2021 13:35:44 -0700 (PDT)
X-Received: by 2002:aca:fd51:: with SMTP id b78mr1045635oii.177.1625171743772;
Thu, 01 Jul 2021 13:35:43 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Thu, 1 Jul 2021 13:35:43 -0700 (PDT)
In-Reply-To: <cb2463fe-9e8d-4c64-bc0e-332fe01b0bd7n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.163.187; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.163.187
References: <cb2463fe-9e8d-4c64-bc0e-332fe01b0bd7n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <944301ae-ddcf-420d-a68b-feb3bf4e3cc8n@googlegroups.com>
Subject: Re: Fetch slidebar value fail???
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Thu, 01 Jul 2021 20:35:44 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: Jonas Thörnvall - Thu, 1 Jul 2021 20:35 UTC

torsdag 1 juli 2021 kl. 22:03:43 UTC+2 skrev Jonas Thörnvall:
> To set the slidebar using reading out inputfield work fine, two lower functions.
>
> But read out the value and mirror it to input field does not work???
> I can send slidebar values to synth without problem?
> Is the task to mirror value to input field to fast?
> It is not even give the correct values for alerts?
>
> function velocityslideBar(){
> var slVol=document.getElementById("noteslidebar").value;
> alert(slVol);
> document.getElementById("NOTEVEL").value=slVol;
> }
>
> function noteslideBar(){
> var slNote=document.getElementById("velocityslidebar").value;
> alert(slNote);
> document.getElementById("NOTEVAL").value=slNote;
> }
>
> function setvelocityBar(){
> var slideVol=document.getElementById("NOTEVEL").value;
> document.getElementById("velocityslidebar").value=slideVol;
> }
>
> function setnoteBar(){
> slideNote=document.getElementById("NOTEVAL").value;
> document.getElementById("noteslidebar").value=slideNote;
> }

Full example to run below only work one way?
<script>
function velBar(){
var slVol=document.getElementById("notbar").value;
alert(slVol);
document.getElementById("NOTEVEL").value=slVol;
}

function notBar(){
var slNote=document.getElementById("velbar").value;
alert(slNote);
document.getElementById("NOTEVAL").value=slNote;
}

function setvelocityBar(){
var slVol=document.getElementById("NOTEVEL").value;
document.getElementById("velbar").value=slVol;
}

function setnoteBar(){
var slNote=document.getElementById("NOTEVAL").value;
document.getElementById("notbar").value=slNote;
} </script>
<BODY>
KEYNR <input type="text" id="NOTEVAL" name="NOTEVAL" value="" onChange=setnoteBar();size=4><br>
VELOCITY <input type="text" id="NOTEVEL" name="NOTEVEL" value="" onChange=setvelocityBar();size=4><br>
KEY NUMBER <input type="range" onChange="notBar()" id="notbar" min="0" max="127" value="64" orient="horisontal"/><br>
VELOCITY </B><input type="range" onChange="velBar()" id="velbar" min="0" max="127" value="64" orient="horisontal"/><br>
</BODY>

Re: Fetch slidebar value fail???

<b30oyovibal.kd73lu69s7ze$.dlg@40tude.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17165&group=comp.lang.javascript#17165

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!aioe.org!kCa/MpAQsvVY6DnDP/ag2w.user.gioia.aioe.org.POSTED!not-for-mail
From: jj4public@gmail.com (JJ)
Newsgroups: comp.lang.javascript
Subject: Re: Fetch slidebar value fail???
Date: Fri, 2 Jul 2021 09:41:23 +0700
Organization: Aioe.org NNTP Server
Lines: 12
Message-ID: <b30oyovibal.kd73lu69s7ze$.dlg@40tude.net>
References: <cb2463fe-9e8d-4c64-bc0e-332fe01b0bd7n@googlegroups.com> <944301ae-ddcf-420d-a68b-feb3bf4e3cc8n@googlegroups.com>
NNTP-Posting-Host: kCa/MpAQsvVY6DnDP/ag2w.user.gioia.aioe.org
Mime-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
X-Complaints-To: abuse@aioe.org
User-Agent: 40tude_Dialog/2.0.15.84
X-Notice: Filtered by postfilter v. 0.9.2
X-Face: \*\`0(1j~VfYC>ebz[&O.]=,Nm\oRM{of,liRO#7Eqi4|!]!(Gs=Akgh{J)605>C9Air?pa d{sSZ09u+A7f<^paR"/NH_#<mE1S"hde\c6PZLUB[t/s5-+Iu5DSc?P0+4%,Hl
X-Bitcoin: 1LcqwCQBQmhcWfWsVEAeyLchkAY8ZfuMnS
 by: JJ - Fri, 2 Jul 2021 02:41 UTC

On Thu, 1 Jul 2021 13:35:43 -0700 (PDT), Jonas Thörnvall wrote:
> torsdag 1 juli 2021 kl. 22:03:43 UTC+2 skrev Jonas Thörnvall:
>> To set the slidebar using reading out inputfield work fine, two lower functions.
>>
>> But read out the value and mirror it to input field does not work???
>> I can send slidebar values to synth without problem?
>> Is the task to mirror value to input field to fast?
>> It is not even give the correct values for alerts?
[snip]

Your sliderA handler retrieves the value from sliderB, and sliderB handler
retrieves the value from sliderA. Why?

Re: Fetch slidebar value fail???

<8f00731d-c67c-489a-aa88-93a086e8e63fn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17166&group=comp.lang.javascript#17166

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:ac8:7302:: with SMTP id x2mr3644098qto.16.1625208158491; Thu, 01 Jul 2021 23:42:38 -0700 (PDT)
X-Received: by 2002:a9d:400a:: with SMTP id m10mr3271072ote.195.1625208158190; Thu, 01 Jul 2021 23:42:38 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!feeder5.feed.usenet.farm!feeder1.feed.usenet.farm!feed.usenet.farm!tr1.eu1.usenetexpress.com!feeder.usenetexpress.com!tr1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Thu, 1 Jul 2021 23:42:37 -0700 (PDT)
In-Reply-To: <b30oyovibal.kd73lu69s7ze$.dlg@40tude.net>
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.163.187; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.163.187
References: <cb2463fe-9e8d-4c64-bc0e-332fe01b0bd7n@googlegroups.com> <944301ae-ddcf-420d-a68b-feb3bf4e3cc8n@googlegroups.com> <b30oyovibal.kd73lu69s7ze$.dlg@40tude.net>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <8f00731d-c67c-489a-aa88-93a086e8e63fn@googlegroups.com>
Subject: Re: Fetch slidebar value fail???
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Fri, 02 Jul 2021 06:42:38 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 16
 by: Jonas Thörnvall - Fri, 2 Jul 2021 06:42 UTC

fredag 2 juli 2021 kl. 04:41:31 UTC+2 skrev JJ:
> On Thu, 1 Jul 2021 13:35:43 -0700 (PDT), Jonas Thörnvall wrote:
> > torsdag 1 juli 2021 kl. 22:03:43 UTC+2 skrev Jonas Thörnvall:
> >> To set the slidebar using reading out inputfield work fine, two lower functions.
> >>
> >> But read out the value and mirror it to input field does not work???
> >> I can send slidebar values to synth without problem?
> >> Is the task to mirror value to input field to fast?
> >> It is not even give the correct values for alerts?
> [snip]
>
> Your sliderA handler retrieves the value from sliderB, and sliderB handler
> retrieves the value from sliderA. Why?
Thank you JJ, i have no idea why i could not see it.

Re: Fetch slidebar value fail???

<246c41f3-0258-4770-871a-e92aeb57d850n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17167&group=comp.lang.javascript#17167

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a0c:a223:: with SMTP id f32mr3822766qva.8.1625208981100;
Thu, 01 Jul 2021 23:56:21 -0700 (PDT)
X-Received: by 2002:aca:fd51:: with SMTP id b78mr2658225oii.177.1625208980863;
Thu, 01 Jul 2021 23:56:20 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Thu, 1 Jul 2021 23:56:20 -0700 (PDT)
In-Reply-To: <b30oyovibal.kd73lu69s7ze$.dlg@40tude.net>
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.163.187; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.163.187
References: <cb2463fe-9e8d-4c64-bc0e-332fe01b0bd7n@googlegroups.com>
<944301ae-ddcf-420d-a68b-feb3bf4e3cc8n@googlegroups.com> <b30oyovibal.kd73lu69s7ze$.dlg@40tude.net>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <246c41f3-0258-4770-871a-e92aeb57d850n@googlegroups.com>
Subject: Re: Fetch slidebar value fail???
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Fri, 02 Jul 2021 06:56:21 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: Jonas Thörnvall - Fri, 2 Jul 2021 06:56 UTC

fredag 2 juli 2021 kl. 04:41:31 UTC+2 skrev JJ:
> On Thu, 1 Jul 2021 13:35:43 -0700 (PDT), Jonas Thörnvall wrote:
> > torsdag 1 juli 2021 kl. 22:03:43 UTC+2 skrev Jonas Thörnvall:
> >> To set the slidebar using reading out inputfield work fine, two lower functions.
> >>
> >> But read out the value and mirror it to input field does not work???
> >> I can send slidebar values to synth without problem?
> >> Is the task to mirror value to input field to fast?
> >> It is not even give the correct values for alerts?
> [snip]
>
> Your sliderA handler retrieves the value from sliderB, and sliderB handler
> retrieves the value from sliderA. Why?
Working on this and i must say it had me mystified for an hour or two, i must say i hate debugging.....
https://www.facebook.com/photo.php?fbid=4014619058607887&set=pb.100001794973974.-2207520000..&type=3


devel / comp.lang.javascript / Fetch slidebar value fail???

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor