Search found 10 matches

by morbug
Thu Mar 07, 2013 3:02 pm
Forum: Windows
Topic: Signing applications for use with Win7?!
Replies: 2
Views: 3604

Re: Signing applications for use with Win7?!

Great!

Thank you very, very much!

- Fredrik
by morbug
Thu Mar 07, 2013 12:26 pm
Forum: Windows
Topic: Signing applications for use with Win7?!
Replies: 2
Views: 3604

Signing applications for use with Win7?!

Hi, I'm something of a inhouse developer (a glorified hobbyist really) that have made a few applications with LiveCode that is used throughout the company. Right now we're starting the migration from WinXP to Win7 and as far as I've understood no .exe-files can run on the new platform unless it's si...
by morbug
Fri Mar 13, 2009 11:37 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Find "/"
Replies: 8
Views: 5493

: forums.runrev.com /phpBB2 /phpBB2 Yeah, I forgot to change item 4 to item x but you noticed that already so all is well :). I used itemdelim a LOT when doing a little character creation application for a tabletop roleplaying game. Useful for finding stuff inside paranthesis too. (sp? I'm just a s...
by morbug
Fri Mar 13, 2009 10:11 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Find "/"
Replies: 8
Views: 5493

Hmmm...

Odd. But I'm pretty new at this so there probably are something that I don't understand. It seems to work pretty well for me if I put an URL in field "B". I updated the code to be a bit more generic but if the first one didn't work this one probably won't either: set the itemdelimiter to "/" IF char...
by morbug
Fri Mar 13, 2009 9:44 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Find "/"
Replies: 8
Views: 5493

How about setting the itemdelimiter to "/" and then use the third, fourth and fifth item to get what you want? Edit: Like this... set the itemdelimiter to "/" IF char 1 to 7 of field "B" is "http://" THEN put item 3 of field "B" & return into tText put "/" & item 4 of field "B" & return after tText ...
by morbug
Mon Oct 20, 2008 5:57 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Libraries and reusing stacks
Replies: 4
Views: 3820

Thanks again! It looks like a lot less hassle to use the libraries as sub stacks and since I actually got it to work I think I'll use that method.
by morbug
Mon Oct 20, 2008 8:49 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Libraries and reusing stacks
Replies: 4
Views: 3820

Thanks!

It works when I use the absolute path to the library. Do you have any thoughts on what's the best way of using libraries in stand-alone applications? Including them as a sub stack?
by morbug
Mon Oct 20, 2008 7:17 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Libraries and reusing stacks
Replies: 4
Views: 3820

Libraries and reusing stacks

Sometimes my mind just refuses to understand some things, like the use of Libraries in Rev. I've read lots of forum posts, the user manual, fourthworlds guide but I still don't get it. (I'm very new to Revolution..) I've created a library stack called libRPG where I've put one function at the moment...
by morbug
Tue Oct 07, 2008 11:53 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How do I use a custom stack as an "ask"-dialog?
Replies: 2
Views: 2647

Thanks!

It looks like this is exactly what I need :)

Thanks!

Edit: After a few adaptations to my code it works perfectly. This will make my life a lot easier. Thanks again!
by morbug
Tue Oct 07, 2008 7:03 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How do I use a custom stack as an "ask"-dialog?
Replies: 2
Views: 2647

How do I use a custom stack as an "ask"-dialog?

Hi there everyone! I'm horribly new at using Revolution and I need help with a small problem: In my current application I use a simple ask dialog on a couple of my substacks when I need the user to specify one of several options (what options vary each time). I simply list the options in the prompt ...