Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 3 of 3

Thread: Page Zoom Help

  1. #1
    Join Date
    Mar 2007
    Location
    HeaveN
    Posts
    534

    Grin Page Zoom Help

    how can i use this javascript with web object ??? what i wanna do is a button and when it is clicked it will zoom the page in web object...

    Code:
    <script language="JavaScript">
    	var i = parseInt(document.body.style.zoom);
    	if (isNaN(i))
    		newZoom='125%';
    	else if (i<0)
    		newZoom='25%';
    	else
    		newZoom=i+25+'%';
    	document.body.style.zoom=newZoom;
    </script>

    can someone help please ???

  2. #2
    Join Date
    Nov 2003
    Location
    Myrtle Beach, SC
    Posts
    155
    The user needs to have MSIE 7.x and that javascript needs to be inside the actual HTML of that web page. If you're wanting to do this on someone else's web page, the AMS web object does not support that feature.

    However, you might be able to create a 'bookmarklet' that could do it. Google that term for sites that explain and offer them.

  3. #3
    Join Date
    Oct 2006
    Location
    Somewere over the rainbow
    Posts
    314
    hi JD, i have the bookmarklets for zoom in and zoom out if u need em

Similar Threads

  1. html page and link
    By mountain07 in forum AutoPlay Media Studio 6.0
    Replies: 1
    Last Post: 11-19-2005, 09:00 PM
  2. Is there a way to go to next page easier?
    By christywalter in forum AutoPlay Media Studio 5.0
    Replies: 5
    Last Post: 11-11-2004, 02:37 PM
  3. Inheriting Page Properties
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 10-01-2003, 02:21 PM
  4. Setting Page Transition Effects
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 09-24-2003, 01:08 PM
  5. HOWTO: Create a Page Template
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-26-2002, 05:20 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts