Illustrator :: How To Prompt User To Select Multiple Files In File Dialog Using Scripts

Oct 5, 2013

Is there a way to allow user to select multiple files inside the file dialog using scripts? So not just something like "*.ai" or "*.eps" but where the user can actually use their shift key to select a batch of files inside the file dialog and then the script would process each one.

View 3 Replies


ADVERTISEMENT

Illustrator SDK :: Prompt User To Select Art?

Feb 21, 2012

Is there a method available to have the plugin pause and wait for a user to click some object, then continue? Or does all user interaction have to happen before/after the plugin is run?

View 2 Replies View Related

AutoCAD Inventor :: Prompt User To Select A View When In Macro?

May 14, 2012

I have a macro which

1) checks to see if the active document is a drawing

2) Checks that the drawing is of a part

I want to prompt the user to select a view on the drawing, if this is not the first view on then a warning message is displayed.

Then I want to take this active view and change all of the geometry lines and holes EXCEPT for bend lines to a specific layer.

View 4 Replies View Related

AutoCAD Civil 3D :: How To Prompt User To Select Existing Pipe Network In VBA

Aug 31, 2012

I'd like my macro to prompt the user to select a pipe network that I will then export to excel. How is this possible to achieve? 

Using Building Design Suite Ultimate 2014

View 1 Replies View Related

Illustrator Scripting :: How To Get User Input Via Prompt

Oct 3, 2013

I have this working without the prompt, if I under manually the margin via var margin = 10; it works. it also seems to return correctly when I print what the input from the user is, but it doesn't seem to want to work and freezes.
 
it says "point value expected"
 
