Can we increase size of launch pad dots

We're teaching seniors how to use Mac OS X.  We've already increased the size of the cusor (either Accessibility or Universal Access depending on whether you have Lion or Mountain Lion) so now the seniors aren't having too much of a problem finding their mouse pointer.
However, when we go to Launch Pad, where we have two screens of applications, many of them can't reach the second screen.  Normally, the tip of the mouse pointer arrow is the "active" part of the pointer but not when you've increased the size of the pointer. The dots on the Launch Pad screen are so small, many of our seniors haven't been able to find the correct location to have the arrow on the dot in order to display the second screen, or to get back to the first screen if they're lucky enough to get to the second screen.
We're now resorting to having them use the keyboard shortcuts because using the mouse just isn't time effective and it's frustrating to the seniors. Is there an option that we haven't been able to find which would allow us to increase the size of those dots so it would be easier for our seniors to click on them?
Now, I know someone is going to respond about using the two finger swipe on either the Magic Mouse or the Magic Trackpad.  We're a SeniorNet Computer Learning Center so we teach both Windows and Apple classes.  We're using Mac minis and Windows style mice and keyboards.  We can't afford to buy either the Magic Mouse of the Magic Trackpad for our Apple systems.
Tom Adams (SeniorNet volunteer)

Thx for replying Lars... but dont I have any other option besides using Affine transform for each sprite.. it will make my code little clumsy..
It must be possible to zoom whole JPanel in someway!!
I have many sprites.. want to put sprites together in 128*128 pixels only in reality.. so that I can save its location data for mobile games..
but when making animation I can able to zoom JPanel so that I can look where i am putting sprites..
Please if somebody know it.. tell me how to do it!!.. or any other alternative!!
I am stucked in my project bcoz of that..
gervini

Similar Messages

  • Can I increase size of Note Icon?

    Hi, I've just got a new computer which has Acrobat 7.0.9 on it. When I add a comment to a large image (e.g. 30 x 40 inches) the note icon is very tiny and hard to notice. On my old computer which also had Acrobat 7 (not sure which exact version) the note icon looked as large on a large image as it did on an 8.5 x 11 inch page.
    Can I increase the size of the note icon? Looking at the properties, it seems I can only change the colour and opacity. I'm not sure why the size of the icon has decreased - maybe it's because I have a more updated version of Acrobat?
    Cindy

    Hello All,
    Again, please remember that modification of the B1 tables is not supported in any way. There are too many possible consequences for this action (upgrade failure, subsequent data processing, data loss, loss of support to name a few)
    Should anyone see this type of request in the forums please adice strongly against; thanks to those already who have replied.
    Regards,
    Paul

  • How can i increase size of applet

    when i run my form in windows my applet don't visible full .how can change the size of applet.what property i have to set.i forget that property.

    are you using an application server or the local OC4J container?
    In both cases the height and width of your applet can be set in the formsweb.cfg file.
    you can find this file under <oracle_home>/forms/server directory
    search in the file for with and height
    you can put a fixed size in pixels or in percentage of your screen resolution
    hope it helps
    Erwin

  • Oracle 11.2 default instance volume is 50 GiB - How can I increase size?

    Hi,
    I created an ebs Oracle 11.2 instance that defaulted to a volume size of 50GiB.
    Does anyone know how to increase the volume size to 300GiB?
    This didn't work:
    I created another volume (300Gib), attached it to the instance, mounted the drive, but when I ran the Oracle install script - that drive didn't show up:
    Select a disk device to store your datafiles and redo logs on:
    ID DEVICE_NAME
    [0] Refresh List
    [1] Use Default
    [2] /dev/sdc1
    Thanks.

    I didnt have any luck with the scripts it comes with the AMI so I just cut and paste of what I need heres the script I use.
    You can mount the 300G to /u02 or whatever you want
    and change the ORACLE_SID to <YOUR_SID_NAME>
    Also you have to run it as user oracle instead of Root
    and make sure that the ORACLE_HOME is correct
    ORACLE_SID=<YOUR_SID_NAME>
    SID=${ORACLE_SID}
    GLOBAL_NAME=${SID}
    SYS_PWD=s
    SYSTEM_PWD=s
    DBSNMP_PWD=s
    SYSMAN_PWD=s
    DBF_MOUNT=/u02
    FRA_MOUNT=/u02
    ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1
    DBCA_TEMPLATE_DIR=${ORACLE_HOME}/assistants/dbca/templates
    DBCA_TEMPLATE_NAME=${DBCA_TEMPLATE_DIR}/General_Purpose.dbc
    ORACLE_OWNER=oracle
    DBCA=${ORACLE_HOME}/bin/dbca
    SQLPLUS=${ORACLE_HOME}/bin/sqlplus
    EMCTL=${ORACLE_HOME}/bin/emctl
    DB_FILE_DIR=${DBF_MOUNT}/oradata
    RECO_AREA=${FRA_MOUNT}/flash_recovery_area
    CHARSET=AL32UTF8
    export ORACLE_SID=${SID}
    mkdir -p ${DBF_MOUNT}/admin/${ORACLE_SID}
    mkdir -p ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs
    mkdir -p ${DBF_MOUNT}/admin/${ORACLE_SID}/adump
    export EMKEY_LOCATION=${DBF_MOUNT}/admin/${ORACLE_SID}/dbs
    echo
    echo "Please wait while your database is created..."
    echo
    ${DBCA} -silent -createDatabase -templateName ${DBCA_TEMPLATE_NAME} -gdbName ${GLOBAL_NAME} -sid ${SID} -sysPassword ${SYS_PWD} -systemPassword ${SYSTEM_PWD} -dbsnmpPassword ${DBSNMP_PWD} -sysmanPassword ${SYSMAN_PWD} -emConfiguration LOCAL -storageType FS -datafileJarLocation ${DBCA_TEMPLATE_DIR} -sampleSchema true -datafileDestination ${DB_FILE_DIR} -recoveryAreaDestination ${RECO_AREA} -characterSet AL32UTF8
    RV=$?
    if [ $RV -ne 0 ]
    then
    echo
    echo "There was a problem creating your database.  Please review the log file shown above."
    else
    ${EMCTL} stop dbconsole
    ${SQLPLUS} /nolog << EOF
    ${SQLPLUS} /nolog << EOF
    connect / as sysdba
    alter system set audit_file_dest='${DBF_MOUNT}/admin/${ORACLE_SID}/adump' scope=spfile;
    EXEC DBMS_XDB.SETHTTPPORT(8080);
    ALTER USER anonymous ACCOUNT UNLOCK
    @${ORACLE_HOME}/apex/.apxxepwd_custom.sql ${APEX_PWD}
    shutdown immediate
    exit
    EOF
    mv $ORACLE_HOME/dbs/spfile${ORACLE_SID}.ora ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs/.
    mv $ORACLE_HOME/dbs/orapw${ORACLE_SID} ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs/.
    ln -s ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs/spfile${ORACLE_SID}.ora ${ORACLE_HOME}/dbs/.
    ln -s ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs/orapw${ORACLE_SID} ${ORACLE_HOME}/dbs/.
    ${SQLPLUS} /nolog << EOF
    connect / as sysdba
    startup mount
    alter database archivelog;
    alter database open;
    exit
    EOF
    ${SQLPLUS} /nolog << EOF
    connect sysman/${SYSMAN_PWD}
    @/home/oracle/scripts/osbws/submit_osb_cloud_backup.pls
    exit
    EOF
    ${EMCTL} start dbconsole
    echo
    grep ORACLE_SID /home/oracle/.bash_profile > /dev/null 2>&1
    if [ $? -eq 0 ]
    then
    echo "Not adding ORACLE_SID=${SID} to /home/oracle/.bash_profile"
    echo "because ORACLE_SID is already set in that file."
    else
    echo "Adding ORACLE_SID=${SID} to /home/oracle/.bash_profile"
    echo "export ORACLE_SID=${SID}" >> /home/oracle/.bash_profile
    fi
    OH="\/u01\/app\/oracle\/product\/11.2.0\/db_1"
    cp /etc/oratab /tmp/oratab.bak
    sed "s/${ORACLE_SID}:${OH}:N/${ORACLE_SID}:${OH}:Y/" /tmp/oratab.bak > /etc/oratab
    echo
    echo "The database was created successfully."
    fi
    echo
    echo
    /home/oracle/scripts/setup_osbws.sh
    echo
    echo "You can connect to your database as follows:"
    echo
    echo "Command Line: sqlplus sys/<your-password> as sysdba"
    echo "Enterprise Manager Database Console: https://${ORACLE_HOSTNAME}:<port number>/em e.g. https://${ORACLE_HOSTNAME}:1158/em"
    echo "Oracle Application Express (APEX): http://${ORACLE_HOSTNAME}:<port number>/apex e.g. http://${ORACLE_HOSTNAME}:8080/apex"
    echo "Actual ports numbers can be found in ${ORACLE_HOME}/install/portlist.ini file. If this is the first database being created on this machine, the above example URLs should work."
    echo
    echo "Thank You for choosing Oracle Database on EC2."Edited by: vxwo0owxv on May 11, 2011 1:01 PM

  • How can you increase size of iweb photo album?

    In iWeb albums there seems to be a maximum of 500 photos or 5 pages.  Can you add more than 500 photos to the same album?  How?

    are you using an application server or the local OC4J container?
    In both cases the height and width of your applet can be set in the formsweb.cfg file.
    you can find this file under <oracle_home>/forms/server directory
    search in the file for with and height
    you can put a fixed size in pixels or in percentage of your screen resolution
    hope it helps
    Erwin

  • When placing icons on the menu bar, I can not increase size to large icons. I can make icons larger when putting icons on other bars below menu bar. Never had this problem with any earlier version of FF

    This happens with all icon themes including default. I like having the large icons on the menu bar so hopefully this can be fixed.

    NO way.
    Mylenium

  • HT202159 I have been on to apps store logged in and gone on my purchurse to try and re down load Mountin Lion however it just states an error as accord I can't get it to re down load to launch pad in lion

    I have been on to apps store logged in and gone on my purchurse to try and re down load Mountin Lion however it just states an error as accord I can't get it to re down load to launch pad in lion

    1. You did not get an error message telling you that your iPhoto library was getting full. You got a message telling you that your HD was getting full, right?
    OS X needs about 10 gigs of hard drive space for normal OS operations - things like virtual memory, temporary files and so on.
    Without this space your Mac will slow down as the OS hunts for space on the disk, files will be fragmented, also slowing things down, apps will crash and the risk of data corruption - that is damage to your files, photos, music - increases exponentially.
    Your first priority is to make more space on that HD. Nothing else can be done until you do.
    Purchase an external HD and move your Photos and Music to it. Both iPhoto and iTunes can run perfectly well with the Library on an external disk.
    Your Library has been damaged from being run on an overfull disk.
    How much free space on it now?

  • BI Launch Pad Home page error - Servlet Engine Exception: Index: 0, Size: 0

    Hi,
    I am encountering below error when I click on 'Home' button under BI launch Pad in BO BI 4.1 (Operating system - Linux, SP2) but able to log in successfully and can able to run the reports successfully. But the same when I tried with 'Administrator' account I am not seeing any issues and when I tries to login with User Account below error is throwing.
    Please find the attachment.
    I tried to restart the Tomcat but no luck.
    Need your help in order to trouble shoot the issue.
    =======================================================================================================
    Servlet Engine Exception: Index: 0, Size: 0
    URL: /BOE/portal/1405150358/PerformanceManagement/scripts/tools/err_page.jsp?cafWebSesInit=true&bttoken=MDAwRG5GSzldTDA8YVVVaGVgWjFIPE5aXz8ybEhUOzAEQ&bttoken=MDAwRG5GSzldTDA8YVVVaGVgWjFIPE5aXz8ybEhUOzAEQ&actId=3241&pvl=en_US&service=%2FInfoView%2Fcommon%2FappService.do&loc=en&objIds=0&appKind=InfoView&pref=pref%3DmaxOpageUt%253D200%253BmaxOpageC%253D10%253Btz%253DUS%252FPacific-New%253BmUnit%253Dinch%253BshowFilters%253Dtrue%253BsmtpFrom%253Dtrue%253BpromptForUnsavedData%253Dtrue%253B&homeDashboard=true
    StackTrace:
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
        at java.util.ArrayList.RangeCheck(ArrayList.java:547)
        at java.util.ArrayList.get(ArrayList.java:322)
        at com.crystaldecisions.sdk.occa.infostore.internal.InfoObjects.get(InfoObjects.java:754)
        at com.bo.aa.storefile.FileUtility.getApplicationBackgroundData(FileUtility.java:201)
        at org.apache.jsp.jsp.dmdashboard_jsp._jspService(dmdashboard_jsp.java:890)
        at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
        at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:388)
        at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
        at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
        at org.eclipse.equinox.jsp.jasper.JspServlet.service(JspServlet.java:121)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
        at com.businessobjects.http.servlet.internal.ServletRegistration.service(ServletRegistration.java:110)
        at com.businessobjects.http.servlet.internal.ServletLastFilterChainElement.service(ServletLastFilterChainElement.java:30)
        at com.businessobjects.http.servlet.internal.filter.FilterChainImpl.doFilter(FilterChainImpl.java:46)
        at com.businessobjects.http.servlet.internal.BundlePathAwareServiceHandler.serviceHelper(BundlePathAwareServiceHandler.java:235)
        at com.businessobjects.http.servlet.internal.BundlePathAwareServiceHandler.service(BundlePathAwareServiceHandler.java:197)
        at com.businessobjects.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:248)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
        at org.eclipse.equinox.servletbridge.BridgeServlet.service(BridgeServlet.java:220)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
        at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:749)
        at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:487)
        at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:412)
        at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:339)
        at com.businessobjects.http.servlet.internal.servlet.RequestDispatcherAdaptor.forward(RequestDispatcherAdaptor.java:31)
        at org.apache.struts.action.ActionServlet.processActionForward(ActionServlet.java:1759)
        at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1596)
        at com.businessobjects.webutil.struts.CrystalUTF8InputActionServlet.process(CrystalUTF8InputActionServlet.java:21)
        at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:492)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:621)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
        at com.businessobjects.http.servlet.internal.ServletRegistration.service(ServletRegistration.java:110)
        at com.businessobjects.http.servlet.internal.ServletLastFilterChainElement.service(ServletLastFilterChainElement.java:30)
        at com.businessobjects.http.servlet.internal.filter.FilterChainImpl.doFilter(FilterChainImpl.java:46)
        at com.businessobjects.bip.core.web.boetrustguard.BOETrustPrepareFilter.doFilter(BOETrustPrepareFilter.java:35)
        at com.businessobjects.http.servlet.internal.FilterRegistration.doFilter(FilterRegistration.java:72)
        at com.businessobjects.http.servlet.internal.filter.FilterChainImpl.doFilter(FilterChainImpl.java:43)
        at com.businessobjects.bip.core.web.supportabilty.TraceLogScopeFilter.doFilter(TraceLogScopeFilter.java:38)
        at com.businessobjects.http.servlet.internal.FilterRegistration.doFilter(FilterRegistration.java:72)
        at com.businessobjects.http.servlet.internal.filter.FilterChainImpl.doFilter(FilterChainImpl.java:43)
        at com.businessobjects.sdk.actionfilter.WorkflowFilter.doFilter(WorkflowFilter.java:45)
        at com.businessobjects.http.servlet.internal.FilterRegistration.doFilter(FilterRegistration.java:72)
        at com.businessobjects.http.servlet.internal.filter.FilterChainImpl.doFilter(FilterChainImpl.java:43)
        at com.businessobjects.bip.core.web.appcontext.RequestInitFilter.doFilter(RequestInitFilter.java:26)
        at com.businessobjects.http.servlet.internal.FilterRegistration.doFilter(FilterRegistration.java:72)
        at com.businessobjects.http.servlet.internal.filter.FilterChainImpl.doFilter(FilterChainImpl.java:43)
        at com.businessobjects.http.servlet.internal.BundlePathAwareServiceHandler.serviceHelper(BundlePathAwareServiceHandler.java:235)
        at com.businessobjects.http.servlet.internal.BundlePathAwareServiceHandler.service(BundlePathAwareServiceHandler.java:197)
        at com.businessobjects.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:248)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
        at org.eclipse.equinox.servletbridge.BridgeServlet.service(BridgeServlet.java:220)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
        at com.businessobjects.pinger.TimeoutManagerFilter.doFilter(TimeoutManagerFilter.java:168)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123)
        at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407)
        at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1002)
        at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:585)
        at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
        at java.lang.Thread.run(Thread.java:743)

    Hi Ganesh,
    The issue seems to be related to user security in BI 4.1. It looks like a known bug in some scenarios and has been resolved in BI 4.1 SP03
    Please refer below SAP KBA and confirm the workflow as well as BI 4.1 product version.
    1931237 - StackTrace displayed on BI Launchpad home page
    Regards,
    Hrishikesh

  • Bought a mac for my sons bday present of eBay :( it starts up in osx utilities screen, iv never seen the actual desktop(launch pad) I dnt know how to access the systemI know the basics for start up but says to delete files so I can dwnload the software?

    AS above states the computer seems to run normally as far as turning it on, tabs & pages are fine. But I can't access the system to delete some files.. Which is what the 'error' keeps saying everytime I tr and download a helpful link/app or software.. The instal disc that seems to be stored on the comp says its mountain lion 10.8 install disk 'read only' & this is the only disc it gives me to select to startup.. I have the full software on USB as its very large.. So .. PLEASE TELL ME finally, 
    HOW to ... Access comp files to delete required memory for software install?? If this is the best option..
    HOW to ... Erase everything on computer & install 10.8 via USB?
    And when or what enables me to see and use this computer correctly..ie, launch pad? Etc..
    PLease reply back in 'normal terms' as I'm already exceeding my boundaries of imac knowledge

    First: no, you cannot use someone else's install DVD unless it is a retail version; all others are machine specific. It will not work and would be illegal.
    Is this what you bought?
    http://www.everymac.com/systems/apple/imac/specs/imac_cd_2.0_20.html
    IF that is correct, then you are not on 10.8 because the highest OS it can go to would be 10.6
    So, you'd either need the original install disks (preferred) or buy a retail Snow Leopard (10.6) - that is as high as you can go with that machine. And, your maximum RAM is 2 GB, so you couldn't go higher with the OS because of that either because it would not run well on 2 GB.
    If you do get 10.6, then I'd suggest increasing the RAM to the max. of 2 GB.
    If this is not the machine you got (maybe the seller just used any old box), then I'd suggest taking it to an Apple store/Genius Bar to have them sort out how to get out of this mess.

  • How can I increase the font size of my email when I print it out, it is printing tiny

    How can I increase the font size when I print out emails, it is printing tiny size?

    In the Print dialog window, click the small reveal-button to the right of the printer's name -
    The window will expand to show additional settings (similar to 'old' Page Setup) -
    Be sure "Scale:" is set to 100% and the 'Keep apparent font size' item is checked.

  • How can I increase the size of the bootcamp partition without having to delete or re-install windows? using a macbook pro (15-inch) 10.9.4.

    I'm using a macbook pro (late 2013 with mavericks-10.9.4 ). I installed windows using bootcamp but didn't estimate the storage I required correctly. So now I don't have enough storage in the bootcamp hard drive.
    How can I increase the Partition size between windows and mac without having to delete or re-install windows?
    Thanks,
    Advek

    Check out this explanation.

  • HT4863 How can I increase the file size limit for outgoing mail. I need to send a file that is 50MB?

    How can I increase the file size limit for outgoing mail. I need to send a file that is 50MB?

    You can't change it, and I suspect few email providers would allow a file that big.  Consider uploading it to a service like Dropbox, then email the link allowing the recipient to download it.

  • How can we increase the font size in Adobe Bridge CC 2014?

    How can we increase the font size in Adobe Bridge CC 2014?
    We use Windows 7 64bit computers and Dell High Density UltraSharp UP2414Q monitors with a resolution of 3840 x 2160.
    Other applications in Adobe CC 2014 work fine with this high resolution (Indesign, Photoshop) but I can't find where to adjust font size in Bridge.
    Right now menu items are hardly ledgible.

    Same problem.  Bridge is unusable with this micro font and no way to change it.
    I would call tech support but I don't feel like being on hold for two hours to talk to someone Adobe pays pennies a day in a loud call center who won't be able to help anyway. Fail.

  • Why can't Max Size of Post Data be increased?

    We need to do a CFFILE upload of 1 – 3 GB videos and are having troubles.
    (I know this is crazy, but FTP, network mapped drives, etc. aren’t going to leave an audit trail like an HTML form will for when people have to upload/update/delete bus incident videos.)
    I can't increase the Max size of post data to even 2048MB without people getting "500" errors who are trying to upload small gifs or pdfs.  If I move it above 2047MB, no one can upload anything.
    Our setup:
    CF Enterprise 8.0.1 with Hot Fix 2
    2 - Win Servers 2003 R2 Enterprise x64 using replication, load balancing, and MS virtual machine.
    CF is clustered so the Java class paths begin with
    C:/JRun4/servers/HSWSD0C1O/cfusion.ear/cfusion.war/WEB-INF/...
    CF Admin settings:
    Max size of post data = 2047MB
    Request throttle threshold = 4MB
    Request Throttle Memory = 3072MB
    Setting of 10 simultaneous requests.
    Restarted CF services after Hotfix 2 install.
    On the Application.cfm page I put
      applicationtimeout="#CreateTimeSpan(0,4,0,0)#"
    Basic code for uploading:
    <!--- upload file and get results --->
       <cffile action="upload"
          filefield="file"
          destination="#fileDirectory#"
          nameconflict="error"
          result="uploadResult">
    This code works for small files IF I don't raise the max size of post data above 2047MB, which means we'll never get those videos up.
    I've been fighting with this for weeks.  Any ideas?
    Thanks!

    First thought is that Web Servers can impose their own upload throttles.  You should check the documentation of your web server as well.
    Secondly
    I know this is crazy, but FTP, network mapped drives, etc. aren’t going
    to leave an audit trail like an HTML form will for when people have to
    upload/update/delete bus incident videos
    What wouldn't FTP leave an audit trail?  FTP communication can leave just as much, if not more, of an audit trail as HTTP communications.
    Network mapped drives, I'm not so sure about, but I imagine there are ways to audit these as well.  But then if you can use network mapped drives, you must be working with a well defined set of users all of which belong to a well defined network domain.
    P.S.  Also make sure that the max post size limits fit inside the overall limits of jvm memory.  Trying to upload a file larger then the memory it can fit in sounds like a likely source of problems.

  • HT5548 I upgraded one of my programs and now the old and new both appear on launch pad, and I can't delete the old one.  Is there a way I can do that?

    I upgraded one of my programs and now the icons for both old and new appear on the launch pad.  I don't need or want the old version to display, as it's been imported into the new one.  I can't seem to figure out how to edit it off the launch pad.

    Hi there,
    More then likely, the old version was installed independently from the App Store. The article below goes over the process for removing these application.
    OS X Lion: Install, update, and uninstall apps
    http://support.apple.com/kb/ph4524
    To uninstall other apps, drag the app to the Trash (the Trash is located at the end of the Dock), and then choose Finder > Empty Trash.If you change your mind, before emptying the Trash, select the app in the Trash, and then choose File > Put Back.Warning: When you empty the Trash, the app is permanently removed from your computer. If you have any files that you created with the app, you may not be able to open them.
    Hope that helps,
    Griff W.

Maybe you are looking for

  • Address book model is not respected when I add new fields

    Hello, If I add new fields in the model of my adress book. AddressBook display does not comply with the specified model. For example, after father, mother and joint, I added the following fields child 1, grand-child 1, child 2, grand-child 2, child 3

  • Address book does not sort correctly

    I have not been able to get the address book to sort correctly. If I go Preferences/General/Sort by Last Name, it only sorts about half. I discovered that the ones that don't get sorted are ones that have had the "Swap first/last name" function appli

  • Adobe Reader for iOS and Android & Rights Management

    This week's release of Reader for iOS and Android devices incorporates support for accessing files secured by Adobe LiveCycle Rights Management. As you are probably familiar, LiveCycle Rights Management protects sensitive documents by encrypting them

  • I mistakenly erased SAFARI, how do I get it back?

    I erased SAFARI by mistake; how do I get it back? Do I have to reset ? Where does Itunes keep the safety copy to be used if I reset?

  • Exchange CS5 Web Prem Windows for Mac version

    I was told by support I need to upgrade to CS6 to crossgrade for a Mac version. Can some tell me the cost? all I need is PhotoShop for MAC. Can I exchange this License with someone if they are willing to trade a Mac version?