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: 2876
- 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: 2876
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 current ...
- Wed Oct 14, 2009 2:17 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Simple Way of Saving Code Snippets?
- Replies: 6
- Views: 5401
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: 3955
- Tue Oct 13, 2009 10:26 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: numbers ending in only .0
- Replies: 4
- Views: 3955
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 the numbers end...
- Tue Oct 13, 2009 1:54 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: (1) in title of stand alone
- Replies: 3
- Views: 3360
- Mon Oct 12, 2009 10:37 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: (1) in title of stand alone
- Replies: 3
- Views: 3360
(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: 4852
- 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: 2841
I apolgize. That's just it. There is nothing special going on with scripting. In development, either program works perfect. on Mouseup go card "cardname" end Mouseup There is no preopen card script.... (could that be the problem?) Should I be doing something here? Make the stand alone, any button yo...
- 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: 2841
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 program...
- 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: 4852
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: 3087
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 switch pItem...
- 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: 4704
I 'm not sure what it does.... I found the code sample in the notes of the repeat function in the Rev Dictionary. I modified it as this: on menuPick pItemName set the wholeMatches to true local tLineNumber put 1 into tLineNumber repeat for each line tLine in field "Field321" put lineoffset(pItemName...
- 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: 4704
Thanks. Now added some code. I'm looping through and even able to delete multiple occurrences of it :) But... With that being said, I don't see exactly how it works... Could you or someone please tell me how this works? --We are setting a local variable called tLineNumber local tLineNumber --We are ...
- 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: 4704
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