Search found 13579 matches

by Klaus
Sun Jul 22, 2007 9:00 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Visual effects going to substack?
Replies: 13
Views: 9534

Hi Kai, but you could fake a visual effect with stacks, at least the "dissolve" one. 1. Use a repeat loop and set the blendlevel of stack one until it is totally transparent. 2. Hide this stack 3. Use another repeat loop and set the blendlevel of stack two to "fade" this one in Know what I mean? Reg...
by Klaus
Sun Jul 22, 2007 8:30 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Visual effects going to substack?
Replies: 13
Views: 9534

Hi Kai,

in other words visual effects only work in ONE window.
by Klaus
Sun Jul 22, 2007 5:31 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Visual effects?
Replies: 6
Views: 6269

Hi Kai,

very strange.

...
visual dissolve
go next cd
...

visual effect dissolve
go next cd
...

Both work without problem.


Regards

Klaus
by Klaus
Sun Jul 22, 2007 10:28 am
Forum: Talking LiveCode
Topic: popup button from menu
Replies: 6
Views: 5354

Hi Garret,

???

"menus" in Rev ARE in fact buttons, so this is correct behaviour.
Or do I miss something?


Regards

Klaus
by Klaus
Sun Jul 22, 2007 10:26 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Inline graphics in text field
Replies: 2
Views: 3827

Hi dalkin,

check "imagesource" in the docs.


Best

Klaus
by Klaus
Sun Jul 22, 2007 10:25 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: little arrows scrollbars?
Replies: 2
Views: 4081

Hi Paul,

this script of a "little arrows" scrollbar will do what you want:
Of course you need a field with a number in it!

Code: Select all

on scrollbarLineDec
  add 1 to fld 1
end scrollbarLineDec

on scrollbarLineinc
  subtract 1 from fld 1
end scrollbarLineinc

Regards

Klaus
by Klaus
Sun Jul 22, 2007 10:20 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Is this expected behaviour?
Replies: 1
Views: 2697

Hi Kai,

check "the environment" in the docs:

...
if the environment <> "development" then
close this stack
end if
...


Regards

Klaus
by Klaus
Sat Jul 21, 2007 9:35 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: error checking or trapping when writing text file
Replies: 3
Views: 4168

Glad I could help, Derek :-)
by Klaus
Sat Jul 21, 2007 8:54 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: error checking or trapping when writing text file
Replies: 3
Views: 4168

Hi Derek,

"the result" is always empty when the action was succesful and will contain a hint on what might have gone wrong if not.


Regards

Klaus
by Klaus
Sat Jul 21, 2007 1:19 pm
Forum: Talking LiveCode
Topic: Status of keys on keyboard
Replies: 7
Views: 6658

keysdown()

Exactly, took about 2 more hours before I also had this idea, but it's hard to beat this smart dutchman anyway ;-)
by Klaus
Sat Jul 21, 2007 12:29 pm
Forum: Talking LiveCode
Topic: Status of keys on keyboard
Replies: 7
Views: 6658

Ooops, sorry, totally overlooked your last sentence :-/

Sorry, no other ideas...
by Klaus
Sat Jul 21, 2007 12:28 pm
Forum: Talking LiveCode
Topic: Status of keys on keyboard
Replies: 7
Views: 6658

Hi Garret, check the docs for "rawkeydown/-up". To get the the correct "rawkey" number of these keys, create a new stack with one field and put this into the cardscript: on rawkeydown tKey put tKey & CR after fld 1 ## or "...into fld 1" end rawkeydown This way cou can press any key, see its "rawkey"...
by Klaus
Sat Jul 21, 2007 11:13 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Why developers have flat foreheads
Replies: 5
Views: 5213

LOL :lol:

Have a nice weekend (with or without some aspirin ;-))


Best from germany

Klaus
by Klaus
Sat Jul 21, 2007 9:47 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Why developers have flat foreheads
Replies: 5
Views: 5213

Hi dalkin,

oh c'mon, that's a name and handler I invented, could also have called it "howard", but "checktool" sounded more erm... PRO :-D


Best from germany

Klaus
by Klaus
Fri Jul 20, 2007 3:44 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Changing background group behavior on one card
Replies: 3
Views: 4645

Hi derek, does a simple: ... if the num of this cd = the num of cds then ## now you are on the LAST card of the stack! go stack "name of substack here" ## or whatever... else ## there IS a next card in the stack... go next cd end if ... in the script of that namely button work for you? :-) This way ...

Go to advanced search