Re: No screenshot from LC video possible

2017-07-11 Thread Paul Dupuis via use-livecode
My guess is that it could be Digital Rights Management related? If you can screenshot a DRM protected video then, in principle, you could screenshot every frame and encode the frames back into a DRM-free version of the video. Do you know what the videos that had the problem were? On 7/11/2017 3:

Re: AW: [OT]h.264 alternatives

2017-07-25 Thread Paul Dupuis via use-livecode
This may help explain the absurdly complex MPEG4 licensing model: http://www.mpegla.com/main/programs/M4V/Documents/m4vweb.pdf On 7/24/2017 3:54 AM, Tiemo Hollmann TB via use-livecode wrote: > Last year I asked Sorenson media if I have to pay license fees, using the > h.264 codec and got the fol

the defaultStack changes on resume

2017-08-09 Thread Paul Dupuis via use-livecode
Has any one run into the following situation in LiveCode standalones? In a multiple window application, the user has either a standard window or a modal dialog open (the topWindow which is also the defaultStack). They navigate to a 3rd party application and by some means back to the LC standalone

How to tell if a field is "closed"?

2019-02-05 Thread Paul Dupuis via use-livecode
I have a problem for which I should probably redesign the user interface, but would rather not do so for many reasons. The problem is this: 1) There are some fields on a card. Each field has a "closeField" handler that checks the fields content for validity and presents appropriate error mess

AW: Re: How to tell if a field is "closed"?

2019-02-05 Thread Paul Dupuis via use-livecode
Thank you everyone especially Geoff and Mark. I ended up making some UI improvements, using a flag, and the focus tip from Mark so now the "Import" button is only enable when all fields are closed AND validated! I should have thought of most of this myself, but some days you have to write co

Bundling the tsNet external on Windows...

2019-02-28 Thread Paul Dupuis via use-livecode
I think this has been discussed on this list before, but I can't find it. Under LC9 is there either a way to: (1) choose not to use tsNet but use the old internet libraries? OR somehow package the tsNet external with the built EXE.file We have a simple app that we want to distribute as a single

AW: Re: Bundling the tsNet external on Windows...

2019-02-28 Thread Paul Dupuis via use-livecode
tandalone should not include tsNet. It will use the old libURL, which is bundled in the .exe file. Kind regards, Panos -- On Thu, Feb 28, 2019 at 10:20 PM Paul Dupuis via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: I think this has been discussed on this list befor

Re: Windows: Open image with LC EXE

2019-03-06 Thread Paul Dupuis via use-livecode
If you select an LC standalone as the app t open an image with, the name and path to the image will be sent to the EXE as a command line parameter. See the dictionary/documentation on handling command line parameters in a standalone To tell Windows that your APP (standalone/EXE) can open and d

Re: Windows: Open image with LC EXE

2019-03-06 Thread Paul Dupuis via use-livecode
On 3/6/2019 12:22 PM, Klaus major-k via use-livecode wrote: Hi all, Am 06.03.2019 um 18:16 schrieb Klaus major-k via use-livecode : Hi Paul, Am 06.03.2019 um 18:13 schrieb Paul Dupuis via use-livecode : If you select an LC standalone as the app t open an image with, the name and path to

Re: Windows: Open image with LC EXE

2019-03-07 Thread Paul Dupuis via use-livecode
interested in how you do that. I would love to be able to tell Adobe Reader to fill a form directly (as opposed to auto-loading an .fdf file), but was under the impression you had to write some kind of C app which included the API provided by Adobe to do that. Bob S On Mar 6, 2019, at 09:1

Re: Resizing stacks and make changes on more than one card

2019-03-09 Thread Paul Dupuis via use-livecode
move the resizeStack handlers from each CARD to the STACK script and combine them so they update both cards to the new stack size On 3/9/2019 7:51 AM, Tore Nilsen via use-livecode wrote: I have a stack with 2 cards. On these cards, some elements change size or position when the stack is resiz

Livecode 9 and Directshow...

2019-03-15 Thread Paul Dupuis via use-livecode
I am seeing a very odd behavior using DirectShow under LiveCode 9.0.1, 9.0.2, and 9.0.3rc-1 I have a simple stack with a fixed size player and a few buttons to open various video files. The buttons just set the filename of the player to the selected file. The player is set to alwaysBuffer Wh

Cross-platform media formats...

2019-03-15 Thread Paul Dupuis via use-livecode
I have compiled a list of formats supported by Apple Video Foundation (AVF) and Microsoft DirectShow (and Quicktime for both OSX and Windows for good measure), but I'd like to confirm this by asking if anyone one else (hello mothership?) has a list they are willing to share. It gets complicate

Re: players misplaced & not functional on Windows 10

