Search found 421 matches

by sefrojones
Sat Nov 15, 2014 10:09 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to randomize moving objects on a path
Replies: 7
Views: 3815

Re: How to randomize moving objects on a path

Hi again, the reason for the error above was missing parenthesis in the code: On moveobj move image ("rthand"&random(2)&".gif") to the points of graphic ("RightPath"&random(2)) in 2 seconds move image ("lfthand"&random(2)&".gif") to the points of graphic ("LeftPath"&random(2)) in 2 seconds send "mov...
by sefrojones
Sat Nov 15, 2014 9:14 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to randomize moving objects on a path
Replies: 7
Views: 3815

Re: How to randomize moving objects on a path

Maybe name them rthand1 and rtHand2,(etc) and something like this: On moveobj move image "rthand"&random(2)&".gif" to the points of graphic ("RightPath"&random(2)) in 2 seconds move image "lfthand"&random(2)&".gif" to the points of graphic ("LeftPath"&random(2)) in 2 seconds send "moveobj" to me in ...
by sefrojones
Sat Nov 15, 2014 8:39 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to randomize moving objects on a path
Replies: 7
Views: 3815

Re: How to randomize moving objects on a path

If I understand what you're asking for, and the right hands should only move on 2 of the paths, and the left will move on the other 2, you could name them accordingly like this: RightPath1 & RightPath2 for the right hand and LeftPath1/2 for the left hand. You can randomize it without a variable,try ...
by sefrojones
Fri Nov 14, 2014 7:29 pm
Forum: Games
Topic: LiveCode Game Jam
Replies: 33
Views: 31389

Re: LiveCode Game Jam

Hi Simon, I apologize for my extended absence, but I am back now, and have some free time these last two weeks. I will be uploading a couple of games in the next few days, so you won't have to be the first one. I had hoped to promote this a little bit more, but real life obligations have gotten in t...
by sefrojones
Thu Oct 30, 2014 3:58 pm
Forum: iOS Deployment
Topic: Streaming videos from Vimeo within an app
Replies: 20
Views: 15474

Re: Streaming videos from Vimeo within an app

This one from the bug report: I just got it working using the workaround from Neil Roger in the bug report. Until this feature is available, there is a workaround (However, we cannot provided support for this method) The workaround is to edit Android Manifest from the built APK. The tools used to ac...
by sefrojones
Thu Oct 30, 2014 1:18 am
Forum: iOS Deployment
Topic: Streaming videos from Vimeo within an app
Replies: 20
Views: 15474

Re: Streaming videos from Vimeo within an app

On my Ubuntu machine I used v1.5.2, along with the instructions for the workaround.

--sefro
by sefrojones
Sun Oct 26, 2014 6:00 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Isolating substring to certain character
Replies: 6
Views: 3550

Re: Isolating substring to certain character

This works:

Code: Select all

on mouseUp
   put "bobsacamono@seinfeld.com" into tEmail
   set the itemdelimiter to "@"
   answer item 1 of tEmail
end mouseUp
--sefro
by sefrojones
Wed Oct 22, 2014 8:41 pm
Forum: MobGUI
Topic: Getting uText of Option control
Replies: 2
Views: 9254

Re: Getting uText of Option control

I think you're looking for mgOptionText :

http://mobgui.com/doc.php?docId=11

--Sefro
by sefrojones
Wed Oct 15, 2014 4:30 pm
Forum: Games
Topic: LiveCode Game Jam
Replies: 33
Views: 31389

Re: LiveCode Game Jam

Hi everybody, the sign-in issue should be fixed. I apologize for my absence, but I have been pretty busy with work. Everything should be working as expected within the next few minutes as far as signing in an uploading... --Sefro Edit, I have tested the submission process with a basically empty stan...
by sefrojones
Thu Oct 09, 2014 6:16 pm
Forum: Games
Topic: LiveCode Game Jam
Replies: 33
Views: 31389

Re: LiveCode Game Jam

It doesn't look like any games have been submitted yet, hopefully because everyone is working on their game. :D I will try to upload a sample game tonight to test the process.
by sefrojones
Wed Oct 08, 2014 4:22 pm
Forum: iOS Deployment
Topic: Mac OX running inside a Virtual Box on Windows
Replies: 10
Views: 6855

Re: Mac OX running inside a Virtual Box on Windows

FourthWorld wrote:Yes, the OS X EULA requires that the software be run only on "Apple branded computers".
I had always assumed that it was possible and legal to run OSX in a VM or on a hackintosh as long as you owned a copy of OSX. My brain just exploded. :shock:

--Sefro
by sefrojones
Sun Oct 05, 2014 11:00 pm
Forum: iOS Deployment
Topic: Streaming videos from Vimeo within an app
Replies: 20
Views: 15474

Re: Streaming videos from Vimeo within an app

I just got it working using the workaround from Neil Roger in the bug report. Until this feature is available, there is a workaround (However, we cannot provided support for this method) The workaround is to edit Android Manifest from the built APK. The tools used to achieve this was "APKTool" and t...
by sefrojones
Sun Oct 05, 2014 9:53 pm
Forum: iOS Deployment
Topic: Streaming videos from Vimeo within an app
Replies: 20
Views: 15474

Re: Streaming videos from Vimeo within an app

Newtronsols,

what I am experiencing is that the player loads, the share buttons, and video controls are visible,as well as the image for the video, but when you press play, only the sound plays - the video remains black. As far as I know this is related to the bug that Chris posted....

--Sefro
by sefrojones
Sun Oct 05, 2014 7:14 pm
Forum: iOS Deployment
Topic: Streaming videos from Vimeo within an app
Replies: 20
Views: 15474

Re: Streaming videos from Vimeo within an app

I just tested this code on android (replacing iphone with mobile) and the video is black. The player loads up as expected, and when being played, the sound plays but the video remains black. Even hitting the fullscreen button doesn't change this. Anyone have this working on android?

--Sefro
by sefrojones
Sun Oct 05, 2014 8:17 am
Forum: iOS Deployment
Topic: Streaming videos from Vimeo within an app
Replies: 20
Views: 15474

Re: Streaming videos from Vimeo within an app

If I recall correctly, the problem with streaming videos on android is that the video will show up as a black box, unless full screened by the user.

Go to advanced search