Where's my keyboard shortcut for "import as control"?

2010-11-01 Thread tkuyp...@telenet.be
Could be me, but I'm missing the keyboard shortcut for importing an image into 
a stack...
It was still there in LiveCode 4.5.0 build 1080, but it is gone in the versions 
after that.
(at least on my Mac, didn't try Windows...)

Can someone confirm this?

Ton Kuypers





Met vriendelijke groeten,

Ton Kuypers



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Problem with copy groups in standalones

2010-08-18 Thread tkuyp...@telenet.be
Hi Richard,

Thanks, it was the copy protection, that messed up things, so "set the passkey" 
solved the problem. Thanks!


Met vriendelijke groeten,

Ton Kuypers



On 18-aug-2010, at 18:25, Richard Gaskin wrote:
> 
> To copy from a password-protected stack, you can set the stack's passkey as 
> needed:
> 
>   set the passkey of stack "CopyingFrom" to "MyPassword"
> 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Problem with copy groups in standalones

2010-08-18 Thread tkuyp...@telenet.be
Hi,

I'm having a strange problem, maybe someone can assist...

I need to duplicate a group of controls into another group and do some things 
with it afterwards. In the IDE the following works fine:

 copy grp "RightPageOriginalNew" to group "PageList"
 put it into vNewPage

But when I save the app as a standalone, no copy is made and the variable It 
returns empty... 

I'm running on Mac, RR version 4.5.0-dp3, but 4.0 gives the same result.

Can someone tell me what I'm doing wrong?


Met vriendelijke groeten,
Warm Regards,

PublishingTools4u
Ton Kuypers
+32 (0) 477 739 530

Aardbemden 11 • B-2400 • Mol • Belgium
www.publishingtools4u.com



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Drag & Drop question

2010-06-30 Thread tkuyp...@telenet.be
Hi Mark,

Yes, I read it yesterday, but it didn't solve my question... 
The answer Jan Schenkel posted was exactly what I was looking for, and i could 
not find that in the tutorial or in the docs...
But thanks anyway :-)

Met vriendelijke groeten,

Ton Kuypers



On 30-jun-2010, at 06:59, Mark Wieder wrote:

> tkuypers-
> 
> Here's a tutorial I wrote on drag-and-drop:
> 
> http://lessons.runrev.com/spaces/lessons/buckets/784/lessons/7124-Pinning-Drag-and-drop-to-the-mat-a-primer
> 
> -- 
> -Mark Wieder
> mwie...@ahsoftware.net
> 
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
> 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Drag & Drop question

2010-06-30 Thread tkuyp...@telenet.be
Hi Jan,

