Search found 22 matches

by doveweed
Fri Feb 06, 2015 5:16 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

BTW is there a way to upload a standalone app to a server and embed app in HTML on webpage so app can be run in a browser over the internet?
by doveweed
Fri Feb 06, 2015 4:35 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

Danke Klaus! Less is more. The Object Script works like a charm, with no need for duplicate invisible buttons. But thanks for explaining how to create and script invisibles all the same, as that may most likely come in handy someday with something else. And thanks for the stack link too. Jacqueline,...
by doveweed
Thu Feb 05, 2015 4:36 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

How can I script button for 2 different conditions? (Much simpler and easier than visible/invisible button just as lock screen/fullscreen is much easier than coding each image name) For instance, on mouseUp lock screen if fullscreen=false then set the fullscreen of this stack to true set the fullscr...
by doveweed
Thu Feb 05, 2015 3:54 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

When I inspect fs button object in SCREENER stack, I can see that there's also an ss button in object inspector, but I have no idea how to create a button that's invisible. 1) How do I put an invisible button on top or underneath a visible button???! 2) How do I then script onMouseup for that invisi...
by doveweed
Thu Feb 05, 2015 4:54 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

Got it! Replace your Object Script for image with this —
on mouseUp
lock screen
set the fullscreen of this stack to false
unlock screen
end mouseUp
by doveweed
Thu Feb 05, 2015 4:51 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

Replace your Object Script for Full Screen button with this — on mouseUp lock screen set the fullscreen of this stack to true set the fullscreenmode of this stack to "letterbox" unlock screen end mouseUp I've also added this to Stack Script, but I don't think it's working — on preOpenStack set the f...
by doveweed
Thu Feb 05, 2015 2:03 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

If "left" = 0 (x-coordinate of the upper-left corner of screen), and "top" = 0 (y-coordinate of the upper-left corner of screen), what are x and y coordinates of bottom-right of screen? And Google "LiveCode | Resolution Independence" (Should be 4th from top in search results) Will you help figure ou...
by doveweed
Thu Feb 05, 2015 1:27 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

Currently buttons stay at upper left of center of screen when image enlarges full screen, and in full screen when using forward/back buttons, slides don't remain enlarged, and full screen button has to be pressed for each slide. When in full screen mode, all slides should display full screen.
by doveweed
Thu Feb 05, 2015 1:26 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

I've got it working. Check out SlideShow.livecode. SlideShow.livecode.zip Would be a lot easier if there was some code to apply to any image so I wouldn't have to edit title of image in every Object Script. Would also be better if buttons enlarged in proportion and position so they stay at lower rig...
by doveweed
Wed Feb 04, 2015 9:07 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

So how did you set that up so clicking expanded image returns to normal?
When I inspect object script for cat pix, I don't see anything there about "return to normal".
by doveweed
Wed Feb 04, 2015 8:52 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

I'm sure I can learn something from all.
Where is escape script in your Screener3 file?
I don't see a card or stack script, just object script for Full Screen Me button.
Where is script that tells Full Screen to escape when clicking on full screen image?
by doveweed
Wed Feb 04, 2015 8:41 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

At lessons runrev, see -
How do I make my app scale to fit the screen on all devices?
and
Displaying Assets On Differing Screen Resolutions
by doveweed
Wed Feb 04, 2015 8:28 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

I don't understand what the following are referring to, and don't find them in the Dictionary — item 3 item 4 —44 WIDD WIDD / 1.78 HITE 22 70 40 If stack is named Slideshow, and I want entire card width and height to fill user's screen resolution (whatever that might be), should Object Script for Fu...
by doveweed
Wed Feb 04, 2015 7:46 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

When I click on your Full Screen button, the cat pix fills my HP ZR22w monitor set at 1920x1080 and there is no escape button visible only the cat pixels.
I have to close the stack to escape.
by doveweed
Wed Feb 04, 2015 7:30 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using LC for Slideshow
Replies: 45
Views: 30945

Re: Using LC for Slideshow

I've been doing plenty of experimenting, which is fine when it comes to learning what the various tools in the toolbar do, but I could experiment til kingdom come and never figure out what script should say to do what I want. The script I have for forward/backward slides with wipe left and right did...