2019-03-15 Thread Paul Dupuis via use-livecode
Those grey player bars look like you are using Quicktime for Windows vs DirectShow? What version of LiveCode are you using? On 3/15/2019 7:14 PM, Curt Ford via use-livecode wrote: I've done a series of modules for a client that involve lots of sound files in scrolling groups. To make layout c

WANTED: Codecs for DirectShow and LC9xx

2019-03-18 Thread Paul Dupuis via use-livecode
WANTED: Recommendations for free to distribute and use codec for use with DirectShow and LiveCode 9xx under Windows. I have found that the range of media formats DirectShow supports (out of the box) in LiveCode 9xx (when compared to earlier LC versions and Quicktime for Windows) to be staggeri

Re: ANN: Script Editor Refactoring Support

2019-03-20 Thread Paul Dupuis via use-livecode
WOW On 3/20/2019 1:45 PM, Mark Wieder via use-livecode wrote: Announcing (60 days until the San Jose conference): Script Editor Refactor Plugin     Brings refactoring support to the LiveCode Script Editor.     Place the plugin into your user Plugins folder.     After launching the script edito

Apple Video Foundation (AVF) and .mpg files

2019-03-26 Thread Paul Dupuis via use-livecode
Livecode 9.x.x uses Apple Video Foundation (AVF) for the LC Player object under OSX. AVF supports MPEG-1 video but not MPEG-2 video. Both MPEG-1 and MPEG-2 use the .mpg file extenstion. Question for any media geniuses on this list: Is there a way in LiveCode to tell a MPEG-1 .mpg file from a MP

Re: Apple Video Foundation (AVF) and .mpg files

2019-03-26 Thread Paul Dupuis via use-livecode
rmine encoding from that OR use some shell wizardry to tell the encoding? On 3/26/2019 5:05 PM, Rick Harrison via use-livecode wrote: I also supports .mp4 which is MPEG-4 if that helps. Rick On Mar 26, 2019, at 4:32 PM, Paul Dupuis via use-livecode wrote: Livecode 9.x.x uses Apple Video Found

Re: Apple Video Foundation (AVF) and .mpg files

2019-03-26 Thread Paul Dupuis via use-livecode
as to whether it is encoded as MPEG-1 or MPEG-2. Useful samples here: http://hubblesource.stsci.edu/sources/video/clips/ Richmond. On 26.03.19 22:32, Paul Dupuis via use-livecode wrote: Livecode 9.x.x uses Apple Video Foundation (AVF) for the LC Player object under OSX. AVF supports MPEG-1 vide

AW: Re: Apple Video Foundation (AVF) and .mpg files

2019-03-26 Thread Paul Dupuis via use-livecode
ot; ) Richmond. On 26.03.19 23:28, Paul Dupuis via use-livecode wrote: Richmond, I good suggestion. Thank you. However, looking at an identical video clip encoded as MPEG-1 and as MPEG-2 in a test editor shows lots of gibberish and no obvious text tags to tell the encoding. Unfortunately, I don

Any reason to use Apple file TYPE codes anymore?

2019-03-28 Thread Paul Dupuis via use-livecode
In Livecode you can use file extensions (like .txt) or apple 4-character file type codes (like "TEXT") in a "type" or "types" filter of the answer file command. As in: answer file[s] prompt [with defaultPath] [with type types [or type types ...]] windowTitle] [as sheet] Where a "types" is li

Re: Property Palette

2019-04-02 Thread Paul Dupuis via use-livecode
On 4/2/2019 1:43 PM, Richmond via use-livecode wrote: The bug has been reported several time by several people, and "we" have been reassured that it is being dealt with . . . What is the bug number? I'd like to CC myself on the bug to follow any progress. ___

Re: MouseMove less responsive in 9.0.4

2019-04-02 Thread Paul Dupuis via use-livecode
On 4/2/2019 8:23 AM, Michael Kristensen via use-livecode wrote: Hi there There is a definite degradation of the moseMove responsiveness here Could you please investigate to determine if it also is true for you I created a test stack with a 32px square button and the following card script:

Re: Property Palette

2019-04-03 Thread Paul Dupuis via use-livecode
Thank you. On 4/3/2019 2:11 AM, Richmond via use-livecode wrote: 20701 Richmond. On 2.04.19 20:54, Paul Dupuis via use-livecode wrote: On 4/2/2019 1:43 PM, Richmond via use-livecode wrote: The bug has been reported several time by several people, and "we" have been reassured t

Re: Saving a tab formatted field to a file and retaining its formatting

2019-04-07 Thread Paul Dupuis via use-livecode
I take it your have tried: put the rtfText of field "X" into URL ("file:"&specialFolderPath("desktop")&slash&"savedfield.rtf") And then reading it back to a new field with: set the rtfText of field "Y" to URL ("file:"&specialFolderPath("desktop")&slash&"savedfield.rtf") and the tab spacing

Re: Saving a tab formatted field to a file and retaining its formatting

2019-04-08 Thread Paul Dupuis via use-livecode
On 4/7/2019 9:00 PM, Paul Dupuis via use-livecode wrote: I take it your have tried: put the rtfText of field "X" into URL ("file:"&specialFolderPath("desktop")&slash&"savedfield.rtf") And then reading it back to a new fiel

Re: Upcoming MacOS 14.5 with software “notarization” requirements

2019-04-10 Thread Paul Dupuis via use-livecode
From the first link to the Apple developer site: "Important Beginning in macOS 10.14.5, all new or updated kernel extensions and all software from developers new to distributing with Developer ID must be notarized in order to run. In a future version of macOS, notarization will be required by

Re: Saving a tab formatted field to a file and retaining its formatting

2019-04-10 Thread Paul Dupuis via use-livecode
Look at "revPrintField" in the Dictionary. If I recall, I think this can be used with the open printing to pdf command On 4/10/2019 12:46 PM, Robert J. Earp via use-livecode wrote: Richard, many thanks for the thought. If you mean the built-in “printing to pdf” then yes, but as far as I cou

Re: Upcoming MacOS 14.5 with software “notarization” requirements

2019-04-10 Thread Paul Dupuis via use-livecode
On 4/10/2019 2:05 PM, J. Landman Gay via use-livecode wrote: I agree it's going to be an extra step. My hope is that once LC figures out how to secure their own IDE they can integrate that into the build process somehow. Maybe there could be an option after the standalone is made to submit it t

LC9.0.4rc2: Problem with Ask dialog not being included in standalone?

2019-04-18 Thread Paul Dupuis via use-livecode
I just was creating a simple test stack under Windows 10, LC9.0.4rc2 and discovered that whether I allowed automatic selection of inclusions or explicitly included the Ask/Answer dialogs, the Ask dialog was not being included in my Windows standalone of this test stack. See https://quality.liv

LC904rc2 Project Browser error?

2019-04-25 Thread Paul Dupuis via use-livecode
I find that in the project browser under LC904rc2 (Windows 10), I can not relayer groups. Button, fields, etc, all relayer fine by drag and drop within the hierarchical list of the project browser, but not groups. Is this a bug or a lack of RTFM on my part to figure out how it is supposed to w

Re: LC904rc2 Project Browser error?

2019-04-26 Thread Paul Dupuis via use-livecode
Not to slight to any 3rd party tools, but I personalty would rather identify bugs in LiveCode and report them to the LiveCode Quality Center. My experience has been that a bug, properly reported, with a repeatable recipe and test stack is fixed pretty rapidly these days. One of the first steps

Re: Is Anyone using the XPDFViewer?

2019-05-03 Thread Paul Dupuis via use-livecode
I looked at my working code. Every where I set the rect, I do so by:   XPDFViewer_Set "pdfViewer","RECT", rect of grc "pdfRect" of grp "pdfViewer" of me where the graphic "pdfRect is a rectangle that is used to to map the area the pdf viewer appears in. Try creating a graphic called whatev

Re: Question for LCB FFI workshop attendees at upcoming conference

2019-05-07 Thread Paul Dupuis via use-livecode
On 5/7/2019 9:35 AM, Trevor DeVore via use-livecode wrote: This is for anyone who plans on attending my workshop on using FFI in LCB at the conference. Is there any code (a macOS Framework, Windows API, DLL, dylib, etc.) that is written in Objective-C or that has a C wrapper that you are interest

Re: Question for LCB FFI workshop attendees at upcoming conference

2019-05-07 Thread Paul Dupuis via use-livecode
On 5/7/2019 1:14 PM, Paul Dupuis wrote: On 5/7/2019 9:35 AM, Trevor DeVore via use-livecode wrote: This is for anyone who plans on attending my workshop on using FFI in LCB at the conference. Is there any code (a macOS Framework, Windows API, DLL, dylib, etc.) that is written in Objective-C or

Help with Pasting of RTL languages into a field

2019-05-09 Thread Paul Dupuis via use-livecode
I have a  test stack with a single scrolling field under LC904rc2. The textDirection for the field is the default of "auto" meaning it should align LTR  languages (like English) to the Left and RTL languages (like Arabic or Hebrew) to the Right. English and other LTR test is correctly Left ali

Re: Question for LCB FFI workshop attendees at upcoming conference

2019-05-10 Thread Paul Dupuis via use-livecode
On 5/10/2019 10:18 AM, Trevor DeVore via use-livecode wrote: Thanks for the suggestion Paul. This ended up being a really good example to work on. Wow! Thank you Trevor! I have slowly (far too slowly) been trying to develop my LCB expertise to wrap Sphinx, but the C side of things (building th

Re: Help with Pasting of RTL languages into a field

2019-05-13 Thread Paul Dupuis via use-livecode
On 5/9/2019 12:15 PM, Paul Dupuis via use-livecode wrote: I have a  test stack with a single scrolling field under LC904rc2. The textDirection for the field is the default of "auto" meaning it should align LTR  languages (like English) to the Left and RTL languages (like Arabic or

Re: LC 9.04

2019-05-14 Thread Paul Dupuis via use-livecode
On 5/14/2019 2:10 PM, Klaus major-k via use-livecode wrote: * ... * Browser Widget: Progress, isSecure and allowUserInteraction *... Looking at the link above, shows that these were moved

Seeking confirmation of a bug...

2019-05-16 Thread Paul Dupuis via use-livecode
I just filed a serious bug for LC904 that is only under OSX. When using 'asnwer file with type ' the selected type is supposed to be returned in 'the result'. This works as expected under Windows, but under OSX using LC904 STABLE, 'the result' is the same as the 'it', both contain the file pat

Re: Seeking confirmation of a bug...

2019-05-16 Thread Paul Dupuis via use-livecode
On 5/16/2019 10:26 AM, Klaus major-k via use-livecode wrote: answer file "sdsdds" with type "PNG, JPEG|png,jpg|" You only  tested with 1 type. Download the test stack from the bug report or try answer file "sdsdds" with type ("PNG Files|png"&cr&"JPEG Files|jpg") to actually have more than o

Re: Seeking confirmation of a bug...

2019-05-16 Thread Paul Dupuis via use-livecode
On 5/16/2019 10:32 AM, Klaus major-k via use-livecode wrote: maybe the dictionary should read: "This list is ONLY displayed on Windows systems"? No it is displayed under OSX IF you specify more than one type (tag) not extensions. See my previous reply. Also this fails under LC903 but works a

Re: Seeking confirmation of a bug...

2019-05-16 Thread Paul Dupuis via use-livecode
Certainly there is a work around based on extensions. You and I have both written them for Researchware ;-) However, Jeanne used this feature extensively in a bunch of file i/o code she wrote for Researchware for HyperTRANSCRIBE and HyperRESEARCH exports to many formats, which is why/how I disc

Re: Seeking confirmation of a bug...

2019-05-16 Thread Paul Dupuis via use-livecode
ash is a merge at that time. It’s an easy fix though which is good ;-) Cheers Monte On 17 May 2019, at 5:26 am, Paul Dupuis via use-livecode wrote: Certainly there is a work around based on extensions. You and I have both written them for Researchware ;-) However, Jeanne used this f

Re: Seeking confirmation of a bug...

2019-05-16 Thread Paul Dupuis via use-livecode
Thank you Monte! I just finished dinner and was sitting down to enter a new bug when I saw you had already done it! On 5/16/2019 6:30 PM, Monte Goulding via use-livecode wrote: On 17 May 2019, at 7:29 am, Monte Goulding via use-livecode wrote: I just added an updated test stack that sh

Re: Seeking confirmation of a bug...

2019-05-16 Thread Paul Dupuis via use-livecode
On 5/16/2019 7:35 PM, Richard Gaskin via use-livecode wrote: Paul Dupuis wrote: > I am sometimes astonished that a bug like this can go undetected > through so many releases. It causes me to worry about the adoption > of LC as a serious commercial application building tool. This is why I do my

Windows player playrate bug...

2019-05-17 Thread Paul Dupuis via use-livecode
For those doing media under Windows (if any one out there is), I just identified that the playRate property is not working under Windows (tested under Windows 10). Busted in LC904 STABLE and 905 RC1, not sure how far back it broken. See bug: https://quality.livecode.com/show_bug.cgi?id=22075

Re: The correct way to quit a Windows standalone

2019-05-23 Thread Paul Dupuis via use-livecode
If it is a requirement for any loaded fonts to be unloaded from memory for a Standalone to actually quit under Microsoft Windows then a bug should be entered at https://quality.livecode.com/ to update the Dictionary entries for: closeStackRequest shutDownRequest quit start using font stop usin

Re: The correct way to quit a Windows standalone

2019-05-23 Thread Paul Dupuis via use-livecode
activesw.com HyperActive Software | http://www.hyperactivesw.com On May 23, 2019 8:14:59 AM Paul Dupuis via use-livecode wrote: If it is a requirement for any loaded fonts to be unloaded from memory for a Standalone to actually quit under Microsoft Windows then a bug should be entered at https://qualit

Re: LC904rc2 Project Browser error?

2019-05-23 Thread Paul Dupuis via use-livecode
9 12:40 PM, Geoff Canyon wrote: I installed 9.0.4 on a Mac, and it looks like there are several bugs still with drag and drop of groups. Did you file a bug for this issue? On Sat, Apr 27, 2019 at 12:17 AM Paul Dupuis via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Not

Re: Windows 64

2019-05-24 Thread Paul Dupuis via use-livecode
If I recall correctly: Windows 2000 and XP were only 32-bit Windows Vista and WIndows 7 came in both 32-bit and 64-bit versions (you have to buy the version you wanted. They were sold separately) Windows 8, 8.1, and 10 are available ONLY as 64-bit OSes So, while Microsoft maintains 32-bit comp

Opening a stack changes it's set rect

2019-05-24 Thread Paul Dupuis via use-livecode
I discovered today that opening a stack changes its set rect (at least under Windows 10 in LC904/905rc1 when opening a stack invisible See this little gem: https://quality.livecode.com/show_bug.cgi?id=22097 Not a problem is you are just popping up windows and then setting their positions, but

Re: App Store changes in August?

2019-05-24 Thread Paul Dupuis via use-livecode
My guess would be the forth coming Notarization requirement by Apple? There was a lot of list discussion about that, but it has nothing to do with LiveCode. It is just another set of steps your will need to do, like Code Signing, for you OSX apps build in LiveCode or any language to run on OSX

Re: Opening a stack changes it's set rect

2019-05-24 Thread Paul Dupuis via use-livecode
Thank you Mark! On 5/24/2019 2:14 PM, Mark Waddingham via use-livecode wrote: On 2019-05-24 18:08, Paul Dupuis via use-livecode wrote: I discovered today that opening a stack changes its set rect (at least under Windows 10 in LC904/905rc1 when opening a stack invisible See this little gem

Player object controller bar

2019-05-24 Thread Paul Dupuis via use-livecode
I have searched the dictionary, Guides, and livecode.com but have been unable to find a annotated picture of the LC9xx player objects' controller bar and what each control does, especially in combinations with with modifier keys Clearly, some controls are obvious, like play/pause, etc., but I

Re: how to load a local file into the browser widget?

2019-05-25 Thread Paul Dupuis via use-livecode
On 5/25/2019 4:17 AM, Klaus major-k via use-livecode wrote: Sorry, I don't know, someone else needs to chime in here. Obvioulsy "Unicode, it just works" doesn't do with filenames. :-/ Our experience with LC90x has been that Unicode DOES just work with filename, for 'open file , there is a fil

Re: how to load a local file into the browser widget?

2019-05-25 Thread Paul Dupuis via use-livecode
On 5/25/2019 7:47 AM, Paul Dupuis via use-livecode wrote: On 5/25/2019 4:17 AM, Klaus major-k via use-livecode wrote: Sorry, I don't know, someone else needs to chime in here. Obvioulsy "Unicode, it just works" doesn't do with filenames. :-/ Our experience with LC90x h

Re: Player object controller bar

2019-05-25 Thread Paul Dupuis via use-livecode
On 5/25/2019 10:08 AM, Rick Harrison via use-livecode wrote: My experience with player controllers is that if you just want people to be able to use the built in controls, that should work fine. I just want to see a document that tell me what ALL the built in controls are. Are these all the

Re: Player object controller bar

2019-05-25 Thread Paul Dupuis via use-livecode
On 5/25/2019 11:10 AM, Paul Dupuis via use-livecode wrote: If you are on Pause, the Forward and Rewind arrows step forward or backwards by  frame If you are on Play, the Forward and Rewind arrows fast forward or rewind (currently not working under Windows in LC904/5) Play and Pause toggle

Re: Player object controller bar

2019-05-25 Thread Paul Dupuis via use-livecode
On 5/25/2019 11:49 AM, Klaus major-k via use-livecode wrote: why not try by yourself? Your machine won't exlode, promised!:-D With this slider you can control the speed of playback: playback backwards <- drag left- drag right-> playback forward You miss my point. It should be documented. A Liv

Re: Player object controller bar

2019-05-25 Thread Paul Dupuis via use-livecode
On 5/25/2019 11:37 AM, Paul Dupuis via use-livecode wrote: On 5/25/2019 11:10 AM, Paul Dupuis via use-livecode wrote: If you are on Pause, the Forward and Rewind arrows step forward or backwards by  frame If you are on Play, the Forward and Rewind arrows fast forward or rewind (currently not

windowBoundingRect on multiple monitors? Is this a bug?

2019-05-25 Thread Paul Dupuis via use-livecode
With LC90x+ we have the screenRect (for the primary monitor), the screenRects (for multiple monitors and we can even use the 'working' keyword to get the screenRect less any OS reserved space for menu bar or task bar. Thus, if you have a set up with 2 monitors, the working screenRect returns

Re: windowBoundingRect on multiple monitors? Is this a bug?

2019-05-25 Thread Paul Dupuis via use-livecode
2019-05-25 23:19, Paul Dupuis via use-livecode wrote: If you have resizable windows, it is logical to set the windowBoundingRect to the working screenRect, so that windows that are zoomed (OSX) or maximized (Windows) are limited to the area of the primary monitor NOT being used for a menu bar or

Re: windowBoundingRect on multiple monitors? Is this a bug?

2019-05-25 Thread Paul Dupuis via use-livecode
ngham via use-livecode wrote: On 2019-05-25 23:19, Paul Dupuis via use-livecode wrote: If you have resizable windows, it is logical to set the windowBoundingRect to the working screenRect, so that windows that are zoomed (OSX) or maximized (Windows) are limited to the area of the primary monito

Re: FFI & VLC Player

2019-05-30 Thread Paul Dupuis via use-livecode
I am current dealing with LiveCode media headaches such as: 1) Inconsistency with media file formats supported between OSX AVF and Microsoft DirectShow 2) Very limited set of formats for DirectShow without additional 3rd party codec packs installed (we use LAV Filters) 3) Inconsistencies with t

Re: Player endTime is not respected!

2019-06-07 Thread Paul Dupuis via use-livecode
Did you: set the playSelection of player to true Required to actually play from startTime to endTime and stop On 6/7/2019 9:52 AM, Rick Harrison via use-livecode wrote: Good Morning LC Users, I have a Player object that I have set the startTime and endTime for the movie. When I inspect the

Re: Big problems creating standalone

2019-06-09 Thread Paul Dupuis via use-livecode
On 6/9/2019 9:28 AM, Klaus major-k via use-livecode wrote: Hi friends, I have an old stack with 18 substacks from 2012. I saved it in current format with LC 9.04 on macOS 10.14.5. I selected 64bit in the standalone application settings and tried to create a standalone, but had to cancel (CMD+.

Re: pdf widget initial thangers

2019-06-10 Thread Paul Dupuis via use-livecode
On 6/10/2019 12:02 PM, Mike Kerner via use-livecode wrote: anyone messing with the pdf widget, yet? Any thoughts about using it vs. xpdf? the xpdf external is Google PDFium wrapped as an External. the LC950 pdf widget is Google PDFium wrapped as a FFI widget. Expect that effectively the widg

Re: pdf widget initial thangers

2019-06-10 Thread Paul Dupuis via use-livecode
On 6/10/2019 1:58 PM, Mike Kerner via use-livecode wrote: Paul, Have you reworked the xpdf example stack to use the widget? Are there any api additions/deletions between xpdf and the widget? Not yet, but it is on my to do list, probably starting next week? Perhaps the week after. I have some o

Context menus (popup command) bugs...

2019-06-13 Thread Paul Dupuis via use-livecode
I've run into a bug on Windows (and Linux) with regard to popup menus over a field using mouseMove or mouseWithin. https://quality.livecode.com/show_bug.cgi?id=22178 There are related bugs: https://quality.livecode.com/show_bug.cgi?id=7766 https://quality.livecode.com/show_bug.cgi?id=20695 The

dragData["private"] is not Unicode aware

2019-06-17 Thread Paul Dupuis via use-livecode
Folks (those who may have an interest at least): I just filed a bug: https://quality.livecode.com/show_bug.cgi?id=22192 Essentially, I discovered in LC905rc1 that: For years you could do: set the dragData["private"] to "Some English Text" and then put the dragData{"private"] and get "Some Eng

Re: dragData["private"] is not Unicode aware

2019-06-18 Thread Paul Dupuis via use-livecode
On 6/18/2019 3:29 AM, Mark Waddingham via use-livecode wrote: On 2019-06-17 22:09, Paul Dupuis via use-livecode wrote: Folks (those who may have an interest at least): I just filed a bug: https://quality.livecode.com/show_bug.cgi?id=22192 Does this ("Private" NOT Unicode aware) s

Re: dragData["private"] is not Unicode aware

2019-06-18 Thread Paul Dupuis via use-livecode
On 6/18/2019 9:01 AM, Trevor DeVore via use-livecode wrote: On Tue, Jun 18, 2019 at 6:28 AM Paul Dupuis via use-livecode < use-livecode@lists.runrev.com> wrote: I should learn how to contribute to updating documentation myself, but I have tried setting up GIT on Windows twice without s

Help with drawing in LiveCode...

2019-06-20 Thread Paul Dupuis via use-livecode
I have an old stack (built under LC 4.6.4) that has a component that does some simple drawing. There is a tool bar (some buttons and menus) and below that a drawing area (scrolling group) A mouseMove handler set the tool to the *pointer tool* when over the drawing area and back to the *browse

Re: Help with drawing in LiveCode...

2019-06-20 Thread Paul Dupuis via use-livecode
On 6/20/2019 3:02 PM, dunbarxx via use-livecode wrote: Hi. Untested, but this is kluge time. Something like this in the card script, though I bet it can be made cleaner and more robust: on mouseLeave set the liveHandles of this cd to the name of the target select empty end mouseLeave

Re: Help with drawing in LiveCode...

2019-06-21 Thread Paul Dupuis via use-livecode
On 6/21/2019 4:54 AM, hh via use-livecode wrote: Here is a very simple drawing stack made once for testing the HTML5 standalone builder. http://hyperhh.de/html5/krikelKrakel2a-8.0.2X.html That could be a helpful example. Thank you, but how do I download the actual stack? ___

Re: Help with drawing in LiveCode...

2019-06-21 Thread Paul Dupuis via use-livecode
On 6/20/2019 11:34 PM, dunbarx--- via use-livecode wrote: I implemented a fairly complex drawing module to a stack we use all the time. It isn't CAD, but it looks like it, albeit rather less professional looking than, say, AutoCad or SoldWorks would produce. We send these drawings out daily to

Re: Help with drawing in LiveCode...

2019-06-21 Thread Paul Dupuis via use-livecode
you post to the forum? I am much more comfortable there, and we can all propose handlers that will restore the old way. Did you try the handler I posted earlier? It is a good start. Craig -Original Message- From: Paul Dupuis via use-livecode To: use-livecode Cc: Paul Dupuis Sent:

Re: PDF Widget

2019-06-24 Thread Paul Dupuis via use-livecode
On 6/24/2019 4:05 PM, Marty Knapp via use-livecode wrote: I was just playing with the new PDF widget in LC 9.5. You can insert a PDF and overlay other LC objects (very cool) and then print the card but the PDF portion prints at low resolution - or did I miss something? The same issue exist

"Drawing" is a reserved stack name?!?

2019-06-24 Thread Paul Dupuis via use-livecode
So before I report this as a "bug", I would appreciate if someone could confirm. Using LC9.0.4 and LC 9.0.5rc under Windows Open LC Make a new stack Make the stack name "Drawing" Save the stack as "Drawing.livecode" Make sure that your have View > Show IDE Stacks in Lists set to Off Exit LiveCod

Groups do not receive mouseEnter messages?

2019-06-24 Thread Paul Dupuis via use-livecode
In LC9.0.5rc1 under Windows, I have a test stack with 2 opaque groups with show borders  - one covering the top half of the card and one covering the bottom half of the card. In side the top group are a couple buttons with plenty of white space around them and inside the bottom group are a coup

Re: Groups do not receive mouseEnter messages?

2019-06-24 Thread Paul Dupuis via use-livecode
On 6/24/2019 8:24 PM, dunbarx--- via use-livecode wrote: Confirmed here. I have never really tried any of the things you mentioned, but no messages at all are sent to the group I just made.  Interestingly, and consistent so far, double clicking within the group boundary, but not in any child co

Re: "Drawing" is a reserved stack name?!?

2019-06-25 Thread Paul Dupuis via use-livecode
On 6/25/2019 7:03 AM, panagiotis merakos wrote: There is the drawing library, which is an IDE stack. However its name is "com.livecode.library.drawing", not just "drawing". So this sounds like a bug in the IDE :) https://quality.livecode.com/show_bug.cgi?id=22205 _

Re: Groups do not receive mouseEnter messages?

2019-06-25 Thread Paul Dupuis via use-livecode
On 6/25/2019 4:11 AM, Mark Waddingham via use-livecode wrote: The behavior of groups re mouse messages (and the lack there of) has been the same as long as I can remember (which is back to around version 2.0). Warmest Regards, Mark. As always Mark, thank you. I have becomes so use to most

Re: Groups do not receive mouseEnter messages?

2019-06-25 Thread Paul Dupuis via use-livecode
There are clearly use cases where it makes sense for a group (such as it it just being used to contain or enclose a set of other controls) NOT to received mouse event messages. There are also use cases where it DOES make sense of a group to received mouse event messages, such as if you are usi

Re: Rects Revisted

2019-06-26 Thread Paul Dupuis via use-livecode
On 6/26/2019 1:41 PM, Bob Sneidar via use-livecode wrote: So I am dealing with the rects of stacks vs. the rects of screens, and now I see what the issues people have had are all about. I have a window whose bottom is partially below the screen it is on. But item 4 of the rect of the stack is

Re: CTD meaning?

2019-06-28 Thread Paul Dupuis via use-livecode
On 6/28/2019 5:02 AM, Lagi Pittas via use-livecode wrote: Crash To Desktop? Yes. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev

LC905rc1 Standalone Weirdness with External Stacks

2019-06-28 Thread Paul Dupuis via use-livecode
We have an app we're porting to LC9 (currently doing internal beta builds under LC9.0.5rc1) that we're seeing some weirdness when external stacks are opened by the standalone. This is happening under OSX. We've not seen it (so far) under Windows, but most of our initial QA testing is done unde

Re: LC905rc1 Standalone Weirdness with External Stacks

2019-06-28 Thread Paul Dupuis via use-livecode
are calling External Stacks. The Standalone (again to my mind) is simply the runtime engine glued to the main stack you compiled with it. All other stacks, including the ones referenced in the Stack Files of the main stack are simply opened like the IDE would. Bob S On Jun 28, 2019, at 08:2

Re: LC905rc1 Standalone Weirdness with External Stacks

2019-06-28 Thread Paul Dupuis via use-livecode
On 6/28/2019 2:08 PM, Richard Gaskin via use-livecode wrote: Paul Dupuis wrote: > We have an app we're porting to LC9 (currently doing internal beta > builds under LC9.0.5rc1) that we're seeing some weirdness when > external stacks are opened by the standalone. > > This is happening under OSX. W

Re: Using shell as administrator on Windows 10

2019-06-28 Thread Paul Dupuis via use-livecode
On 6/28/2019 1:23 PM, Glen Bojsza via use-livecode wrote: Hello, Is there a way to us LC shell to do commands as administrator? thanks, Glen ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe a

Re: LC905rc1 Standalone Weirdness with External Stacks

2019-06-28 Thread Paul Dupuis via use-livecode
On 6/28/2019 12:48 PM, Dar Scott Consulting via use-livecode wrote: I don't know if this is related or not... I have seen the rectangle of the window off by a similar amount when it overlaps the LiveCode IDE toolbar. This is occurring in a a standalone, so I don't think the IDE toolbar is a

Re: LC905rc1 Standalone Weirdness with External Stacks

2019-06-28 Thread Paul Dupuis via use-livecode
On 6/28/2019 6:47 PM, Bob Sneidar via use-livecode wrote: Also, if a stack is a part of the EXE, aren't the read only? In other words, you cannot save things like properties by saving the stack? Correct. But not a problem for our app as they are full desktop apps that read and write a variety

Re: LC905rc1 Standalone Weirdness with External Stacks

2019-06-28 Thread Paul Dupuis via use-livecode
On 6/28/2019 8:04 PM, doc hawk via use-livecode wrote: On Jun 28, 2019, at 8:24 AM, Paul Dupuis via use-livecode wrote: When the standalone opens the external stack (which could be in an older stack file format), when the mouse is in the external stack window, LiveCode thinks the mouse is

Re: Symantec quarantining LiveCode standalone on client's machine

2019-07-02 Thread Paul Dupuis via use-livecode
Same here. Code signing your application will prevent this. On 7/2/2019 4:10 PM, Tom Glod via use-livecode wrote: Just wondering ..is your executable signed? I've come across this problem before with it being quarantined. avast does the "hold on a second let me check this out first" thing

Re: Symantec quarantining LiveCode standalone on client's machine

2019-07-02 Thread Paul Dupuis via use-livecode
On 7/2/2019 5:57 PM, Curt Ford via use-livecode wrote: Guess it's time to finally look into this. I just visited https://comodosslstore.com but am not sure of the differences between Comodo code signing, Microsoft Authenticode, etc... Any suggestions on best practices with LiveCode/Inno Setup

Re: name vs short name

2019-07-04 Thread Paul Dupuis via use-livecode
No it is not consistent, but some of the syntax was baked into Metacard long ago, often in response to some specific customer asking for a way to do some specific thing. Remember, Metacard was effectively a product of a single person. For LiveCode to change it now would break far fr too many e

DataGrid v1 vs DataGrid v2...

2019-07-09 Thread Paul Dupuis via use-livecode
QUESTION: If I have a stack with a Datagrid in it that was made in LiveCode 6.x.x. and I have now opened and saved this stack from LiveCode 9.0.5rc1 in the current (v7.0) stack format. Does the Datagrid get converted from a version1 data grid to a version 2 datagrid? Or, if I want/need the v

Re: DataGrid v1 vs DataGrid v2...

2019-07-09 Thread Paul Dupuis via use-livecode
On 7/9/2019 8:32 AM, Sean Cole (Pi) via use-livecode wrote: Hi Paul. It gets upgraded automatically. If it is in a Form style, the swipe actions are turned off by default to avoid ruining your old versions. Practically all of the old code works as it did before. As it's just the engine that chan

Question about "the screen" property of stacks...

2019-07-11 Thread Paul Dupuis via use-livecode
The screen of stack X returns the number of the monitor (the line number for the screenRects) that the stack/window is on. How exactly is this determined? I presume it is based on the loc (location) property of the stack, since the window (effective rect or rect) itself can span multiple monit

<    4   5   6   7   8   9   10   11   >