Re: "No Code Signature Found"

2011-11-27 Thread Mike Kerner
Never mind, I found a solution on the Forums (weird - I searched but...) Anyway, for those that read this in the future, go into your Keychain (Applications->Utilities->Keychain Access). In the Certificates, find and delete any expired development certificates, rebuild in LC and reinstall using XC

"No Code Signature Found"

2011-11-27 Thread Mike Kerner
Hmm. My iOS app made it through the simulator, the standalone builder, and I have the certificates generated. Now I'm trying to use xCode to send it across to a real device for real testing and XCode gives me "No Code Signature Found". Suggestions? -- On the first day, God created the heavens a

Re: On-Rev mySQL security issues? -- or use an LC stack for the DB?

2011-11-27 Thread Tim Selander
Hi Kay, Appreciate the input... I've wondered about mySQL's license, too. Here is additional info. My catalog is an archive of the radio and TV programs we've aired. We will create the database and add to it bit by bit behind the scenes. No data will be input through the web/browser -- strict

Re: Dispatch vs Libraries

2011-11-27 Thread Mark Wieder
Todd- Sunday, November 27, 2011, 12:17:11 PM, you wrote: > How does that pave the way for Multiple inheritance? I was thinking as > Jacque thought that this was the same as using any variable. I'm normally quite allergic to multiple inheritance, and so if I find myself in a situation where I

Re: [BUG] - Scrollbars in LiveCode

2011-11-27 Thread Kay C Lan
On Sun, Nov 27, 2011 at 1:41 AM, Mark Schonewille < m.schonewi...@economy-x-talk.com> wrote: > Hi, > > Additionally, the up arrow of the scrollbar doesn't hilite in 5.0.1. > Bummer. Any solutions? Scoll bars are an essential interface element and I > need this to work properly. > > Hi Mark, I'm n

Re: On-Rev mySQL security issues?

2011-11-27 Thread Kay C Lan
Hi Tim, Sounds like you and me are on the same par, so appreciate that I am no expert in this field, but I was able to achieve something similar to what you are doing through a lot of help from those on this List, either directly from posts or indirectly from their websites. My project involved n

Selecting Multiple Buttons in iOS

2011-11-27 Thread Randy Hengst
Hi All, I have 10 buttons in a horizontal row… users may select any combination of the 10 buttons. All works well tapping a button one at a time to select/deselect. I thought it would be nice to allow the user to select a button with a tap and then slide(swipe) to the right or left to select o

Re: Dispatch vs Libraries

2011-11-27 Thread Ken Ray
On Nov 27, 2011, at 11:43 AM, Mark Wieder wrote: > Todd- > > Sunday, November 27, 2011, 6:42:04 AM, you wrote: > >> dispatch "SaveData" to Services["MyContact"] with DataArray > > !!! You can dispatch a message to an array element? !!! > I had no idea… I guess if the array element contains

Re: Excel tip with LC equivalent: Value comparison

2011-11-27 Thread Alejandro Tejada
Great insight! Thanks for Sharing. :-) Al -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Excel-tip-with-LC-equivalent-Value-comparison-tp4112325p4113595.html Sent from the Revolution - User mailing list archive at Nabble.com.

Re: How do I import/read images and their ID from a separate folder to change the icon of a button?

2011-11-27 Thread Björnke von Gierke
On 27 Nov 2011, at 15:38, William de Smet wrote: > Eventually I will need a lot of images and now I was thinking of > keeping the images outside of the stack in a separate folder. > Is it possible to do the same thing? Read the images and their ID and > set the icon of the button to the ID of an i

Re: Dispatch vs Libraries

2011-11-27 Thread Pete
Hi Todd, All interesting stuff. I knew about the it and return values for dispatch but thought the result only worked with functions, but makes sense that what you're doing would work too. On Sun, Nov 27, 2011 at 12:27 PM, Todd Geist wrote: > On Sun, Nov 27, 2011 at 10:41 AM, Pete wrote: > > So

Re: Dispatch vs Libraries

2011-11-27 Thread Todd Geist
On Sun, Nov 27, 2011 at 10:41 AM, Pete wrote: Something looks a little strange about the first dispatch statement - > you're sending a message to an array? I thought messages went to > stacks/cards/controls. I think you'd also need to use the "dispatch > function" syntax to get a result back.

Re: Dispatch vs Libraries

2011-11-27 Thread Todd Geist
Hi Mark, How does that pave the way for Multiple inheritance? I was thinking as Jacque thought that this was the same as using any variable. On Sun, Nov 27, 2011 at 11:26 AM, Mark Wieder wrote: > > > I think the array element resolves to a long button ID, so really it > > isn't any different t

