This Action determines where on your page the content will be scrolled. Apply it to a layer item and set the size you want it to be using the Inspector palette.
8 Comments
Lisa Salazar
I cannot get this set of action to work. The instructions are clear enough and the process straight forward, but it does not result in scrollable text.
There is one confusing note in the description of what this action does, something to the effect that this action will not work with a layer that have a plug-in content. Please give a for instance or explain what that means.
Has anybody gotten these action to work?
David McCallum
Note that with the release of FW6 this action is currently unusable. Hopefully SP will have a fix soon.
Softpress Support
All up-to-date for 6. Sorry for the delay.
Newton La Scaleia
Is this action usable with FW7?
Peter Kotz
Hello i tried in FW7 and nothing is happened. Is their anybody inside who can explain how it will function.
Softpress Support
Hi all,
Apologies about the issues with this Action, but we aren't going to be updating this one because it isn't possible for us to make it work consistently across all browsers and platforms.
If you are looking to make a scrollable HTML item, then you can do so in Freeway by letting the contents of a HTML item overflow, then in the first tab of the Inspector (in the general section), change the 'Overflow' option to 'Scrollable' (remember that the HTML items height will need to be set to 'fixed').
Peter Kotz
Hi softpress support,
ok that´s the regular way to make it scrollable, but what is to do this with an own custom-scroller effect like walter davis is shown in the year 2009 with the code: (see follow) placed in protacolarus. Now protacularus isn´t working and protacularus2 do not work with what i am write in the custom code: How can i make an working own scroll slider ????????????
var s = new Control.Slider('thumb','track', {axis:'vertical'});
var f = function(value){
var inner = $('innerDiv');
//change innerDiv to whatever your inner box is called
var h = (inner.getHeight() - inner.up('div').getHeight());
inner.style.top = (Math.round(value * h) * -1) + 'px';
}
s.options.onChange = function(value){
f(value);
};
s.options.onSlide = function(value){
f(value);
};
Softpress Support
Hi Peter,
If you want to make a custom scrolling effect, it would probably be best if you ask on FreewayTalk <https://freewaytalk.softpress.com/>, as there isn't an Action for it in Freeway currently.
As I mentioned before,we can't offer this Action as an option anymore because it's impossible for us to make it consistent across all browsers and platforms. Because of this, you will most likely need to use custom coding to get a custom scrolling effect, and FreewayTalk would probably be the best place to start looking for that code.
Lisa Salazar
I cannot get this set of action to work. The instructions are clear enough and the process straight forward, but it does not result in scrollable text.
There is one confusing note in the description of what this action does, something to the effect that this action will not work with a layer that have a plug-in content. Please give a for instance or explain what that means.
Has anybody gotten these action to work?
David McCallum
Note that with the release of FW6 this action is currently unusable. Hopefully SP will have a fix soon.
Softpress Support
All up-to-date for 6. Sorry for the delay.
Newton La Scaleia
Is this action usable with FW7?
Peter Kotz
Hello i tried in FW7 and nothing is happened. Is their anybody inside who can explain how it will function.
Softpress Support
Hi all,
Apologies about the issues with this Action, but we aren't going to be updating this one because it isn't possible for us to make it work consistently across all browsers and platforms.
If you are looking to make a scrollable HTML item, then you can do so in Freeway by letting the contents of a HTML item overflow, then in the first tab of the Inspector (in the general section), change the 'Overflow' option to 'Scrollable' (remember that the HTML items height will need to be set to 'fixed').
Peter Kotz
Hi softpress support,
ok that´s the regular way to make it scrollable, but what is to do this with an own custom-scroller effect like walter davis is shown in the year 2009 with the code: (see follow) placed in protacolarus. Now protacularus isn´t working and protacularus2 do not work with what i am write in the custom code: How can i make an working own scroll slider ????????????
var s = new Control.Slider('thumb','track', {axis:'vertical'}); var f = function(value){ var inner = $('innerDiv'); //change innerDiv to whatever your inner box is called var h = (inner.getHeight() - inner.up('div').getHeight()); inner.style.top = (Math.round(value * h) * -1) + 'px'; } s.options.onChange = function(value){ f(value); }; s.options.onSlide = function(value){ f(value); };
Softpress Support
Hi Peter,
If you want to make a custom scrolling effect, it would probably be best if you ask on FreewayTalk <https://freewaytalk.softpress.com/>, as there isn't an Action for it in Freeway currently.
As I mentioned before,we can't offer this Action as an option anymore because it's impossible for us to make it consistent across all browsers and platforms. Because of this, you will most likely need to use custom coding to get a custom scrolling effect, and FreewayTalk would probably be the best place to start looking for that code.
Sign In or to comment.