Need to increase the stage above 10000 px

Hi all!
I have a problem, i'm doing a parallax website like this: http://www.iutopi.com/
And i have discovered that adobe edge only let me use 10000 pixels for the web...so...i need to increase the stage above 10000 px.
It`s very important to me to solved this ******** please.
Thank you so much!!

Hello Alberto !
Be happy, you can increase the limit of 10000px.
You can't do that on the Stage directly but the height limit of a Symbol is not restricted.
The only problem is the Parallax. You have to implement some code on the stage to ("Composition Ready") make the timeline of the symbol active for Parallax :
var timerScroll = setInterval(function() {
  sym.scrubTimelineScroll();
}, 50);
sym.onClick = function()
{    console.log('onClick');
    sym.$("Symbolname").animate({scrollTop:500},750);
sym.scrubTimelineScroll = function()
  var myCalc = sym.$("Symbolname").scrollTop()/sym.$("Symbolname")[0].scrollHeight;
  var pos = Math.round( myCalc * sym.getSymbol('Symbolname').getDuration() );
  sym.getSymbol('Symbolname').stop(pos);
Hope that help !!!
And a special Thanks to TimJaramillo who gave me this code !
Sorry for my bad english

Similar Messages

  • Need to Increase the Font Size of a screen field in a Dialog Screen ?

    Hi ppl,
    I have a requirement wherein i need to increase the font size of one field on a dialog screen .
    i was going through the threads and found this which has beautiful example given by vijay
    Increase text size in Screen
    But I'm facing a problem in implementing it since the value in the field (of which the font size needs to be increased) depends on a nother field filled by user at runtime only.
    Can anyone gimme some suggestions or alternative way to solve my problem
    Thanks
    Sachin Soni

    Hi Sachin,
    There is not way to change the font style.
    But you can add ur own text through icons or graphics.
    Create your own graphics or icons and include it in ur module pool.
    Or,
    Goto the Layout Editor of your Screen.
    Double click on the text field .. Double clk the text fild, and from the Botton right u can see an arrow icon -> click on that -> will open a Popup -> in that set Area Title to TRUE.
    Hope this solves your problem.
    Thanks & Regards,
    Tarun Gambhir

  • HT1535 When I plug my ipad into the computer to sync a message pops up saying it can not sync because there is not enough memory in the itunes library. Do I need to increase the memory in my itunes library and how?

    When I plug my ipad into the computer to sync a message pops up saying that the ipad can not sync because there is not enough memory on the itunes library. Do I need to increase the itunes library memory and how do I do this, or do I just need to trasnfer things out of itunes? Thanks.

    Try
    iOS: Device not recognized in iTunes for Windows
    I would start with              
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or              
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    Before you reinstall the Apple software, also remove iCloud vi Control Panel Remove programs. The reinstall the Apple programs
    New cable and different USB port?
    Runs this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Try on another computer to help determine if computer or iPod problem

  • I have highlighted words in an .iba file. Now I need to increase the space before (and/or after) the paragraph it's contained in. If I increase the space after, the height of the highlighting increases also. Is there any way around this?

    I have highlighted words in an .iba file. Now I need to increase the space before (and/or after) the paragraph it's contained in. If I increase the space after, the height of the highlighting increases also. Is there any way around this?

    http://www.apple.com/feedback/kaywerty wrote:
    A rather long winded way of asking if anybody knows if it's possible to have multi-windows open
    It's not possible.
    Suggestions here -> Apple Product feedback

  • I need to increase the number of authorizations for my Adobe ID.

    I need Adobe to increase the number of authorizations for my Adobe ID, but I cannot get in contact with them.

    Hello,
    contrary to kglad's hint I think it makes more sense to use this:
    https://helpx.adobe.com/x-productkb/global/find-serial-number.html#adobeproductdownload   >>> I lost my serial number or downloaded a product from Adobe.com >>> Find your serial number on Adobe.com
    Hans-Günter

  • Need to increase the font size of SAP printer

    Hi all,
    We had some new HP printers HP4015 which needs to print from SAP . we created the new device type ZHPLJCM1 after checking correct device type for it from HP printer site. For some users printouts are coming in small fonts ,they wanted it to print in big fonts .
    These are some of the  t codes  that they use KAH3 , FB03 , Y_DEV_39000067.
    we tried to change the printer fonts in SE73 of that particular device type and increased the font size , but that also ended in vain.
    Kindly suggest possible ways by which we can solve this issue.
    Please let me know if more information are needed.

    Hi,
    Is this ABAP lists, sapcript or smartforms? For sapscript or smartforms, you need to specify the font size in the paragraph/character formats for sapscript and in the smartstyle for smartforms.
    For ABAP lists, the font size is selected based on the format used. e.g. If you create a list with format X_65_255, it should print in landscape and the font size is calculated based on the size needed to fit 255 characters into a page. If the format is X_65_132, then the font size is calculated based on the size needed to fit 132 characters into a page so it is a bit larger.
    Regards,
    Aidan

  • I need help increasing the stack/heap size of my JVM

    I am currently trying to run a recursive quick sort program to sort a reverse sorted array of 60,000. I realize this takes up a lot of memory and may not be the most efficient form of quick sort but I need to get some information from this program run. Everytime i try to run the program I get a stack overflow error. From what I have read on these forums this is due to an inadequate stack/heap. I have read that you just type a line of code in when you start up your JVM to increase the stack/heap but how exactly do you do this? Could someone give me a step by step process? I am new at this so the more details the better. Thanks!

    public static void quickSort(int f, int l){
         if (f < l){
              int m = split(f,l);
              quickSort(f, m-1);
              quickSort(m+1, l);
    public static int split(int f, int l){
         int x = a[f];
         int sp = f;
         for (int i=f+1; i<=l; i++){
              if(a[i] <= x){
                 sp++;
                 swap(i,sp);
         swap(f,sp);
         return sp;               
    // A method to swap values of an array
    public static void swap(int i, int j){
         int temp = a;
         a[i] = a [j];
         a[j] = temp;     
    }Haven't really looked at the code, but basically you'd have a source of randomness (an instance of Random for example) and choose x like this instead:private static Random random = new Random();
    public static int split(int f, int l){
         int x = a[random.nextInt(l-f) + f]; //but check for one-off errors here, I haven't checked this

  • How can i increase the stage height beyond 10000 px?

    Im trying to build a long scrolling page and i need more than a 10000 px stage but edge only allows me a 10000px max height. How can i create a longer page and are their performance issues with a stage that size?

    Here is the link to what i have so far. I was able to solve some problems along the road. I am dynamically placing individual pics next to each other in respond to windows resize. Main Div wraps all the images and its width is equal the sum of all widths. Stage width is 1024. My current problems are:
    1 - Although I was able to activate the scroll bar, Swiping is not available on touch devices. I thought scroll bars automatically respond to user swipes
    2 - I cant get rid of the vertical scroll bar. I tried to set the css value of  overflowY: "hidden". It throws a syntax error when I type it as overflow-Y. I am interested to calculate the scroll height and correct my div-height though.
    3 - In Firefox I get 2 vertical scroll bars
    Field Recordings

  • Need to increase the length of radiobutton label text

    Hi All,
    I have a requirement wherein i need to make a selection screen with radiobuttons. The text that i need to put with radiobuttons as label is about 120 chars. But it is giving me an error that the text could not be more than 79 chars.
    Is there any way i can increase this length, so that i can write a text (as radiobutton label) of about 120 chars in a single line?
    Thanks in advance...

    Hi
    do like this..
    SELECTION-SCREEN BEGIN OF line.
    PARAMETERS rb_nil RADIOBUTTON GROUP gupd.
    SELECTION-SCREEN COMMENT 3(42) comm MODIF ID mod.  "text-com.
    SELECTION-SCREEN end of LINE.
    think you can give till 60 and above...

  • Need to Increase the width of the selection screen

    Existing scenario is that the selection screen contains 4 parameters in a row and
    it has to be increased to 6.When i try to include the 2 parameters on the same row it
    says that the max width is 79.I can try and reduce the width of each parameter but it
    still cannot accomodate the 2 new parameters.
    Can someone please give me some tips on how to go about it.

    Hi Naveen,
    SAP has 80 columns max for display on the screen.
    if u want to accomadate more than six parameter the reduce the visible length.
    example.
    SELECTION-SCREEN : BEGIN OF LINE.
    PARAMETERS : p_reg1 TYPE char20 VISIBLE LENGTH 12.
    PARAMETERS : p_reg2 TYPE char20 VISIBLE LENGTH 12.
    PARAMETERS : p_reg3 TYPE char20 VISIBLE LENGTH 12.
    PARAMETERS : p_reg4 TYPE char20 VISIBLE LENGTH 12.
    PARAMETERS : p_reg5 TYPE char20 VISIBLE LENGTH 12.
    PARAMETERS : p_reg6 TYPE char20 VISIBLE LENGTH 12.
    SELECTION-SCREEN :  END OF LINE.
    also see to it that u dont cross the limit of 80 columns
    while writting the comments
    example
    SELECTION-SCREEN : <b>COMMENT 4(10)</b> text-006,
                     : POSITION 35.
    PARAMETERS       : p_sumrep RADIOBUTTON GROUP rad1 .
    SELECTION-SCREEN : <b>COMMENT 38(10</b>) text-048,
    <b>Please Reward Points & Mark Helpful Answers</b>
    To mark Helpful Answers ;click radio Button next to the post.
    RadioButtons
    <b>o</b> Helpful Answer
    <b>o</b> Very helpful Answer
    <b>o</b> Problem Solved.
    Click any of the above button next to the post; as per the anwers
    <b>To close the thread; Click Probelm solved Radio Button next to the post , which u feel is best possible answers</b>

  • I need to increase the point size in a form to more than 18pt.

    I have a PDF that needs to be edited continuely (Prices for a shop table) I am creating a form feild, but it seems that the point size can only be increased to 18pt. This is simply too small.
    Any suggestions would be fantastic.

    I just resolved this. You can just type the font size in the drop down box...I know.

  • HT3986 I initially alotted 20gb for the windows 7 operaig system, as I install additional PC based programs (just a few), will i need to increase the size of the 20 GB partition, or is this done automatically by the system?

    I initally alotted 20GB for a Windows 7 operating system using Boot Camp. As I intend to add a few more PC based programs will the size if the partition that I set up be expanded, or is this something I need to do manually.  Or is the sapce required by the programs and thier data based sit out side of the 20 B partition that I choose in the Boot Camp set-up process?

    20G is far too small (think minimum 60G) and it will not automatically resize.
    Either remove it now and make a larger space or purchase Paragon Camptune, you can resize the installation safely with it.

  • I upgraded the OS system on my 2011 mac mini.  It now runs very slow.  Do I need to increase the ram.  I only have 2 GB now.

    My 2011 mac mini now runs very slow.  I have to wait on it to do basic things.  I only have 2 GB of ram.  It came with this amount and it fan fine for several years.  But I upgraded to the most recent Os system and now it runs slow.  What do I need?  More RAM?

    murphygay wrote:
    I will upgrade to 8GB. Thanks for the advice.  Also have an older (2009) 24" IMAC and it also runs slow with the upgrade. It has 4 GB. I think I will replace it with a brand new 21 or 27 inch.  Thanks for the response.
    Bill
    That's one way to justify a new Mac. :-)  Adding more RAM to the 2009 model is cheaper, though (but I'm guessing not as much fun).

  • I need to increase the sizes of all interfaces due to disability, how do I do it?

    I've spent ages looking but haven't found an option to increase all the user interface text sizes, icons etc. 

    Apart from mooblie's suggestion, another approach is to go to System Preferences, click on Accessibility, and then enable and configure the zoom options.
    In some cases you cannot simply reduce the resolution as per mooblie's suggestion as some applications will onlu run with a minimum size resolution for example Apple's Workgroup Manager tool for use with their server will not run at lower resolutions. The zoom option does not suffer this problem.

  • I need to increase the sample rate to 50KHz to allow for arc detection

    In an effort to get our arc detection software running we need to
    capture data with a sampling rate greater than 10kHz. Would setting the 'samples per cycle'
    to 512 (as opposed to 192) would allow us to use your re-sampled data at the
    RT-Controller (permitting us to use the FPGA VI un-altered) at a sample rate greater than 50KHz?

    The number of samples per cycle can be specified from 128 to 512 without having to recompiling the FPGA VI. But even with 512 samples per cycle, the sampling rate after resampling is about 512*50 or 512*60, still less than 50k Hz.
    Could that meet your arc detection requirement?

Maybe you are looking for

  • After Effects CS6 - render files huge!

    Ok I am tying myself in knots here. I have a 7 second text animation on a plain background in After Effects CS6 which I want to export so I can use it in Premiere Pro CS6 withan alpha channel so i can superimpose it over video. The file is 1080P 25 b

  • I can't get beyond Creative Cloud Installer...can't download LR or PS.

    I have the CC monthly subscription. I got Creative Cloud installer installed but can't download LR or PS. Creative Cloud shows up as a file in Applications. Acrobat is installed. I've been on hold for 3 hrs 9 min 54 seconds.  Please help!

  • Why my simple vector file is so big

    Hello, i have many simple vector files, created in CS6 that are over 15MB. i had deleted all swatches, brushes and symbols. I jusc cant figure out why those files are so big heres an example: and the .ai file weight is 17,1 MB link to the file: http:

  • PPPoE not disconnecting?

    Although we have our new AEBS set to "Disconnect if Idle" at 15 minutes, it does not seem to do so. I can shut down all computers, come back in 12 hours, and we are still using the same IP address that we were using before the shutdown. Further, the

  • Powerbook g4 shuts down unexpectedly

    I have had my computer for a year now. (bought used from a friend) I recently had to buy a new hard drive. After that, I had to install Leopard as the operating system. (I dont know correct terms, sorry!) It worked fine for a while, but now it will j