Displaying 20 results from an estimated 4000 matches similar to: "apply block of if statements with menu function"
2006 Dec 19
0
dtmf and ivr
hello,
i try to build a IVR for our company my problem is that the dtmf tones
are not recognized by the phones i tried several phones.
BUT when i call the voicemail i can navigate with all phones through the
menu. I use * 1.2
here is the context:
[ivr]
exten => s,1,Answer
exten => s,2,SetMusicOnHold(default)
exten => s,3,DigitTimeout,5
exten => s,4,ResponseTimeout,10
;SAI menu -
2006 Oct 30
2
Going back to classic menu from vesamenu.c32
I'm currently building a tree-like boot menu for my network, using pxelinux
and vesamenu.c32. I jump from one page to another with "kernel vesamenu.c32"
and "append newmenu". However, at some points I'd like to use the classic
interface, for example with a distribution install image (in order to have
the exact same interface as on the CD).
I tried loading pxelinux.0
2009 Apr 24
1
MENU not having to press <ENTER> key?
Hi,
I wonder if anyone can help.
I have a menu (Below) which works fine, the only problem is that I would like to be able to just press a key ie <1> and it go into the menu without having to press <1> and then <Enter>
Has anyone got any idea on how to get it sorted?
Cheers,
Guy
menu title PXE Boot Menu
menu background graphics/main.jpg
menu tabmsgrow 22
menu cmdlinerow 22
menu
2008 Apr 01
1
Navigation Problems
Hi,
I am having problems with my page. I have a banner and navigation bar in
controller_name.rhtml in app/views/layout. Can someone please help?
Thanks
In the navigation bar, I have the following links:
Category1
Sub-Category1
Sub-Category2
Sub-Category3
Sub-Category4
Sub-Category5
Sub-Category6
In the main content, I have the following links:
Sub-Category1 edit delete
2006 Jan 10
2
Transactions with multiple databases
hi,
i have problem with transactions and multiple databases.
Object1 and Object2 are two different models/databases with different
connections, when i use only
one model:
Object1.transaction do
object1.value1 = "123456"
object1.save
do_some_error
end
it''s ok, error is produced, nothing is commited and database is unchanged.
when i use 2 models, described at
2006 Aug 05
1
formating for dist function
Hi there
I have a list that looks like this
object1 object1 78
object1 object2 45
object1 object3 34
object1 object4 45
object2 object2 89
object2 object3 32
object2 object4 13
but i want to create a matrix like this in order to use the dist function of R
object1 object2 object3 object4
object1 78 45 34 45
object2 45
2005 Oct 26
1
chain.c32 question
I am trying to use chain.c32 to boot windows xp from a hard disk. In my
pxelinux.cfg file I have the following:
Prompt 1
Default menu1
Timeout 2
Label menu1
Kernel chain.c32 hd0 1
When my system boots it gives me the following usage error
Usage: chain.c32 (hd|fd)# [partition]
Boot:
If I type chain.c32 hd0 1 at the boot prompt the system boots windows
ok. Any help would be
2016 Apr 15
2
Previously extended schema not working in 4.4.0
On Fri, 2016-04-15 at 00:32 +0100, Jonathan Hunter wrote:
> Thank you Andrew, really appreciated.
>
> I have now run 'samba-tool dbcheck --cross-ncs --fix' and it has
> successfully fixed some errors; there were 110 previously, however
> there are still 69 remaining after a second pass of dbcheck --fix.
>
> The remaining errors seem to be mainly of this form:
>
2016 Apr 14
0
Previously extended schema not working in 4.4.0
Thank you Andrew, really appreciated.
I have now run 'samba-tool dbcheck --cross-ncs --fix' and it has
successfully fixed some errors; there were 110 previously, however there
are still 69 remaining after a second pass of dbcheck --fix.
The remaining errors seem to be mainly of this form:
ERROR: duplicate attributeID values for myattrib in replPropertyMetaData on
2007 Jan 23
1
How to evaluate an lm() object for generating warning statement in a function
Hi, there
I tried this post on R-help but did not generate any replies, so I thought
I might try the waters here since it's a more programming-based group.
I have written a function that will allow me to calculate the variance
components for a model II (random effects) single factor ANOVA (perhaps
this is
me re-inventing the wheel, but I handn't yet come across anything in R that
does
2011 Dec 13
4
Keep sourcing when there is an error
Hello,
I want to know if there is any way to avoid source() stopping when there
is an error.
Here is the content of my Main.R script:
source("~/R/source/Constructor1.R") # Object1 should be constructed
ifelse(exists("Object1"), # It's an S4 object
print("Object1 exists"), # I can't avoid using 'validity'
2011 Oct 28
3
program never enters browser mode when I add browser()
Dear All
I have a program that breaks at the following lines of code:
bigfunction =
{
...
object1 = myfunction(x)
object2 = strsplit(object1, ",")[[1]]
...
}
where myfunction is defined elsewhere outside of bigfunction.
The error I get is "error in strsplit() -- object1 not found".
However, when I insert browser() into my code so that the above reads,
bigfunction =
{
2010 Mar 18
1
Rcmdr plugins produce error
I recently updated all my plugins, and for the fun of it, I added ALL the Rcmdr Plugins to my collection to see what functionality might exist. I started Rcmdr and loaded ALL the available Plugins from to the Rcdmdr Tools menu.
To my suprise Rcmdr produced a number of warnings and finally an error. The error suggests that some of the extensions are incompatable with each other because of menu
2011 May 24
1
seeking help on using LARS package
Hi,
I am writing to seek some guidance regarding using Lasso regression with the
R package LARS. I have introductory statistics background but I am trying to
learn more. Right now I am trying to duplicate the results in a paper for
shRNA prediction "An accurate and interpretable model for siRNA efficacy
prediction, Jean-Philippe Vert et. al, Bioinformatics" for a Bioinformatics
project
2018 Mar 20
0
Struggling to compute marginal effects !
In that case, I can't work out why the first model fails but not the
second. I would start looking at "Data" to see what it contains. if:
object2 <- polr(Inc ~ Training ,Data,Hess = T,method = "logistic" )
works, the problem may be with the "Adopt" variable.
Jim
On Tue, Mar 20, 2018 at 10:55 AM, Willy Byamungu
<wmulimbi at email.uark.edu> wrote:
>
2009 Jul 30
3
Looping through R objects with $ operator and tags
Hi all,
Suppose I want to set the values in a column to the log of the values
of another column like so:
object$LogDist <- log10(object$Distance)
How do I loop through the objects if I have object1, object2, etc to
perform this function?
object1$LogDist <- log10(object1$Distance)
object2$LogDist <- log10(object2$Distance)
object3$LogDist <- log10(object3$Distance)
I was trying to
2003 Oct 08
0
SIP Problems with Cisco 5300 - Invalid CSeq Number
People:
Did you have seen this message before?
noc2pbx*CLI>
-- Executing Goto("SIP/-081363a0", "ivr1|2000|1") in new stack
-- Goto (ivr1,2000,1)
-- Executing Answer("SIP/-081363a0", "") in new stack
-- Executing Wait("SIP/-081363a0", "1") in new stack
-- Executing BackGround("SIP/-081363a0",
2002 Apr 12
1
Problems with memory
Dear all,
I've started working with R (vs 1041) a few weeks ago, and now I'm
having problems with the amount of memory.
I'm working on the windows-me, my computer has 128 Mb of memory. I'm
using the R under the emacs (ESS-5.1.20) and it is started by the
command:
Rterm --min-vsize=10M --max-vsize=100M --min-nsize=500k --max-nsize=1M
I've been had problems when executing a
2009 Jun 15
1
Create R object
Dear R users,
I have two simple questions here, and hope someone can help me on this. Thanks in advance.
1.
I have a list object lst=list(a1=matrix(rnorm(4),2,2), a2=matrix(rnorm(4),2,2),a3=matrix(rnorm(4),2,2)). Here I only use three elements for illustration, and in fact the length of lst, n, is unknown in advance. I want to define an object for each element of this lst, and the objects have
2003 Apr 24
3
Collecting dialed digits
I am trying to set up an auto attendant for the first time, and am having
trouble getting to the submenu. My extensions.conf file looks like this:
[incoming]
exten=> s,1,Background,menu1
exten=> s,2,Wait,20
exten=> s,3,Goto,s|1
exten=> 1,1,Playback,option1
exten=> 2,1,Playback,option2
exten=> 3,1,Playback,option3
It is my understanding that asterisk treats the digits entered