Search found 13 matches

by cybernaut
Mon Jul 04, 2011 1:02 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Videoclip on IOS app for Ipad
Replies: 2
Views: 2922

Re: Videoclip on IOS app for Ipad

Hi Herman,

add your videos (or complete folder with videos) in the "Standalone Builder" settings via "Add files..."
In the standalone you will find all added files and folder here: specialfolderpath("engine")

Then you can play them with:
...
play (specialfolderpath("engine") & "/" & "youvideo ...
by cybernaut
Mon Jul 04, 2011 12:32 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Videoclip on IOS app for Ipad
Replies: 2
Views: 2922

Videoclip on IOS app for Ipad

Hi, could you please advise me if this is possible using LiveCode:
I need to create an app that will run on an Ipad. The app will contain some video clips. I know that I can use the videoplayer to play the videoclips but instead of pointing to a place on the internet where the video is, I want to ...
by cybernaut
Mon Jul 04, 2011 11:59 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Browsing field
Replies: 9
Views: 7068

Re: Browsing field

Might be due to the way the revBrowser external works, so lets try this in your stack/card script

on preOpenStack
send "makeBrowserWork" to me in 0 seconds // this causes the message to be put at the end of the queue
end preOpenStack

on makeBrowserWork
local tBrowserID
put revBrowserOpen(the ...
by cybernaut
Mon Jul 04, 2011 11:50 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Browsing field
Replies: 9
Views: 7068

Re: Browsing field

shaosean wrote:preOpenStack is too early, try moving it to either the preOpenCard (might still be too early) or openCard
Already tried without luck!
What could it be?
Herman
by cybernaut
Mon Jul 04, 2011 11:35 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Browsing field
Replies: 9
Views: 7068

Re: Browsing field

You will probably want to look at the revBrowser features, but here is a quickie script

1. create an image control, call it "browserRect", set the dimensions to whatever you want
2. create a button, add this script

on mouseUp
local tBrowserID
put revBrowserOpen(the windowID of this stack ...
by cybernaut
Mon Jul 04, 2011 10:53 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Browsing field
Replies: 9
Views: 7068

Re: Browsing field

You will probably want to look at the revBrowser features, but here is a quickie script

1. create an image control, call it "browserRect", set the dimensions to whatever you want
2. create a button, add this script

on mouseUp
local tBrowserID
put revBrowserOpen(the windowID of this stack ...
by cybernaut
Mon Jul 04, 2011 6:17 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Browsing field
Replies: 9
Views: 7068

Browsing field

Hello, I have created a field on my stack and I trying to fill it with a webpage from the internet.
I have tried anything to bring the webpage to show it in that field I created but nothing it is working.
Anybody can help me? I am sure that probably the solution is pretty easy but I am new at this ...
by cybernaut
Mon Jul 04, 2011 6:09 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Why this button remains gray?
Replies: 2
Views: 3196

Re: Why this button remains gray?

jacque wrote:Make sure in standalone settings you have specified iOS as the build platform. Make sure in the Development menu that you have chosen a test target.

Those are the two most common reasons the Test button isn't enabled.
Thank you Jacque I will check everything has been specified.
Cheers
Herman
by cybernaut
Mon Jul 04, 2011 2:47 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Why this button remains gray?
Replies: 2
Views: 3196

Why this button remains gray?

I'm new here so please be nice people. Thanks
I have installed my LiveCode an all the apple's latest sdk and still on my top menu of LiveCode the "Test" button still remains gray (see attached file). Inactive. Any ideas of why? I have been working on a standalone app to run on an intel mac and I can ...
by cybernaut
Sun Jul 03, 2011 3:20 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: EXACT POSITION ON A SCREEN
Replies: 5
Views: 4677

Re: EXACT POSITION ON A SCREEN

Hi herman,

this is no "setting"! Simply use it :D
Please check the LiveCode dictionary for info!

Example to "center" a stack on the screen:
on preopenstack
set the loc of this stack to the screenloc
end preopenstack


Best

Klaus
It worked!
I was thinking that when dictionary explain the ...
by cybernaut
Sun Jul 03, 2011 3:14 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: EXACT POSITION ON A SCREEN
Replies: 5
Views: 4677

Re: EXACT POSITION ON A SCREEN

Hi herman,

this is no "setting"! Simply use it :D
Please check the LiveCode dictionary for info!

Example to "center" a stack on the screen:
on preopenstack
set the loc of this stack to the screenloc
end preopenstack


Best

Klaus

Thank you, I guess I will have to read the dictionary!
Cheers ...
by cybernaut
Sun Jul 03, 2011 3:03 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: EXACT POSITION ON A SCREEN
Replies: 5
Views: 4677

Re: EXACT POSITION ON A SCREEN

BvG wrote:normally, you'd want the center of the screen. Which is available as "the screenLoc".
Please forgive me since I am new...where I can find this the screenLoc settings?
Herman
by cybernaut
Sun Jul 03, 2011 2:55 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: EXACT POSITION ON A SCREEN
Replies: 5
Views: 4677

EXACT POSITION ON A SCREEN

Hello, I am new using LiveCode and I have a question:
I am creating an app and I can see than on inspector you can setup the position at which the stack will appears on a screen (standalone mac app) when is running. Since there many screens setup to diffeent resolution I am trying to setup one ...