Re: Dispatch vs Libraries

2011-11-27 Thread Mark Wieder
Jacque- Sunday, November 27, 2011, 10:53:38 AM, you wrote: > I think the array element resolves to a long button ID, so really it > isn't any different than dispatching to a literal ID stored in any variable. No, that's huge! The fact that the array element gets resolved to an object ID before t

Re: Dispatch vs Libraries

2011-11-27 Thread Pete
Ah yes, hadn't thought of that! ANother new piece of knowledge to store away. On Sun, Nov 27, 2011 at 10:53 AM, J. Landman Gay wrote: > On 11/27/11 12:41 PM, Pete wrote: > > Something looks a little strange about the first dispatch statement - >> you're sending a message to an array? >> > > I t

Re: How do I import/read images and their ID from a separate folder to change the icon of a button?

2011-11-27 Thread J. Landman Gay
On 11/27/11 8:38 AM, William de Smet wrote: Eventually I will need a lot of images and now I was thinking of keeping the images outside of the stack in a separate folder. Is it possible to do the same thing? Read the images and their ID and set the icon of the button to the ID of an image. Ima

Re: Dispatch vs Libraries

2011-11-27 Thread J. Landman Gay
On 11/27/11 12:41 PM, Pete wrote: Something looks a little strange about the first dispatch statement - you're sending a message to an array? I think the array element resolves to a long button ID, so really it isn't any different than dispatching to a literal ID stored in any variable. --

Re: Dispatch vs Libraries

2011-11-27 Thread Pete
One thing you might want to consider is whether you plan to use this logic in more than one application - that's when libraries come into their own, a central depository for reusable handlers. Something looks a little strange about the first dispatch statement - you're sending a message to an arra

Re: Dispatch vs Libraries

2011-11-27 Thread Mark Wieder
Todd- Sunday, November 27, 2011, 6:42:04 AM, you wrote: >dispatch "SaveData" to Services["MyContact"] with DataArray !!! You can dispatch a message to an array element? !!! I had no idea... -- -Mark Wieder mwie...@ahsoftware.net ___ use-liveco

Dispatch vs Libraries

2011-11-27 Thread Todd Geist
Hello, I am experimenting with a couple of approaches to something and I am curious in other opinions on it. I am using behaviors to encapsulate a bunch of code to access web services. I create an "instance" of this object by creating a new button on a utility card and set a few custom propertie

How do I import/read images and their ID from a separate folder to change the icon of a button?

2011-11-27 Thread William de Smet
Hi there, I my new iOS app I show random images and that works fine. I have imported some images into the stack and looked for their ID. The script I use: put any item of (4794,4772,4771,4795,4796,4797) into tRandomImage set the icon of btn "RandomImage" to tRandomImage Eventually I will need a l

Excel tip with LC equivalent: Value comparison

2011-11-27 Thread FlexibleLearning
I have an Excel speadsheet that is kinda self-checking in that 3 cells display the same value if I have made no data entry errors. How to determine if cells A1, B1 and C1 are the same value... Put this in cell D1 to display 'TRUE' or 'FALSE': =IF(A1=B1,IF(B1=C1,TRUE,FALSE),FALSE) Bonus feature

Re: On-Rev mySQL security issues?

2011-11-27 Thread Björnke von Gierke
comprehensive list: https://www.owasp.org/index.php/Top_10_2010-Main the top two entries should be understood at least on a basic level: http://en.wikipedia.org/wiki/SQL_injection http://en.wikipedia.org/wiki/Cross-site_scripting Obviously some things do not apply to Rev-based code, but for examp

Re: On-Rev mySQL security issues?

2011-11-27 Thread Tim Selander
Thanks for the input, Jim. You're the second person to recommend RevIgniter. Sivakatirswami also highly praises the product and even sent me a bunch of code off-list to help with my project! At this point, I'm a little fuzzy on what a framework even is, let alone how to use it. (I'm a TV cam

Re: auto-rotation in 5.0.1/.02

2011-11-27 Thread Mark Smith
Yes sir, that fixed it. Thanks. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/auto-rotation-in-5-0-1-02-tp4111266p4112014.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode maili

Re: auto-rotation in 5.0.1/.02

2011-11-27 Thread Mark Smith
Randy Hengst wrote > > Looking at your script, you added spaces after the commas…. in your > comma-delimited list…. you can't do > Randy, thanks. I knew there was something I was probably doing wrong. -- Mark -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/