Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.010 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'attribute': 0.05; '[0]': 0.07; 'python': 0.09; 'to:addr:comp.lang.python': 0.09; 'cc:addr :python-list': 0.10; 'help?': 0.16; 'row': 0.16; 'selected.': 0.16; 'trying': 0.21; 'import': 0.21; 'cc:2**1': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'header :User-Agent:1': 0.26; 'cc:addr:gmail.com': 0.27; 'this?': 0.28; 'code': 0.31; 'skip:d 20': 0.34; 'received:google.com': 0.34; 'thanks': 0.34; 'table': 0.35; 'received:209.85': 0.35; 'but': 0.36; 'cc:no real name:2**1': 0.36; 'received:209': 0.37; 'subject:: ': 0.38; 'help': 0.40; 'end': 0.40; 'skip:a 30': 0.60; 'from:no real name:2**0': 0.60; 'subject:Data': 0.65 Newsgroups: comp.lang.python Date: Thu, 20 Dec 2012 12:39:38 -0800 (PST) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=208.81.8.20; posting-account=qZnXEQoAAADZHqMOOXnUPlnmTuOYJoqN References: <19696daa-12c8-4a2d-aa6c-ffb60c8505bb@googlegroups.com> <70a99fa6-a401-4962-901f-5ea90a673140@googlegroups.com> User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-IP: 208.81.8.20 MIME-Version: 1.0 Subject: Re: Data Driven Process From: balparmak@gmail.com To: comp.lang.python@googlegroups.com Content-Type: text/plain; charset=ISO-8859-1 Cc: python-list@python.org, balparmak@gmail.com X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Message-ID: Lines: 22 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1356036528 news.xs4all.nl 6888 [2001:888:2000:d::a6]:47781 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:35222 Hi Grant can you help me with this? I am working with the python code below in ArcGIS to zoom into a shapefile's attribute table row features without selected until the end of table one by one. I am trying to use this code but this one requires that a row is selected. import arcpy mxd = arcpy.mapping.MapDocument('CURRENT') df = arcpy.mapping.ListDataFrames(mxd, "Layers") [0] df.zoomToSelectedFeatures() arcpy.RefreshActiveView() Any Help? Thanks