Peter,
Thanks! I am sorry to be late in replying to your email. I have been trying to
figure a problem I am with using LC's clipboardData in pasting text from a LC
created app to a Pages document.
Sent from my iPad
___
use-livecode mailing list
use
Mark,
Thanks! I am sorry to be late in replying to your email.
Sent from my iPad
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev
Charles-
As Peter pointed out, the problem is that you have *too many* breaks,
not that you need to add one. Remove the breaks after the case "Bold"
and case "Italic" lines, as these will exit from the switch statement
without doing anything.
Also, in the Italic case section you're attempting to
On Apr 7, 2012, at 1:38 PM, Charles Szasz wrote:
> Peter,
>
> Thanks! But that is how the script is presented in the Resource Center with
> no breaks before the end of the switch. I did insert a break after the last
> case statement but the script still does not work. Any other suggestions?
Ju
Peter,
Thanks! But that is how the script is presented in the Resource Center with no
breaks before the end of the switch. I did insert a break after the last case
statement but the script still does not work. Any other suggestions?
Charles Szasz
csz...@mac.com
On Apr 6, 2012, at 10:44 PM, Charles Szasz wrote:
> on menuPick theMenuItem
> set the itemDelimiter to "|"
> switch item 1 of theMenuItem ---the submenu name
> case "Font"
> set the textFont of field "Example Text"\
>to item 2 of theMenuItem
> break
>
Jacque,
Here is my script:
on menuPick theMenuItem
set the itemDelimiter to "|"
switch item 1 of theMenuItem ---the submenu name
case "Font"
set the textFont of field "Example Text"\
to item 2 of theMenuItem
break
case "Size"
set the te
On 4/6/12 6:09 AM, Charles Szasz wrote:
I also entered the script manually line by line to see if there might
be some problems with just pasting it. I go the same results - the
script did not work. What is the problem? Is this a problem with the
Resource Center script?
Post the original scrip
For the first time I ventured into creating a Font Menu button for a project I
am working on. I wanted the Font Menu button to on a card close to a text field
where the user could change the font attributes including font, size, style of
the field. I remembered the example in the Resource Cente