Thanks, works like a charm!
Never thought about the dragImage :-(


Met vriendelijke groeten,

Ton Kuypers



On 30-jun-2010, at 06:54, Jan Schenkel wrote:

> I think the button you're dragging along will get in the way of the drop. 
> It's better to update the dragImage rather than try and move a 'shadow' 
> button around the card; besides, it won't show once your drag goes outside 
> the window.
> 
> Add an image, set its name to "DragImage" and hide it. Then use the following 
> code:
> ##
> on dragStart
>   set the itemdel to tab
>   set the label of btn "DragData" to \
>  item 2 of the hilitedText of me
>   export snapshot from btn "DragData" \
>  to image "DragImage" as PNG
>   set the dragImage to the short id of image "DragImage"
>   set the dragData["text"] to the hilitedText of me
>   pass dragStart
> end dragStart
> ##
> 
> You can always play around with the dragImageOffset to better align the 
> dragImage with the cursor.
> 
> HTH,
> 
> Jan Schenkel.
> =
> Quartam Reports & PDF Library for Revolution
> <http://www.quartam.com>
> 
> =
> "As we grow older, we grow both wiser and more foolish at the same time."  
> (La Rochefoucauld)
> 
> 
> --- On Tue, 6/29/10, tkuyp...@telenet.be  wrote:
>> ok, something weird is happening and
>> I'm lost...
>> 
>> I have a list with some lines of text of which I want to
>> drag from.
>> Next I have a button on which I want to drop onto.
>> 
>> I've created an invisible button, whose label is set to the
>> line I selected, and becomes visible in the "dragStart"
>> handler of the field.
>> 
>> Script in field:
>> on dragStart
>>set the itemdel to tab
>>set the label of btn "DragData" to item 2
>> of the hilitedText of me
>>show btn "DragData"
>>set the dragData["text"] to the
>> hilitedText of me
>>pass dragStart
>> end dragStart
>> 
>> on dragEnd
>>hide btn "DragData"
>> end dragEnd
>> 
>> on dragMove
>>set the loc of btn "DragData" to the
>> mouseLoc
>>pass dragMove
>> end dragMove
>> 
>> 
>> And now the strange thing.
>> Drag & drop works fine, the button accepts the drop,
>> but moving the "text-lable-button" is choppy and  stops
>> when I leave the field.
>> 
>> So I moved the "DragMove" handler out of the field and
>> moved it to the card script.
>> Moving is really smooth now, the button follows the mouse
>> very nice, but the drop doesn't work anymore... The button
>> that should receive the dragData just doesn't react
>> anymore.
>> 
>> What am I missing?
>> 
>> I'm on a Mac and using the latest version of RR
>> (4.5.0-dp-3), but 4.0.0-gm-1 reacts the same.
>> 
>> Any help is welcome!
>> 
>> 
>> Met vriendelijke groeten,
>> Warm Regards,
>> 
>> PublishingTools 4 U
>> Ton Kuypers
>> +32 (0) 477 739 530
>> 
>> Aardbemden 11 • B-2400 • Mol • Belgium
>> www.publishingtools4u.com
>> 
>> 
>> 
>> ___
>> use-revolution mailing list
>> use-revolution@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage
>> your subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-revolution
>> 
> 
> 
> 
> 
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
> 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Drag & Drop question

2010-06-29 Thread tkuyp...@telenet.be
ok, something weird is happening and I'm lost...

I have a list with some lines of text of which I want to drag from.
Next I have a button on which I want to drop onto.

I've created an invisible button, whose label is set to the line I selected, 
and becomes visible in the "dragStart" handler of the field.

Script in field:
on dragStart
   set the itemdel to tab
   set the label of btn "DragData" to item 2 of the hilitedText of me
   show btn "DragData"
   set the dragData["text"] to the hilitedText of me
   pass dragStart
end dragStart

on dragEnd
   hide btn "DragData"
end dragEnd

on dragMove
   set the loc of btn "DragData" to the mouseLoc
   pass dragMove
end dragMove


And now the strange thing.
Drag & drop works fine, the button accepts the drop, but moving the 
"text-lable-button" is choppy and  stops when I leave the field.

So I moved the "DragMove" handler out of the field and moved it to the card 
script.
Moving is really smooth now, the button follows the mouse very nice, but the 
drop doesn't work anymore... The button that should receive the dragData just 
doesn't react anymore.

What am I missing?

I'm on a Mac and using the latest version of RR (4.5.0-dp-3), but 4.0.0-gm-1 
reacts the same.

Any help is welcome!


Met vriendelijke groeten,
Warm Regards,

PublishingTools 4 U
Ton Kuypers
+32 (0) 477 739 530

Aardbemden 11 • B-2400 • Mol • Belgium
www.publishingtools4u.com



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevMobile & Android

2010-05-30 Thread tkuyp...@telenet.be
I bought the same one, the Sony-Ericsson Xperia X10... I like it and I want to 
start developing for it...


Met vriendelijke groeten,

Ton Kuypers



On 30-mei-2010, at 22:12, viktoras d. wrote:

> I am not interested in iPhones or iPads anymore ;-) so I am about to buy 
> Sony-Ericsson Xperia or one of the Android powered  HTC phones that now are 
> sold throughout the Europe (preferably the one with GPS).
> 
> 
> It would be really interesting and useful to know what point we are at with 
> the RevMobile for Android platform.
> 
> Viktoras
> 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RevMobile & Android

2010-05-30 Thread tkuyp...@telenet.be
Maybe I've missed it, but due to the decision of Apple and the result for 
RevMobile, what is the e.t.a. of RevMobile for Android?
I just received my Sony Xperia X10 and I really want to start development for 
it...


Met vriendelijke groeten,
Warm Regards,



Ton Kuypers
+32 (0) 477 739 530

Aardbemden 11 • B-2400 • Mol • Belgium
www.publishingtools4u.com




___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Another Revlets question...

2010-05-14 Thread tkuyp...@telenet.be
Great! That works, thanks!!!


Met vriendelijke groeten,

Ton Kuypers



On 14-mei-2010, at 17:01, Mark Schonewille wrote:

> go to stack "The is the second stack" in the window of this stack

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Another Revlets question...

2010-05-14 Thread tkuyp...@telenet.be
Am I correct to assue that the command 
   go to stack "The is the second stack" 
does not work in a Revlet?