//Helper functions
function print(i) {
    if(i == "object"){
        print("you are trying to printObject, use printObj(); function");
    }
    else { 
        $.write(i+"
[code]...

View 1 Replies View Related

AutoCAD 2013 :: No Thumbnail Preview In File Open Dialog Box - But Only For ONE User

Jul 10, 2012

There are four of us in our office who all installed Autodesk Product Design Suite Premium 2013.  One of us cannot see thumbnail previews in the file open dialog box or in the preview area of Windows explorer.  She's using Windows 7, 64-bit.

View 9 Replies View Related

AutoCAD .NET :: Prompt Line Entity From The User?

Aug 16, 2012

How could I prompt a "two points" line entity from the user?

Something similar to " Editor.GetPoint() " ??

I was trying to use Editor.GetPoint() method two times. But this option does not show the preview of a line.

I also tried a combination of

doc.SendStringToExecute("line ");
db.ObjectAppended += new ObjectEventHandler(LineAppended);

but this option triggers LineAppended event handler as soon as I create the first point of a line. So it does not work.

View 1 Replies View Related

AutoCAD LT :: Select File Dialog Box

Jul 1, 2011

The blue color on the left side of the dialog box is too light and makes it hard to read the white font. How can I change those colors? If they are part of the windows color theme, which element would this be?

View 9 Replies View Related

AutoCAD LT :: Modify Select File Dialog Box

Apr 4, 2013

In the Select File dialog box, I can modify the column widths and I can change the column content.  For example, I can delete the "date" column and add a "date modified" column.  But, I haven't found a way to save the settings that I prefer to have each time the dialog box opens.  How to save the settings as the default dialog box?

View 5 Replies View Related

AutoCAD .NET :: Prompt User To Pick Point On Circle With Given Radius?

Jul 25, 2013

I need my users to pick a point p, enter a distance r and a direction v. A new point should be created r units away in vectorial direction. Therefore, the new point is located on an imaginary circle with radius r and center p.

Currently, the user picks the first point and enters a distance. Then, he has to pick another point (Editor.GetPoint with UseBasePoint = true), I calculate the vector between both points, create a new point (with location = BasePoint.location) and translate it d units in vectorial direction. This works of course, but the problem is, that the user doesn't see directly, where his new point is located, since he may pick a point closer to or farther away then r units.

Naively spoken, I want to restrict the line between BasePoint and new point while prompting the user to a fixed length. Native calls to ObjectARX-methods would be also okay.

View 3 Replies View Related

AutoCAD LT :: Select File Dialog Box Background Color

May 9, 2012

When opening a file, if you want to change the background color behind the folder icons on the left side of the Select File dialog box, do the following in Windows 7:

From Windows 7 desktop screen, go to personalization and click on Window Color at the bottom of that dialog box. At the bottom of the next dialog box, click on Advanced appearance settings...At the bottom of the next dialog box, under Item: select Inactive Title Bar and change the color to your heart's delight. I just wanted it darker so I could read the folder names easier which are white text.

View 1 Replies View Related

Illustrator Scripting :: User To Select A Font Family From A Drop Down List

Mar 25, 2013

I'm building a script that will open a dialog box allowing the user to select a font family from a drop down list (not a list of all of the fonts), and then compare that value against the fonts that are in use, highlighting everything that doesn't match. I have not yet built the dialog, but I've got  everything else working as I want except the list of font families.
 
The following code loops through the list of fonts (only 20 for testing purposes), compares the family name to the previous on the list (error trapped for the first loop), and pushes the family name (if it doesn't match the previous) into an array which will be used in the dialog box. With the two alerts at the bottom (for troubleshooting), I expect the alerts to show the same family name. For the first three fonts they do, but after that the array value is "undefined." 
 
var iCount = 20;
//var iCount = textFonts.length;
var nameHolder = "";
var nameArray = new Array();
 
[Code]...
 
Questions:

1) Any speculation on why this behavior is happening (it isn't truetype versus opentype)?
2) Is there a better way to get the list of font families without duplicates??
2) Is an array the best way to populate a dropdown list in a JS dialog box??? [this will be my first dialog with a dropdown, the others have user-typed values]
 
EDIT: Additional Info
When it reaches the ninth font in the list, the above script starts writing undefined, but when tested manually, as below, it works fine. Hmmm.
 
alert (textFonts[9].family);
var nameArray = new Array();
nameArray.push(textFonts[9].family);
alert (nameArray[0]);
 
EDIT: More info
tried replacing nameArray.push(familyName); with nameArray.splice(i,0,familyName); bad behavior remains

View 4 Replies View Related

Illustrator :: Import Several PDF Files As Multiple Artboards Into One File?

Feb 11, 2013

I have 30 Illustrator pdf files created in Illustrator 10 that I would like to transform into one Illustrator CS6 file with each file being a separate artboard. I would like to import them all at once and not have to do it one by one.

View 5 Replies View Related

Illustrator Scripting :: Split File Into Multiple Files

Nov 4, 2013

Is it possible to have a script that would split up an Illustrator file that contains a number of groups of elements into individual files... for example, here is a download link for a file that has different types of moustaches and I want each moustache as an individual file... I have hundreds of Illustrator files like this that have 4, 8, 15, 20 or more illustrations all bunched onto the one file that I need to split up. I'm using CS4 [URL].... 

View 3 Replies View Related

Illustrator Scripting :: How To Import Several PDF Files As Multiple Artboards Into One File

Feb 11, 2013

I have 30 separate illustrator pdf files (one page each) that I would like to make into one Illustrator CS6 file with 30 artboards. Is there any way to do that without having to import one by one?

View 1 Replies View Related

AutoCAD LT :: 2013 And 2014 Select File Dialog Box Won't Open Anymore?

Aug 6, 2013

As soon as I click the drop down the screen shows as blank and the program freezes.  This happens with all the following commands,  Save AS, Insert.

I have checked the FILEDIA and it is set to 1

I seem to have the problem with all autocad products on my Windows 8 pro desktop.  I have tried Autocad LT 2013 & 2014. 

View 9 Replies View Related

AutoCAD Map 3D :: Getting Multiple User / Custom Coordinate System Files (2014)?

Dec 18, 2013

If you create any custom coordinate systems in 2014 products (Civil3D, Map3D) *.CSD files are created in C:Users{user_name}AppDataLocalAutodeskUser Geospatial Coordinate Systems with the additional data in them.

My question is - can you have multiple 'coordsys.csd' files?

The reason for asking is that we are setting up a large number of low distortion projections that are specified by a government roading agency and I figure the best way to distribute these is to create a coordsys.csd with them and sync it out to everyones profile (the location shown above), but there could then be issues if a user then sets up some additional coordinate systems that will only be on their computer, if we altered or expanded the company definitions and sync'd these out again it would overwrite the users ones.

It would be good to be able to have mutilple custom coordinate system files - ones for particular clients, countries, individual users etc.

Civil3D 2014 - Windows7 64bit

View 4 Replies View Related

AutoCad :: Wblock Command Can`t Find Dialog Box To Select Objects And File Location

Dec 14, 2011

Land Desktop 2009 Civil 3D Companion

When I issue the Wblock Command I can not find the Dialog box to select objects and file location... This happens in the Layer Dialog when I try to change the color of a layer, the Color Dialog box can not be found. When I use the Block command the dialog box pops up, so I can see it.

fildia>1
cmddia>1
attdia>0

View 9 Replies View Related

AutoCAD Inventor :: Working On One Big File With Vault / Multiple User?

Jan 27, 2012

working on one big file with Vault/multultiple user scenario?

Lets say you design a car and having the frame and the body you have different guys that come in and do electrical, fuel system, so on... They need to work with the frame and the body doing their parts, since thats the reference for them.

But only one guy can check it out. We try the approach that one system is an entire independent assembly inserted into the top assembly but its not perfect.

View 1 Replies View Related

AutoCAD .NET :: Select Object Command Prompt

Jun 4, 2012

I'm creating a VB.Net routine which will run the REVCLOUD command.  In my application I prompt the user to select a single polyline using:

EntRslt = acDoc.Editor.GetEntity(EntOpts)

Then later I run the REVCLOUD command using:

acDoc.SendStringToExecute("_revcloud Object Poly No ", False, False, True)

Where Poly is the polyline I selected earlier.  Of course, the line above doesn't work since "Poly" is interpreted as a string.  But I would like to figure out how to pass my VB.Net selected Polyline into the REVCLOUD command.

How I might do this?  The REVCLOUD command will not accept the "Previous" selection set so setting the Implied Selectoin does not work.  If my Polyline was the Last object in the database I could use the "Last" option, but it isn't.

View 7 Replies View Related

Illustrator Scripting :: Creating Dialog Consisting Of Multiple Buttons

Apr 24, 2013

I want to create a dialog consisting of multiple buttons. As a result I want value which button was pressed by user.
 
The script (shortened to problematic part):
 
// I'm looping through elements on layer 'warstwa' from kolorStart to kolorStop, 'k' is used for number buttons

for (i = kolorStart, k = 0; i <= kolorStop; k++, i++) {
myButton[k] = myButtonGroup.add ("button", undefined, warstwa.pageItems[i].contents);
myButton[k].label = warstwa.pageItems[i].contents;
myButton[k].onClick = function () { wybranyKolor = myButton[k].label; myWindow.close(); }
}
 
The result:

But buttons don't work, wybranyKolor returning 'undefined'. If I change "wybranyKolor =  myButton[k].label" to "wybranyKolor =  myButton[k-1].label" I get proper answer but it is the same for all buttons so it looks that all buttons have the same action assigned. How to get each button to has unique name which can be passed to variable?
 
Probably I can achieve the same with radio buttons' list but with buttons it is one click less for the user.

View 7 Replies View Related

Illustrator :: How To Duplicate Multiple Shape Copies Using Transform Dialog In CS6

Apr 18, 2013

Create shape > Transform > Move horizontal or vertical > select number of copies (missing!)
 
This was one of my favorite tricks but it looks the ability has been removed in CS6!  So now if I want to make a sequence of shapes how can I do it?
 
Adobe fail? or am I missing something?

View 5 Replies View Related

Lightroom :: 5 - Crashing Whenever Select Multiple Files

Jun 19, 2013

My lightroom 5 is crashing whenever i select multiple files.

View 3 Replies View Related

Lightroom :: Select Multiple Files In Import Grid View In LR4?

May 5, 2012

So far the only way I have discovered is to laboriously click the checkbox on each image I want to import. It seems that one should be able to select a range with one click (e.g. holding down Shift and then clicking the last image in the range) or by using a context (right-click) menu. No dice.

View 3 Replies View Related

Illustrator :: Select And Manipulate Multiple Handles In CS6

May 7, 2013

In Illustrator CS6, any way to select multiple handles of, say, bezier curves, and collectively move, extend, rotate or retract them? I have found a few plugins for Mac - are there any for Windows?

View 1 Replies View Related

Illustrator :: Select Multiple Objects On Layers Panel In CC?

Mar 11, 2014

i have a guge artwork and i need to select a small groups (around 10-100) of objects from about 4000 overlayed objects and then group'em/split-to-layers for usability (This is a human body infographics for medical institute) There IS NO way selecting them from canvas because they are overlayed, and sometimes not visible at all. in CS5 there was a feature to select multiple objects by Alt+drag selection icon on the most right in the Layers Panel. Now the duplication mode turns-on when i try to perform it. So.. Ho do i select multiple object without need to click through thousands of them? (i need drag-select)

View 3 Replies View Related

Illustrator :: How To Select Multiple Objects In Layer Panel

Sep 25, 2012

I want to select a few paths in the layerpanel by NOT clicken on every one. So for example I have the following structure:
 
Layer 01
     path01
     path02
     path03
     path04
     path05
     path06
     path07
     path08
     path09
     path10 
 
And I want to activate path03 to path09 for further modifications - I would have to select every single path by clicking on it in the Target column.
 
Is there a faster way like selecting path03 and than holding the Shift-key and selecting path09 ? <- (This obvious solution doesn't work)

View 10 Replies View Related

Illustrator Scripting :: Select Items On Multiple Artboard

Sep 27, 2013

I have script where I select items on multiple artboard but I can't seem to get get active art board of the selected item. Is this possible?
 
each artboard has a text item and I would like them in the same position on each of their own artboards that they are already one. right now it adjusts them all to one artboard. here is what I have so far
 
doc = app.activeDocument;
for(i = 0; i < selection.length; i++){
    var firstItemPosition = doc.selection[0].position;
    doc.selection[i].position = firstItemPosition;
    var activeArtboardIndex = doc.artboards.getActiveArtboardIndex();
    alert(activeArtboardIndex);
}

View 10 Replies View Related

Corel DESIGNER Technical Suite X5 :: PhotoPaint - Cannot Select Multiple Files For Batch Mode

Jun 19, 2012

PhotoPaint: Cannot select multiple files for batch mode

View 5 Replies View Related

3ds Max :: Configure User Paths Dialog

Sep 15, 2011

I've been having trouble w/ unresolved file names so I dinked around with the "Configure User Paths" dialogue. I made changes to all the entries so that backburner could see for net rendering. Boy i shouldnt have done that. Now My Mxp files are being saved in the specified project folders but all the subfolders are missing. I have gone back to the fore mentioned dialogue and changed all the paths back to relative. This still hasnt fixed the issue. Is there any way to set this dialogue back to "Factory Defualt"

View 1 Replies View Related

Illustrator :: Direct Selection Tool To Select Multiple Objects

Nov 21, 2013

When I use the direct selection tool to select multiple objects that also contain an image within a clipping set, occasionally the clipped image is included in the bounding box, even if it and its clipping mask are not selected.  Selecting other objects includes them in the bounding box, but even after deselecting everything the bounding box around the image remains and the only way to remove it is to drag a handle (which resizes the image) and then undo the action.  Obviously this is annoying and seriously interrupts workflow.  I've had this issue ever since CS4.

View 10 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved