Re: ResizeStack message

2014-05-25 Thread Paul Hibbert
Terence, Could it be + 22 pixels for the stack menu? Paul On 2014-05-25, at 11:06 AM, Terence Heaford t.heaf...@btinternet.com wrote: on resizeStack tWidth,tHeight put tWidth , tHeight end resizeStack It returned 1590,972 In the stack property inspector the stack width is 1590 (as

Re: Snapshot includes cursor?

2014-06-01 Thread Paul Hibbert
Bill, It's not working that way here on OSX 10.8.5 with LC 6.6.1, sometimes I wish I could capture the cursor, so I can understand it being frustrating if it appears when not required. You could try hiding the cursor instead of moving it… set the cursor to none -- Hides the cursor

Re: ScreenRect bug or not

2014-06-03 Thread Paul Hibbert
My test agree with Richard's and confirms this as a bug in LC6.7(DP4), seems OK in other versions so it may be something to do with the Cocoa implementation, adding an extra line gets round the problem until it's fixed… set the effective rect of this stack to the working screenRect set

Re: field losing formatting on copying

2014-06-05 Thread Paul Hibbert
It's not the margins that are changing on the copy, but the 'textHeight' property is, it changes from 12 to 14. Not sure why it should do that though. Paul On 2014-06-05, at 11:39 AM, Dr. Hawkins doch...@gmail.com wrote: On Thu, Jun 5, 2014 at 10:36 AM, Peter Haworth p...@lcsql.com wrote:

Re: field losing formatting on copying

2014-06-05 Thread Paul Hibbert
and all should work fine. Pete lcSQL Software http://www.lcsql.com Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and SQLiteAdmin http://www.lcsql.com/sqliteadmin.html On Thu, Jun 5, 2014 at 12:52 PM, Paul Hibbert paulhibb...@mac.com wrote: It's not the margins

Re: field losing formatting on copying

2014-06-06 Thread Paul Hibbert
textSize to the fields also resolves the problem. Paul On 2014-06-06, at 8:38 AM, Peter Haworth p...@lcsql.com wrote: On Thu, Jun 5, 2014 at 5:58 PM, Paul Hibbert paulhibb...@mac.com wrote: I know this doesn't answer why the problem occurs, but it does workaround it. I tried setting

Re: field losing formatting on copying

2014-06-06 Thread Paul Hibbert
of word 1 to -1 of fld i to empty end if end repeat end resetTextHeight Paul On 2014-06-06, at 11:51 AM, Dr. Hawkins doch...@gmail.com wrote: On Fri, Jun 6, 2014 at 10:04 AM, Paul Hibbert paulhibb...@mac.com wrote: Changing the original fields by removing the size applied to the raw text

Re: please help!!

2014-06-07 Thread Paul Hibbert
Larry, it seems to work fine here, I tried LC 6.1.3 as I don't keep RC versions, but I'm also on a Mac, however, at least it proves the script sample is fine. Just a thought, could the label of button ? also have a space or return char in the name? Maybe try swapping the = for contains e.g.

Re: Printing Cards to PDF

2014-06-24 Thread Paul Hibbert
Nakia, I tried your script on cards with and without images, I didn't experience any problems at all. Tested with LC 6.6.2 on Mac using OS X 10.8.5 and on Win 7 I can send you my test stack if it's any use. Paul On 2014-06-24, at 2:41 AM, Nakia Brewer nakia.bre...@westrac.com.au wrote:

Re: popUp a button with itself on modified mouseDown?

2014-06-30 Thread Paul Hibbert
If your script is in a PopUp Menu button then it's probably just getting confused trying to pop up itself! Maybe try something like this in a PopUp Menu ensuring that the menuMouseButton prop is set to 1… local sModKey on mouseDown --ShiftKey check if the shiftKey is down then put

Re: Ordinal numbers

2014-07-03 Thread Paul Hibbert
On 2014-07-03, at 12:44 PM, Richmond richmondmathew...@gmail.com wrote: Now I had a choice of things to say at that moment: 1. Because I'm a slob who didn't think about that problem. [possibly the only reasons I didn't use this one was that it was a bit early in the morning for honesty,

Re: Conflicting paths

2014-07-10 Thread Paul Hibbert
Richmond, Maybe you could use Bernd's stack to trace an oval image. Link from a previous post… http://forums.runrev.com/phpBB2/viewtopic.php?t=19040p=96086#p96086 Paul On 2014-07-10, at 10:43 AM, Richmond richmondmathew...@gmail.com wrote: I have a wobbly hand: or wobbly enough that

Re: Printing Error OSX RELEASE LiveCode 6.7 DP5

2014-07-24 Thread Paul Hibbert
Terence, I can confirm this, it's the same in LC 7.0 (dp7) too. One other problem I noticed is that the page orientation doesn't work in LC 6.7 or LC 7.0 I added a field to check the printRotated status. This script works fine in LC 6.6.2, but not in LC 6.7 or LC 7.0 on mouseUp put the

Re: Import PDF page as paint?

2014-07-29 Thread Paul Hibbert
You can import a PDF into LC by using a player control instead of an image control. I'm working on a small app that imports Jpegs, Gifs, PNGs, Tiffs, PSDs EPSs PDFs and all work just fine, just use an image control for the first three, or a player control for the remaining four. Take a

Re: Import PDF page as paint?

2014-07-29 Thread Paul Hibbert
Forgot to mention that this does currently rely on QuickTime, I have run into a few problems with the latest DPs of LC 6.7 7.0 - need a bit more time testing them. Paul On 2014-07-28, at 11:11 PM, Paul Hibbert paulhibb...@mac.com wrote: You can import a PDF into LC by using a player control

Re: Add a control to a group

2014-08-01 Thread Paul Hibbert
Hi Devin, Yet another approach… create invisible image snapShot in group myGroup export snapshot from group or_Whatever to image snapShot set the visible of img snapShot to true Paul On 2014-08-01, at 3:36 PM, Mark Schonewille m.schonewi...@economy-x-talk.com wrote: Hi Devin,

Re: OpenControl

2014-08-04 Thread Paul Hibbert
Jacque stated; The group needs to be self-contained with no additional scripting anywhere else in the stack. But by putting a preOpenCard (or openCard) handler in the *Group's script* does mean that the group is still self contained. I was curious, so I tried a quick experiment and this does

Re: mouseUp question

2014-08-06 Thread Paul Hibbert
Larry, One way to do this is to pass the result of each mouse handler to a command e.g.: local sMouseClicks on mouseUp put 1 into sMouseClicks mouseAction end mouseUp on mouseDoubleUp put 2 into sMouseClicks mouseAction end mouseDoubleUp command mouseAction if sMouseClicks = 2

Re: mouseUp question

2014-08-06 Thread Paul Hibbert
Just realised that won't work in this case! It will play the file and copy it. Paul On 2014-08-06, at 9:30 PM, Paul Hibbert paulhibb...@mac.com wrote: Larry, One way to do this is to pass the result of each mouse handler to a command e.g.: local sMouseClicks on mouseUp put 1

Re: sorting

2014-08-09 Thread Paul Hibbert
Larry, If I understand right, just change the direction of the second sort to put the beginners first, this worked for my test: on mouseUp sort lines of fld sortField by word 2 of each sort lines of fld sortField descending by word 1 of each end mouseUp Paul On 2014-08-09, at 4:56 AM,

Re: sorting - THANK YOU PAUL!!

2014-08-09 Thread Paul Hibbert
tested it. I have the feeling that many times in this list well-meaning people post solutions that they have not tested and therefore often do not work. Thanks again, Larry - Original Message - From: Paul Hibbert paulhibb...@mac.com To: How to use LiveCode use-livecode

Re: sorting - THANK YOU PAUL!!

2014-08-09 Thread Paul Hibbert
Sorry, I did miss the numeric sort, it worked with a short example, but using Colin's test script, this also works: on mouseUp sort lines of fld sortField numeric by word 2 of each sort lines of fld sortField descending by word 1 of each end mouseUp Paul On 2014-08-09, at 9:51 AM, Colin

Re: Convert a scrolling field to PDF

2014-08-09 Thread Paul Hibbert
This should start the ball rolling… on mouseUp answer page setup as sheet if the result is cancel then exit mouseUp ask file Save as PDF… with listPDF.pdf as sheet if the result is cancel then exit mouseUp put it into tPath open printing to pdf tPath revPrintField the

Re: Helping newcomers anticipate that standalones can't save to themselves

2014-08-15 Thread Paul Hibbert
From my own point of view, I struggled trying to understand some of the basic principles of using LC (Revolution as it was then), until I finally picked apart some sample stacks such as the calculator etc., then a few things started to fall in to place. After that I looked for stacks that had

Re: Why doesn't menupick work

2014-08-20 Thread Paul Hibbert
Works fine for me in LC 5.5.5, LC 6.6.2 LC 7.0(dp10) on Mac OS X 10.8.5 and in LC 6.6.2 on Windows 7. Do you see any kind of error? Paul On 2014-08-20, at 6:08 PM, revolut...@duncansoftware.on-rev.com wrote: Why doesn't this code work? on menuPick pItemName go card pItemName end

Re: ._!

2014-08-26 Thread Paul Hibbert
Richard, It seems turning off the '._*' file creation could cause problems with the Apple Finder and some MS Office apps. After a quick search I found an old entry on Mac OS X Hints (MacWorld forum) that states using the 'mv' and 'cp' commands (in Terminal) will move or copy files without the

Re: Congrats LC 7.0! You finally broke my DB!

2014-09-09 Thread Paul Hibbert
Mark, Please bear in mind that LC 7.0 is not in final release yet, so it shouldn't really be used in production, it should only be used for testing right now. There are prominent warnings in the release notes. If you do find a bug such as this then RR needs to know about it, so reporting it

Re: WindowShape

2014-09-12 Thread Paul Hibbert
Works fine for me in LC 7.0(rc1) on OS X 10.8.5 - I can drag it around too. It's a really cool idea, thanks for sharing. Paul On 2014-09-12, at 3:49 PM, Scott Rossi sc...@tactilemedia.com wrote: Hmm. I just tested in RC1 and the animation seems to work fine, but dragging the window around

Re: WindowShape

2014-09-12 Thread Paul Hibbert
Crashed here too. So I opened the Activity Monitor, launched LC again, opened the stack and activated the animation, then watched the memory usage just grow and grow until it stopped at 3.39GB, then eventually it crashed. Paul On 2014-09-12, at 4:09 PM, Scott Rossi sc...@tactilemedia.com

Re: player question

2014-09-12 Thread Paul Hibbert
Try adding the line: set the playSelection of player myPlayer to true Paul On 2014-09-12, at 4:56 PM, la...@significantplanet.org wrote: I have the following lines of code below: I put a number such as 10 into field myStart and then execute the code. The player still starts playing at the

Re: Scripting Cut/Copy/Paste in custom menus

2014-09-14 Thread Paul Hibbert
Bob, Cut, copy, paste clear are available as commands in LC, so maybe simplifying your Edit menu a little may help, for example… --The following menuPick handler was generated by the Menu Builder ( simplified a little). on menuPick pWhich switch pWhich case Preferences

Re: Scripting Cut/Copy/Paste in custom menus

2014-09-14 Thread Paul Hibbert
And you are correct Kay, in checking the target against the clipboard, after a busy day photographing dolphins I came back and tried another test. My original suggestion was too simple in that if the clipboardData contained an image it would paste the image over the top of everything on the

Re: Listing Filtering files

2014-09-16 Thread Paul Hibbert
http://lessons.runrev.com/m/4071/l/17080-files-and-folders-part-2 The link is in the top right corner of part 1. :-) Paul On Sep 16, 2014, at 9:30 PM, JB sund...@pacifier.com wrote: It says this is PART 1. Does anyone know where Part 2 is? John Balgenorth On Sep 16, 2014, at 9:25

Re: Listing Filtering files

2014-09-17 Thread Paul Hibbert
Balgenorth On Sep 16, 2014, at 9:54 PM, Paul Hibbert paulhibb...@mac.com wrote: http://lessons.runrev.com/m/4071/l/17080-files-and-folders-part-2 The link is in the top right corner of part 1. :-) Paul On Sep 16, 2014, at 9:30 PM, JB sund...@pacifier.com wrote: It says this is PART 1

Re: Progress Bar

2014-09-18 Thread Paul Hibbert
You almost wrote it in your email! set the endValue of Scrollbar myProgressScrollbar to myValue If you look at the very first item in the LiveCode Preferences, you'll see that you can change the Property Labels to show the Name of the LiveCode Property instead of the Description of the

Re: Selecting a Stack

2014-09-20 Thread Paul Hibbert
John, I noticed that the ask and answer dialogues both issue a 'suspendStack' message to the card, but there is no 'resumeStack' message when the dialogue is dismissed, maybe that is confusing listMagic. Going to the messageBox and back to the card does issue a 'suspendStack' and 'resumeStack'

Re: replaceText() not working as expected for multiple lines

2014-09-20 Thread Paul Hibbert
The explanation of ^ that I found states, The ^ (circumflex or caret) outside square brackets means look only at the beginning of the target string., so the way I see it, if it's only looking at the beginning it's not going to repeat through the rest of the lines, so you could use a repeat loop

Re: file size

2014-09-22 Thread Paul Hibbert
Larry, Try: on mouseUp answer file ? put binfile: it into tFile put the length of URL tFile / 1000 KB into fld myResultField end mouseUp Paul On Sep 22, 2014, at 2:29 PM, la...@significantplanet.org wrote: Hello, I know I can use: put the files into field Current Files to

Re: file size

2014-09-22 Thread Paul Hibbert
, I ended up using Paul's code: on mouseUp answer file ? put binfile: it into tFile put the length of URL tFile / 1000 KB into fld myResultField end mouseUp It works just great! Larry - Original Message - From: Paul Hibbert paulhibb...@mac.com To: How to use LiveCode use

Re: Window expanded

2014-09-24 Thread Paul Hibbert
John, If you open the Development Message Watcher you will see several 'ResizeStack' and 'MoveStack' messages are sent by the card when you click the button, maybe you can use these. Paul On Sep 23, 2014, at 10:29 PM, JB sund...@pacifier.com wrote: Is there a way to catch when a Mac user

Re: [OT] Grendel

2014-09-24 Thread Paul Hibbert
Congratulations, the site looks good, but one thing you need to be aware of is that the three Buy Now buttons near the bottom of the page are missing, I'm just seeing white box outlines with question marks in them. Paul On Sep 24, 2014, at 10:40 AM, Richmond richmondmathew...@gmail.com wrote:

Re: MacUpdate doesn't like Grendel

2014-09-24 Thread Paul Hibbert
I just downloaded and tried LC 4.5.3 that's as far back as I can go. I created a small test stack and compiled a standalone and it worked just fine, but then it was built using LC 4.5.3 running on OS X 10.9.5, not sure if that would make a difference. I tried downloading your Grendel app and

Re: MacUpdate doesn't like Grendel

2014-09-24 Thread Paul Hibbert
Just tested on Mac OS X 10.8.5 and Grendel works fine so it is a Mavericks issue. Paul On Sep 24, 2014, at 3:30 PM, Paul Hibbert paulhibb...@mac.com wrote: I just downloaded and tried LC 4.5.3 that's as far back as I can go. I created a small test stack and compiled a standalone

Re: Keeping a group of controls active while using edit tool

2014-09-26 Thread Paul Hibbert
Not sure if it's what you are looking for, but if these tool panels are on separate stacks or substacks you could try: palette stack myToolPanel --For the (sub)stack to become a palette and topLevel stack myToolPanel --to revert back to an editable (sub)stack Paul On Sep 26, 2014, at 2:49

Re: sort question for today

2014-09-29 Thread Paul Hibbert
Larry, This should work… put line 7 to -1 of fld myStats into tLinesToSort sort lines of tLinesToSort by word 2 of each put tLinesToSort into line 7 to -1 of fld myStats You can only sort all Lines or Items of a container, so if you need to sort specific lines or items, you must put

Re: Trying to get the color at an xy location

2014-10-07 Thread Paul Hibbert
Bill, Some solutions were posted a while ago for this, I made a copy of one that uses the templateImage so I'm not taking any credit, but here's the script: on mouseUp put readPixelColor(pLoc) into fld Colour -- Where pLoc is a local coordinate e.g. 200,200 end mouseUp function

Re: Using The iOS 8 Simulator

2014-10-07 Thread Paul Hibbert
Jim, I am using the same setup as you, my iMac is a bit old though, it's a 2009 3.06 Ghz Intel Core 2 Duo. I found that launching the simulator first helps me a lot, I've now added it to the dock next to the ever changing LC dock icon. When I launch the simulator I wait for the home screen to

Re: Getting a list of object properties + Dictionary question

2014-10-10 Thread Paul Hibbert
Bob, I think you are missing the point of… 1. Select the object in left-hand column. Look at the far left column, the top most word in this column is All, go down to the Object section and click on one object, say Field or Button then follow point 2 in Jacque's instruction. I'm sure the

on-rev Client

2014-10-13 Thread Paul Hibbert
http://newsletters.livecode.com/august/issue177/newsletter2.html It was reported in the newsletter 177 that the On-Rev Client was working again, I tested it at the time and managed to log on successfully, but now I can't, has anybody else had similar problems? I can logon to the cPanel OK, so

Re: on-rev Client

2014-10-14 Thread Paul Hibbert
schrieb Ralf Bitter ra...@revigniter.com: Same here. Ralf On 14.10.2014, at 06:49, Paul Hibbert paulhibb...@mac.com wrote: http://newsletters.livecode.com/august/issue177/newsletter2.html It was reported in the newsletter 177 that the On-Rev Client was working again, I tested

Re: LiveCode 6.6.4

2014-10-16 Thread Paul Hibbert
Ralph, I've re-opened bug 13590 [ http://quality.runrev.com/show_bug.cgi?id=13590 ] to try to get this location services issue resolved. Please feel free to add more to it if you have any comments or if you feel I've missed anything. Paul On Oct 16, 2014, at 1:24 PM, Ralph DiMola

Re: What is the command to hide and show development tools

2014-10-20 Thread Paul Hibbert
In the menu bar go to: Development Suspend Development Tools Paul On Oct 19, 2014, at 11:34 PM, Brahmanathaswami bra...@hindu.org wrote: I like to run sometimes in the IDE, but still be able to hide everything for presentation mode... hide menubar doesn't hide the development tools... I

Re: on-rev Client

2014-10-24 Thread Paul Hibbert
On Oct 14, 2014, at 10:11 AM, Paul Hibbert paulhibb...@mac.com wrote: Thanks for the responses, I have sent a report to b...@on-rev.com and will report back if I get a response, if anybody else wishes to email them too maybe that would help them to understand that this is something we would

sendmail through On-Rev server

2014-10-24 Thread Paul Hibbert
After several hours of frustration, searching and trying, then more searching and trying I've finally come to the conclusion that sendmail is not working on Diesel. I have already tried the LiveCode lesson, the files from splash21 and troz.net along with an amended version from the forums. I

Re: sendmail through On-Rev server

2014-10-25 Thread Paul Hibbert
.. THink -ef might work) On Fri, Oct 24, 2014 at 11:22 PM, Andrew Kluthe and...@ctech.me wrote: Postmarkapp.com, someone on here has a lib for it. But I don't remember who. On Oct 24, 2014 11:00 PM, Paul Hibbert paulhibb...@mac.com wrote: After several hours of frustration, searching

Re: sendmail through On-Rev server

2014-10-26 Thread Paul Hibbert
Thanks Christer, That's the script I was trying on Diesel, but sadly with no joy. Paul On Oct 26, 2014, at 1:20 AM, Pyyhtiä Christer chris...@mindcrea.com wrote: The following script works well - on Tio. Used it yesterday with no problems. Response was immediate. I got it from someone

Re: On-Rev Client

2014-10-26 Thread Paul Hibbert
Kenji, RR are working on restoring the On-Rev client, some servers are working, but not all just yet. You could report it to supp...@on-rev.com Paul On Oct 26, 2014, at 7:51 AM, Kenji Kojima in...@kenjikojima.com wrote: On-Rev client cannot connect to tio on-rev server on Yosemite. It

Re: Open with 6.7 vs. 7.0

2014-10-27 Thread Paul Hibbert
Tim, The simplest way I have found is to move the LiveCode 7.0.app to a different hard drive and remove any copy from the system hard drive, then it will no longer be the default LC app, but will still be useable. Not sure if this is the best way, but it's working for me right now, maybe

Re: sendmail through On-Rev server

2014-11-20 Thread Paul Hibbert
. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Paul Hibbert Sent: Sunday, October 26, 2014 12:14 PM To: How to use LiveCode Subject: Re: sendmail

Re: Printing cuts off all fields at 12 characters.

2014-11-21 Thread Paul Hibbert
Richard, I have just tested your code exactly as shown in LC 5.5.5, LC 6.7 and LC 7.0.1(rc2) on Mac OS X 10.9.5 and in LC 6.6.2 on Windows 7 - all versions work fine, I added another field to the test stack and that shows up fine too. You didn't state which OS or LC version you are using, but

Re: OT: Walking

2012-01-31 Thread Paul Hibbert
Well done Mike. That's quite an inspirational story, you obviously don't give up too easily. Best wishes for the future, but for now I'd say you certainly deserve a beer. Paul On 31 Jan 2012, at 16:04, Mike Bonner wrote: Thx again all. I'm not usually much of a gusher but sometimes the

Re: What is up with FormattedHeight?

2012-02-06 Thread Paul Hibbert
Howard, Why doesn't the formattedHeight of a field just do this automatically? Why does it include extra space at the top and bottom of the field? What are the relationships among text size, text height, and field height that will allow the field to adjust to exactly the size of the text

Re: 10.7.2 Record Audio

2012-02-10 Thread Paul Hibbert
Richard, Your command seems to work fine for me on a MacPro with OS X 10.7.3 LiveCode 5.0.2 Paul On 10 Feb 2012, at 11:19, Richard MacLemale wrote: OK, I tried searching the archives but came up empty. I tried posting on the forum, but so far no responses. I'm running Mac OS 10.7.2,

Re: iRev database access security question

2012-02-10 Thread Paul Hibbert
Hi Jonathan, I seem to remember you can put the username password in a small iRev file and store it inside your cgi folder (for security), then call it by using 'include', I'm sure there are some more knowledgable people here that can fill in the details though. Paul On 10 Feb 2012, at

Re: Warning Re: 'DAZ3D is giving away three 3D-Apps for free'

2012-02-12 Thread Paul Hibbert
A big THANK YOU Ken, I was really struggling with LC, I could open the script editor, but it took two clicks to launch and the breakpoints didn't work, but it was just about useable. Paul On 11 Feb 2012, at 22:25, Ken Ray wrote: If you take advantage of downloading the DAZ3D software for

Re: Lion

2012-02-15 Thread Paul Hibbert
Hi Joe, Two more issues I've come up against since upgrading to Lion: If you use 'import snapshot' without any parameters the resulting snapshot is just total garbage, this command was a problem under Snow Leopard, Vista and MX although not quite as bad. RR have known about it for several

Re: Is there a way to find a lighter and darker shade of a RGB color programmatically?

2012-02-15 Thread Paul Hibbert
Hey Keith, One site that could help you is Scott Rossi's tactilemedia.com he has some great tutorials and the 'Color Slider' tutorial should give you all the info you need to convert your colour data into HSB (HSL), then you can just compare the brightness values and respond accordingly. The

Re: Visual effect problems in iOS

2012-02-20 Thread Paul Hibbert
Hi Graham, Thanks - I had not read these notes in detail and indeed it took some time to find anything like them on the RunRev web site - they don't seem to have stuck around on my Mac after installation. The only notes I could find are called LiveCodeNotes-5_0_0.pdf, revision 7, and

Re: iPhone audio calls

2012-02-21 Thread Paul Hibbert
As with most things in LiveCode there are many ways to tackle most problems, I haven't done any mobile development yet, but I assume the custom properties work the same, if so a quick fix for this could be to use a custom property that is set to true on preOpenStack and then check that custom

Re: [ot] is it safe to upgrade to lion?

2012-02-22 Thread Paul Hibbert
Hey Andre, I have reported 2 bugs (#6430 #9980) and posted the issues on here that I've had with LC5.0.2 on Lion, they are 'mouseColor' and 'import snapShot', they both return total garbage. The worst issue is that if mouseColor is active, LC or a standalone will crash if the cursor is moved

Re: [ot] is it safe to upgrade to lion?

2012-02-22 Thread Paul Hibbert
John, The 'import snapShot' command works OK if I pass parameters such as 'import snapshot from rect 250,250,450,450', but not if I use it without parameters to allow the user to snap an area from screen using the crosshair cursor, so a button with… on mouseUp import snapshot end

Re: A weird thing appears at the shop...

2012-02-23 Thread Paul Hibbert
Just logged in and seen the same problem. Sent an email to support. Paul On 23 Feb 2012, at 13:45, Bjoernke von Gierke wrote: Anyone else seen this? http://imgur.com/LiqxL (some parts removed) It seems the server ones are broken tho... ___

Re: A weird thing appears at the shop...

2012-02-23 Thread Paul Hibbert
? On 23.02.2012, at 15:58, Paul Hibbert wrote: Just logged in and seen the same problem. Sent an email to support. Paul On 23 Feb 2012, at 13:45, Bjoernke von Gierke wrote: Anyone else seen this? http://imgur.com/LiqxL (some parts removed) It seems the server ones are broken tho

Re: Crasher bug in Lion?

2012-03-01 Thread Paul Hibbert
Works fine for me too. I'd also recommend checking your fonts for clashes in FontBook, and check the permissions with the Disk Utility app. Mac Pro, Mac OS X 10.7.3, LC 5.0.2, Epson Stylus R2400 printer. Paul On 1 Mar 2012, at 17:01, Bob Sneidar wrote: Works fine for me, both with GLX2 and

Re: Can An Object Know About Itself?

2012-03-01 Thread Paul Hibbert
Scott, I re-watched a seminar from the 09 RevLive by Trevor DeVore recently about behaviours and one thing he pointed out was that a behaviour acts like a back script for a control, but if I understood him correctly, he also mentioned that when behaviours are applied to controls, there are

Re: Enlarge with sample

2012-03-04 Thread Paul Hibbert
See 'resizeable' in the dictionary for a full explanation, you can set the property in any script, (preOpenStack makes sense) with… set the resizable of this stack to true …or use the checkbox in the 'size position' pane of the stack inspector. Whichever setting you use for the stack

Re: Position of a tab in a tab control.

2012-04-20 Thread Paul Hibbert
Pete, I may be wrong, but I don't think there's a way to control the differences between the two platforms without rolling your own tab control. However, Mark Schonewille has done much of the work and made his custom tab control available through RevOnline, just search for custom tab and you

Re: Outlet for Mac Apps

2012-05-29 Thread Paul Hibbert
I for one am pleased that some developers still sell through their own sites as well as MAS. I recently had a bad experience with Apple when I moved from the UK to Canada, believe it or not I lost ALL licences for apps purchased through MAS just because I updated my Apple ID to reflect my new

Re: Tracking And Deleting Objects Via Custom Properties?

2012-05-29 Thread Paul Hibbert
John, You can't edit the list of items in a custom property directly, but you can put the list of items in the custom property into a variable, delete the item from the variable then set the custom property back to the modified variable. HTH Paul On 2012-05-29, at 7:14 PM, JOHN PATTEN wrote:

Re: Outlet for Mac Apps

2012-05-29 Thread Paul Hibbert
On 2012-05-29, at 9:48 PM, -=JB=- wrote: I learned to correct the problem so you can download updates for software bought with your old id is to delete the program from your disk. Then start up MacApp and you will be able to install the software you have purchased on the old id without any

Re: Outlet for Mac Apps

2012-05-30 Thread Paul Hibbert
in any way or is that closed and you have no access. Were you required to transfer your MAS account when you moved to Canada? -=JB=- On May 29, 2012, at 10:05 PM, Paul Hibbert wrote: On 2012-05-29, at 9:48 PM, -=JB=- wrote: I learned to correct the problem so you can download

Re: Outlet for Mac Apps

2012-05-30 Thread Paul Hibbert
and card you can download them as if you were in the country. Might be worth a shot to recover your old account and apps. Andy On 30 May 2012, at 07:19, Paul Hibbert wrote: My Apple ID (email) hasn't changed, just my address and associated credit card details, so unfortunately I can't

Re: Upgrade to Lion

2012-05-30 Thread Paul Hibbert
:-) I know the feeling, I lost count of how many times I swore at the tape machines, I'd never go back to tapes. Paul On 2012-05-30, at 8:27 AM, Bob Sneidar wrote: 3 times I had tape backups fail me when I needed them most. I will never, no ever, no not ever use tape again. Bob On

Re: excluding fields from tab-advancement

2013-07-14 Thread Paul Hibbert
Then you could make the non focusable field temporarily focusable just to allow data entry, it worked OK for my test… == on mouseDown set the traversalOn of me to true focus on me end mouseDown on closeField set the traversalOn of me to false end closeField on exitField closeField

Re: Bug in Properties command in 6.1?

2013-07-18 Thread Paul Hibbert
Don't know if this is any help to you but, this script errors on the line... set the tKey of field 1 to tProps[tKey] ...when tKey = padding This happens in LC6.1 Commercial but not in LC5.5.4 or LC5.5.5 for my tests. If I add the trap... if tKey = padding then next repeat ...it runs fine

Re: LC Server Image Weirdness

2013-07-20 Thread Paul Hibbert
Hi Rick, I'm no expert in this area, but it sounds to me like the image is not being released after the upload, other list readers may have a better idea. If you are using Open File, Write to File etc., make sure you also use Close File after the upload to release the image file for other

Re: LC Server Image Weirdness

2013-07-22 Thread Paul Hibbert
the Close File, - no luck. I tried the touch -c shell command, and - no luck. I tried both together, - no luck. Thanks for making the suggestions though. Anyone else? Thanks, Rick On Jul 21, 2013, at 12:16 AM, Paul Hibbert paulhibb...@mac.com wrote: Hi Rick, I'm no expert

Re: legacy problem?

2013-07-22 Thread Paul Hibbert
Hi Nicolas, First thoughts - have you tried saving the modified or unmodified stack in the Legacy 2.7 format (available in a pull down menu in the Save As… window)? Paul On 2013-07-22, at 7:50 PM, Nicolas Cueto wrote: Hi. Within LC 6.1, I modified a stack created years ago and then saved

Re: SlideView - Help Needed for 2 Major Issues

2013-09-23 Thread Paul Hibbert
Ender, By using the message watcher I noticed a mouseLeave message being sent when swiping on the block.png image, so adding… on mouseLeave if sSlideGrab is not empty then mouseUp end mouseLeave …to the script of group thePanel seems to help some issues. Paul On 2013-09-23, at 7:48 PM,

Re: Strange standard button issues

2013-10-05 Thread Paul Hibbert
I use the Graphic Effects regularly and never really noticed that! Just tried it and was surprised to see what you mean, I guess I have always just clicked on the name and it worked as I expected, but yes the checkboxes and names can be out of sync and that could be really confusing. So

Re: Trapping for mouseDown on the desktop on a Mac

2013-10-13 Thread Paul Hibbert
Ken, I don't think you even need to go into a polling mode, as soon as user drags an item onto a stack it triggers a 'dragMove' message so trapping that should work on both platforms. Tried a few tests with a small stack and tackling the problem from a different angle seems to do the trick on

Re: Bringing a substack to the front

2013-10-14 Thread Paul Hibbert
Have you looked at Go? It has a few parameters that may help in what you are looking for. Paul On 2013-10-14, at 9:59 AM, Dr. Hawkins wrote: On Mon, Oct 14, 2013 at 9:49 AM, Roger Eller roger.e.el...@sealedair.comwrote: lock screen set the systemWindow stack MyTopStack to true set

Re: Trapping for mouseDown on the desktop on a Mac

2013-10-14 Thread Paul Hibbert
On 10/13/2013 2:55 PM, Paul Hibbert wrote: Ken, I don't think you even need to go into a polling mode, as soon as user drags an item onto a stack it triggers a 'dragMove' message so trapping that should work on both platforms. Tried a few tests with a small stack and tackling

Re: Mouse Color not Working

2014-01-16 Thread Paul Hibbert
The GM release is available here along with rc1 2… http://downloads.livecode.com/livecode/6_5_1/ Paul On 2014-01-16, at 1:41 PM, Ray r...@linkit.com wrote: I've just downloaded and tried Richmond's test stack. I can verify that mouseColor does NOT work using 6.5.0. Klaus, looking

Re: Mouse Color not Working

2014-01-16 Thread Paul Hibbert
) into tValue unlock screen return tValue end mouseColourWorkAround Works fine for me in a mouseDown, but maybe a little OTT for a mouseMove. Paul On 2014-01-16, at 1:49 PM, Ray r...@linkit.com wrote: Thanks Paul On 1/16/2014 4:44 PM, Paul Hibbert wrote: The GM release is available here along

Re: Mouse Color not Working

2014-01-16 Thread Paul Hibbert
Does it return the expected result? On OS X 10.8.5 the colours are not right, try creating a graphic with a fill of 255,0,0 then see what the mouseColor returns when you move over it. I found that changing the screen profile in system preferences has an effect on mouseColor too. Using a

Re: Snapshot of screen

2014-01-18 Thread Paul Hibbert
This is a known bug in LC 6.5.1 and should be fixed soon, the bug report is [ http://quality.runrev.com/show_bug.cgi?id=11654 ]. There is an odd workaround, just set the focus to any field before issuing the 'import snapShot' command and it should work as you expect without pressing enter. If

Re: Is there a way to stop execution?

2014-01-19 Thread Paul Hibbert
In the IDE sometimes cmd-y will stop a script, always worth a try before a force quit. Paul On 2014-01-19, at 3:15 PM, Earthednet-wp proth...@earthednet.org wrote: Thanks, Stephen. I did notice that some of the toolbar menus worked, tho, so I could save the file anyway before I nuked it.

Re: [OT] MIA

2014-01-20 Thread Paul Hibbert
So sorry to hear your sad news, sincere condolences. Paul On 2014-01-20, at 12:12 PM, Monte Goulding mo...@sweattechnologies.com wrote: Hi Folks I'm going to be off the reservation for a little while. For those that knew we had a baby due in a couple of weeks we lost her yesterday and I

Re: Mac Mavericks, Xcode, iOS Development and LC

2014-01-24 Thread Paul Hibbert
Hi Graham, I am using Xcode 5.0.2 on Mac OS X 10.8.5 with LC 6.5.x and can deploy to iPad and iPhone on iOS 7.0.4 with no problems. HTH Paul On 2014-01-24, at 8:45 AM, Graham Samuel livf...@mac.com wrote: This is not really OT, I think. I have not tried any iOS development in the last few

  1   2   3   4   5   >