I created a Mainstack with one button, containing the above code, but nothing 
happens when I click on it in the Revlet. Locally it works fine of course
Tried this in 4.0 and 4.5, same result :-(

Met vriendelijke groeten,
Warm Regards,


Ton Kuypers
+32 (0) 477 739 530

Aardbemden 11 • B-2400 • Mol • Belgium
www.publishingtools4u.com


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Stuck with Revlets :-(

2010-05-12 Thread tkuyp...@telenet.be
JIM, YOU ROCK

Falling back to 4.0 did the job! 

The code
   put url 
"http://www.publishingtools4u.com/placemats4free/templates/templates.xml"; into 
fld "Data1"
now works.

This is great, now at least I can continue :-)


Warm regards,

Ton Kuypers



On 13-mei-2010, at 02:58, Jim Bufalini wrote:

> 
> Try dropping back to Rev 4.0 and report if the problems are the same. There
> have been reports of problems in this area with Rev 4.5 dp-3.
> 
> Aloha from Hawaii,
> 
> Jim Bufalini
> 
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
> 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Stuck with Revlets :-(

2010-05-12 Thread tkuyp...@telenet.be
Hi Scott,

I know, but I copied the code from the variant with "file:" in from of it... It 
won't give a problem in a local app, but sadly enough with or without doesn't 
give a result when using it in a revlet :-(


Regards,

Ton Kuypers



On 12-mei-2010, at 23:48, Scott Rossi wrote:

> Recently, tkuyp...@telenet.be wrote:
> 
>> I've been testing some more, but no luck...
>> - put 
>> url("http://www.publishingtools4u.com/placemats4free/templates/templates.xml";)
>> into fld "Data1"   > No result
>> - put url("file:" & "/templates/templates.xml") into fld "Data1"  > No result
>> - put url("file:" & "/wwwroot/placemats4free/templates/templates.xml") into
>> fld "Data1"  > No result
> 
> Ton, a “URL” is a container, not a function.  Try this:
> 
> put url 
> "http://www.publishingtools4u.com/placemats4free/templates/templates.xml";
> into fld "Data1"
> 
> Regards,
> 
> Scott Rossi
> Creative Director
> Tactile Media, UX Design
> 
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
> 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Stuck with Revlets :-(

2010-05-12 Thread tkuyp...@telenet.be
Did that, but besides giving me the security warning, the result is the same: 
nada, zilch, nothing, noppes :-(


Regards,

Ton Kuypers



On 12-mei-2010, at 23:12, J. Landman Gay wrote:

> tkuyp...@telenet.be wrote:
>> Hi Mike,
>> It is the full path to the XML file, so
>> http://someFolder/someSubfolder/Templates.xml... When I put that into
>> a field, copy it and paste it into the browser, it works ok...
> 
> When you built the revlet, did you select "Network" in the permissions? You 
> need to do that.
> 
> -- 
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
> 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Stuck with Revlets :-(

2010-05-12 Thread tkuyp...@telenet.be
Hi Mike,

It is the full path to the XML file, so 
http://someFolder/someSubfolder/Templates.xml... When I put that into a field, 
copy it and paste it into the browser, it works ok...


Met vriendelijke groeten,

Ton Kuypers



On 12-mei-2010, at 18:54, Michael Kann wrote:

> Ton,
> 
> At first glance I would think it is some path to a file that isn't working 
> correctly when you are put your revlet on the remote server.
> 
> Mike
> 
> 
> 
> --- On Wed, 5/12/10, tkuyp...@telenet.be  wrote:
> 
>> From: tkuyp...@telenet.be 
>> Subject: Stuck with Revlets :-(
>> To: "Revolution (use-revolution)" 
>> Date: Wednesday, May 12, 2010, 11:28 AM
>> I'm probably the last one in the
>> Revolution community, owning an Enterprise license, but only
>> today started exploring the "Build for Web" feature... And
>> after a day of testing and struggling I'm stuck :-(
>> 
>> I think I'm missing a few things, so maybe someone can help
>> me out.
>> 
>> On my webserver I've created a folder structure, containing
>> a bunch of folders, each containing subfolders and in the
>> last subfolder a bunch of jpg files.
>> A local application creates these jpg files, the correct
>> folders and an XML file describing everything.
>> 
>> I've created a stack that reads in the xml file, to fill
>> the first field, called "Categories".
>> Clicking on a category in this field will read the XML
>> again and find the subcategories, which are basically the
>> jpg files in the folder.
>> 
>> Doing this locally, it works fine, but from within the
>> Revlet the first field doesn't even get filled, so it
>> doesn't read the XML file...
>> 
>> What am I doing wrong? I don't want to use PHP, .NET or any
>> other coding, because this project is very suited to be
>> handled completely inside Revolution, but then at least I
>> need to be able to load data from the server...
>> 
>> Is it the XML library that doesn't work in Revlets?
>> 
>> I'm using version RR 4.5.0-dp3 and am getting quite
>> frustrated :-(
>> A "Do's and Don'ts when creating Revlets" or an updated
>> manual would be nice, but because of the lack of this I have
>> to fall back on you guys...
>> 
>> Hope someone can help me.
>> 
>> 
>> Met vriendelijke groeten,
>> Warm Regards,
>> 
>> Publishingtools 4 U
>> 
>> Ton Kuypers
>> +32 (0) 477 739 530
>> 
>> Aardbemden 11 • B-2400 • Mol • Belgium
>> www.publishingtools4u.com
>> 
>> 
>> ___
>> use-revolution mailing list
>> use-revolution@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage
>> your subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-revolution
>> 
> 
> 
> 
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
> 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution