Search found 24 matches

by jpatten
Sat Oct 12, 2019 5:12 pm
Forum: Educational Outreach
Topic: Primary Student Livecode Interface (Simplified Developer Interface)
Replies: 26
Views: 47027

Re: Primary Student Livecode Interface (Simplified Developer Interface)

Thanks for the all the feedback! What Richmond did is what I started doing during my lunch too ;) I just made a stack/palette with limited buttons. I added a few to to target aspects I wanted to introduce. For example, a button that brings up the Project Browser, and a button that puts the coordinat...
by jpatten
Tue Feb 14, 2017 12:34 am
Forum: Multimedia
Topic: Executing LC from JavaScript in Browser Widget?
Replies: 3
Views: 6304

Re: Executing LC from JavaScript in Browser Widget?

Ok, made some progress... So I figured I had to identify the specific button, or id, that I was clicking on. After the first click of the button, and the triggering of the LiveCode handler, the handler was triggered just by clicking the "canvas" of the browser widget. That lead me to believe that th...
by jpatten
Mon Feb 13, 2017 10:59 pm
Forum: Multimedia
Topic: Executing LC from JavaScript in Browser Widget?
Replies: 3
Views: 6304

Executing LC from JavaScript in Browser Widget?

Hi All, I'm in need of some JavaScript intervention :( A few weeks back I started toying with the idea of getting a hotspot in a panorama, which was sitting inside a browser widget, to communicate with LiveCode. The initial discussion was here: http://lists.runrev.com/pipermail/use-livecode/2017-Feb...
by jpatten
Tue May 05, 2015 4:27 pm
Forum: iOS Deployment
Topic: Remove old profiles from standalone settings
Replies: 4
Views: 4380

Re: Remove old profiles from standalone settings

Hi All,

Wondering how to eliminate old Profiles in standalone maker settings? The suggested app in this older post is no longer around...

Thank you!
by jpatten
Mon Nov 25, 2013 7:38 am
Forum: iOS Deployment
Topic: Unzip file and show it.
Replies: 27
Views: 20036

Re: Unzip file and show it.

Simon...

I'm running the latest version of LiveCode 6.1.3 and Version 6.0 (369.2) of the OS X simulator, OSX 10.9.

Thanks for taking a look!
by jpatten
Mon Nov 25, 2013 6:54 am
Forum: iOS Deployment
Topic: Triggering Events At Specific Player Times?
Replies: 5
Views: 4312

Re: Triggering Events At Specific Player Times?

Thanks Gerry and Simon!

I just took the easy way out and rounded :)

put the round of (mobileControlGet ("iosControl", "currenttime")/1000) & " seconds" into cd fld "videoTime"

Cheers!
by jpatten
Mon Nov 25, 2013 6:20 am
Forum: iOS Deployment
Topic: Unzip file and show it.
Replies: 27
Views: 20036

Re: Unzip file and show it.

Hmmm...? Does the unzip process still work in the example stack above? I downloaded it, did not make any changes, made sure the RevZip external was selected in the standalone settings, but when I test in simulator the zipped files do not unzip. The file gets downloaded, test.zip and testfolder.zip a...
by jpatten
Sun Nov 24, 2013 10:58 pm
Forum: iOS Deployment
Topic: Triggering Events At Specific Player Times?
Replies: 5
Views: 4312

Triggering Events At Specific Player Times?

Hi All... Is it possible to trigger events at specific times during the playback of a movie or an audio file in iOS? I had looked at an older CallBacks tutorial but callbacks are not iOS compatible. I also noticed there is a mobileControlGet (player_id, currentTime) but I was not sure how I could re...
by jpatten
Sun Apr 28, 2013 3:29 am
Forum: iOS Deployment
Topic: Playing a Vimeo stream within an HTML field...
Replies: 10
Views: 10615

Re: Playing a Vimeo stream within an HTML field...

I just discovered this as to be the case trying to play a Youtube video on a browser object too... The video url plays fine in the iPad in Safari, same address within a browser object and the app crashes as you've mentioned.

Not sure if this has been logged as a bug or not....?
by jpatten
Thu Jan 22, 2009 9:57 pm
Forum: Talking LiveCode
Topic: Drag and Drop within same stack with png/jpg images...?
Replies: 0
Views: 1822

Drag and Drop within same stack with png/jpg images...?

Hi All.... Looking for suggestions for how to go about incorporating a small clip art collection within a project. Ideally, I would like to incorporate it as a side panel that contains a horizontally scrolling field of the image collection. I'd like the user to be able to grab an image in the scroll...
by jpatten
Sun Jan 18, 2009 2:28 am
Forum: Internet
Topic: Post image snapshot to TwitPic web service....
Replies: 1
Views: 4534

Post image snapshot to TwitPic web service....

Hi All... I'm trying to post a card snapshot to the "Web 2.0" twitpic web service. Their API for post data is: METHOD: http://twitpic.com/api/uploadAndPost Use this method to upload an image to TwitPic and to send it as a status update to Twitter. Fields to post in (post data should be formatted as ...
by jpatten
Sun Jan 18, 2009 12:04 am
Forum: Talking LiveCode
Topic: Import Snapshot Speed...?
Replies: 2
Views: 2949

I tried it out back home on my PowerMac G5 and it worked like you describe. I was experiencing the slow down on the machine at work (latest iMac). I could have very well had some process running in the background that were slowing it down,...I did not do a restart to see if that would have helped. I...
by jpatten
Fri Jan 16, 2009 10:21 pm
Forum: Talking LiveCode
Topic: Import Snapshot Speed...?
Replies: 2
Views: 2949

Import Snapshot Speed...?

Hi All... I using import snapshot from a button to capture a part of an image on the card. When I click the button to begin the capture it takes about 11 seconds for the cross hairs to appear. Is there any way to speed up the process of snapshot so that it does not take 11 seconds from the time the ...
by jpatten
Wed Jun 18, 2008 7:40 pm
Forum: CGIs and the Server
Topic: Sending data from client stack to CGI-Data stack?
Replies: 10
Views: 15649

Arrrrg!!!

I should have search the list archive first!!!!

Found the solution. Rev can't write to a stack when it's in the cgi-bin folder. ( I suppose due to Apache restrictions).

Here the discussion from the mail list:

http://lists.runrev.com/pipermail/metac ... 09287.html

Cheers!
by jpatten
Wed Jun 18, 2008 12:33 am
Forum: CGIs and the Server
Topic: Sending data from client stack to CGI-Data stack?
Replies: 10
Views: 15649

Thanks Richard... still having problems though... Here is the text from my "postdata.cgi" #!rev on startup put "Data.rev" into theStack put empty into theTerm repeat until length(theTerm) = $Content_Length read from stdin until empty put it after theTerm end repeat if theTerm = "" then put "You don'...