Search found 56 matches
- Fri Oct 16, 2009 12:46 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Create, be able to print then save a pdf...
- Replies: 2
- Views: 3524
- Wed Oct 14, 2009 7:10 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Create, be able to print then save a pdf...
- Replies: 2
- Views: 3524
Create, be able to print then save a pdf...
Looking at the pdf library but not even sure where to start.
I need to be able to print a card to an 8 1/2 x 11 sheet of paper (and save that pdf, preferably automatically)
The screen is not laid out the same each time. (The position of text boxes may change, etc.)
Is it possible to get the ...
I need to be able to print a card to an 8 1/2 x 11 sheet of paper (and save that pdf, preferably automatically)
The screen is not laid out the same each time. (The position of text boxes may change, etc.)
Is it possible to get the ...
- Wed Oct 14, 2009 2:17 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Simple Way of Saving Code Snippets?
- Replies: 6
- Views: 6499
Simple Way of Saving Code Snippets?
I'm sure there are tons of ways but can you guys recommend a good way to store little snippets of code I can add notes to and keyword tags?
Thanks!
Thanks!
- Tue Oct 13, 2009 11:19 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: numbers ending in only .0
- Replies: 4
- Views: 4876
- Tue Oct 13, 2009 10:26 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: numbers ending in only .0
- Replies: 4
- Views: 4876
numbers ending in only .0
I have this on a card:
on mouseUp
put field "FeetWide" into FeetWide
put field "FeetLong" into FeetLong
put FeetWide*FeetLong into TotalSqFt
put TotalSqFt into field "TotalSqFt"
Put TotalSqFt * ChargePerSqFt / 1000 into Field "TotalToCharge"
end mouseUp
It works like it should except ...
on mouseUp
put field "FeetWide" into FeetWide
put field "FeetLong" into FeetLong
put FeetWide*FeetLong into TotalSqFt
put TotalSqFt into field "TotalSqFt"
Put TotalSqFt * ChargePerSqFt / 1000 into Field "TotalToCharge"
end mouseUp
It works like it should except ...
- Tue Oct 13, 2009 1:54 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: (1) in title of stand alone
- Replies: 3
- Views: 4097
- Mon Oct 12, 2009 10:37 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: (1) in title of stand alone
- Replies: 3
- Views: 4097
(1) in title of stand alone
I'm sure this is super simple obvious but can someone tell me how to get rid of this in my stand alones? They all have the title then the page #...
- Mon Oct 12, 2009 10:36 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Numbers or text only in a field?
- Replies: 4
- Views: 6096
- Mon Oct 12, 2009 7:34 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Stand alone program hesiatates when you click first button..
- Replies: 2
- Views: 3448
- Mon Oct 12, 2009 4:43 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Stand alone program hesiatates when you click first button..
- Replies: 2
- Views: 3448
Stand alone program hesiatates when you click first button..
I have 2 stand alones I've built. (both pretty simple)
In one program there are 7 buttons on the main screen. They are used to go to other screens.
One the other program it has some icons as buttons on the main screen.
Once you click to run them, the main screen loads just fine...
BUT...both ...
In one program there are 7 buttons on the main screen. They are used to go to other screens.
One the other program it has some icons as buttons on the main screen.
Once you click to run them, the main screen loads just fine...
BUT...both ...
- Mon Oct 12, 2009 12:28 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Numbers or text only in a field?
- Replies: 4
- Views: 6096
Numbers or text only in a field?
Is there a simple way to only let a user enter numbers into a text box? (or letters only for that matter?)
In another language I remember where you could mask or set a field to only accept one or the other. Is there something like that in RunRev?
In another language I remember where you could mask or set a field to only accept one or the other. Is there something like that in RunRev?
- Mon Oct 12, 2009 12:16 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Multiply two values from combo list...
- Replies: 1
- Views: 3650
Multiply two values from combo list...
I have two combo list boxes on a page. I'm trying to get the value from each and multiply them when I click a button.
Just to see if it will work I put this in the combo list code...
I put this code into the combo box
on menuPick pItemName
put pItemName into MyVariable
answer MyVariable ...
Just to see if it will work I put this in the combo list code...
I put this code into the combo box
on menuPick pItemName
put pItemName into MyVariable
answer MyVariable ...
- Sun Oct 11, 2009 3:35 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Delete item in field chosen from dropdown
- Replies: 5
- Views: 5711
- Sun Oct 11, 2009 2:57 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Delete item in field chosen from dropdown
- Replies: 5
- Views: 5711
- Sat Oct 10, 2009 10:38 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Delete item in field chosen from dropdown
- Replies: 5
- Views: 5711
Delete item in field chosen from dropdown
I've tried several versions of this and I'm stumped. All I'm trying to do is to delete an item in a field that I've chosen from a dropdown menu.
I'm using this:
I'm using this:
Code: Select all
on menuPick pItemName
delete pItemName from field "Field321"
end menuPick