Search found 34 matches
- Thu Sep 02, 2010 4:36 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: To delete a row in a datagrid
- Replies: 3
- Views: 4001
- Wed Sep 01, 2010 8:02 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: To delete a row in a datagrid
- Replies: 3
- Views: 4001
To delete a row in a datagrid
I copied and pasted the example from the forum and put it on a button script but it doesn't delete the row. It's just kind of hilite the text on the row. What am I missing here? Please help.
on mouseUp
local tLine, tCutRow
put the dgindex of group "DataGrid 1" into tLine
put "deleteindex ...
on mouseUp
local tLine, tCutRow
put the dgindex of group "DataGrid 1" into tLine
put "deleteindex ...
- Wed Sep 01, 2010 12:56 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Maximizing a stack/window
- Replies: 5
- Views: 5663
Re: Maximizing a stack/window
Thanks.
- Tue Aug 31, 2010 9:49 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Maximizing a stack/window
- Replies: 5
- Views: 5663
Re: Maximizing a stack/window
On windows xp, the title bar mimize, restore, exit buttons are missing. how do i make it appear again?
- Sat Aug 28, 2010 5:39 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Maximizing a stack/window
- Replies: 5
- Views: 5663
Maximizing a stack/window
Newbie here. I'm looking for a way to open a stack as maximized window. Please help.
- Wed Aug 25, 2010 5:35 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: go to stack URL
- Replies: 2
- Views: 3743
Re: go to stack URL
After further testing I made a correction by put quotes around the field name. Some of the rev app on the web server doesn't really work when launched from web.
I wanted to show a message using a label l_wait "Loading application".
on OpenStack
set the visible of field "l_wait" of card "card ...
I wanted to show a message using a label l_wait "Loading application".
on OpenStack
set the visible of field "l_wait" of card "card ...
- Wed Aug 25, 2010 4:04 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: go to stack URL
- Replies: 2
- Views: 3743
go to stack URL
Did this:
go to stack URL field f_url
works fine in the IDE but does not work anymore in stand alone (Win XP).
Has anyone experienced this? Am I issing something here?
go to stack URL field f_url
works fine in the IDE but does not work anymore in stand alone (Win XP).
Has anyone experienced this? Am I issing something here?
- Tue Aug 24, 2010 9:45 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: calling a commad in card and stack with the same name
- Replies: 5
- Views: 5430
Re: calling a commad in card and stack with the same name
Another question. How do I call a function/command in a card/stack, located in another stack?
- Tue Aug 24, 2010 6:00 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: calling a commad in card and stack with the same name
- Replies: 5
- Views: 5430
calling a commad in card and stack with the same name
I created two command with the same name. The first one is located in the stack script and the other one is located in the card script.
In the button script:
on mouseUp
test
end mouseUp
The card script gets executed. How do I call the command named test which is located in the stack script?
In the button script:
on mouseUp
test
end mouseUp
The card script gets executed. How do I call the command named test which is located in the stack script?
- Wed Aug 18, 2010 1:17 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: revbrowser newbie
- Replies: 4
- Views: 4911
revbrowser newbie
I tried out the lesson at http://lessons.runrev.com/buckets/784/lessons/15963, Launching a PDF in an external viewer but I'm getting card id 1002: execution error at line n/a () near "unknown browser id". What am I missing here?
-- My card script
local sBrowserId
on openCard
browserOpen
end ...
-- My card script
local sBrowserId
on openCard
browserOpen
end ...
- Tue Aug 17, 2010 9:15 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: post url newbie
- Replies: 7
- Views: 6964
- Mon Aug 16, 2010 4:13 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Opening a stack in the same window
- Replies: 1
- Views: 2983
Opening a stack in the same window
go to stack URL "http://localhost/test.rev"
The code above will open the stack in a new window. How do I run the stack without opening a new window?
The code above will open the stack in a new window. How do I run the stack without opening a new window?
- Mon Aug 16, 2010 3:51 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Integrating Stack
- Replies: 1
- Views: 2843
Integrating Stack
I want to integrated a stack which located in another rev file. I don't want to have too many files around so I want have this stack as a substack in my current project. How do you do that in rev?
- Fri Aug 13, 2010 9:40 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: post url newbie
- Replies: 7
- Views: 6964
Re: post url newbie
Thank you very much!
- Fri Aug 13, 2010 1:56 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: post url newbie
- Replies: 7
- Views: 6964
Re: post url newbie
I'm trying to do this:
put "id_no=100" into myQuery
urlencode(myQuery)
post myQUery to url "http://localhost"
put the result && it
I already have web server set up (xampp) with a php service handler. My php handler looks like this:
if ( isset($_REQUEST['id_no']) ) {
print "ok<b>" ;
}
else ...
put "id_no=100" into myQuery
urlencode(myQuery)
post myQUery to url "http://localhost"
put the result && it
I already have web server set up (xampp) with a php service handler. My php handler looks like this:
if ( isset($_REQUEST['id_no']) ) {
print "ok<b>" ;
}
else ...