Photoshop :: Edit Some Random Commands Before Executing Them
Jan 26, 2013
PS not letting me edit some random commands before executing them, including Duplicate, Fill, Print Preview, Stroke...possibly others I haven't discovered. When I click the dropdown choice, an edit window used to let me tailor pixel widths, color, etc. (I know, [it's what] 'edit' means). Now, the little eyedropper icon replaces my cursor, all top menus are grey except 'View' and 'Window', I get that awful 'doont!' sound, and my only option is to just hit 'Enter' and it executes the command with whatever preferences I last set before this problem, usually of no present use to me. I have relaunched PS, restarted the computer with no other tasks and relaunched, and impotently shaken my fist at the screen to no avail.
View 1 Replies
ADVERTISEMENT
Dec 21, 2013
Inventor 2014 crashes when executing revision table edit. This started after installing windows 7 SP1(x64) and SQL server 2012 express (x64).
View 1 Replies
View Related
Apr 11, 2011
We've upgraded to 2012 and have noticed a problem when fast clicking on the mouse when using commands.
For example when using the erase command I would usually type E and then quickly right click and left click. However in 2012 it brings up random command instead of erase i.e. sheetset, publish, ucs etc..Bringing up the text window afterwards it shows
Command: e
ERASE
Select objects: Specify opposite corner: *Cancel*
0 found
Select objects: *Cancel*
Command: _PointCloudIndex
The right click and left click are only processed once.This happens on all commands typed on the command line not just erase
View 9 Replies
View Related
Oct 11, 2012
Having only recently started using Autocad 2012 (I mainly used various versions of LT over the last 10+ years) I have noticed a few strange goings on.
It doesn't happen all the time but sometimes whilst in a command ("move" for example), when I go to click on an object or pull a window, a separate, totally random command activates itself. Why this happens, I just hit escape a couple of times & continue what I was doing.
I'm not sure if it is a case of me, in my haste, missing my intended object & hitting the right click button (which I use as a return & not a drop down menu).
View 2 Replies
View Related
Mar 27, 2013
Why are my edit commands (copy and cut) grayed out / unavailable? When trying to copy a selected layer or object, all my editing commands are grayed out and unavailable. Even if I convert something to a smart object, no joy. The only thing I seem to be able to select and copy/cut/paste is text in the text edit mode. makes no sense and is rendering PS unusable.
View 5 Replies
View Related
Dec 14, 2011
I don't know what is going on but it is getting on my nerves. I created an OBJ file for my Glock model that I'm working on and re-imported it into 3ds Max to remove any five sided polygons. 3ds Max fixes them automatically this way. This fixed model won't export as an editable mesh, it gets stuck on "preparing polymesh for poly export" and I have to ctrl/alt/del to shut the program down. After some research, a few boards say to change the mesh to a poly. Tried that and I have random black polygons appear and I don't know what to do to fix it. I've attached both the file and an image to this post. The glock on the left is my original model and the one on the right is the OBJ I imported to have four sided polys throughout.
View 4 Replies
View Related
May 2, 2012
Commands Work features is not active in edit base solid.
How to make plane? How to make active ?
View 2 Replies
View Related
Dec 6, 2012
I've a Photoshop droplet with set of actions like:
Open
Fit image
height:180
width:180
Save
as jpeg
quality:11
Close
It does it's work as expected but once the actions are executed on all the images in a folder, I'd like to close the Photoshop as well, which looks tricky in Photoshop droplet. Is there anyway to close Photoshop application at last by action? Or is there any option so that droplet actions will be executed without opening the Photoshop window.
View 4 Replies
View Related
Feb 19, 2013
Execute a picture from Lightroom to Photoshop das not work. Picture is not opened in Photoshop.
View 1 Replies
View Related
Mar 31, 2010
I have a county wide aerial image in jp2 format, connected through Data Connect and every time I pan or zoom it says "executing query". It is very slow getting around in the drawing (tracing over tree line, roads, etc.). I have a Windows 7 64-bit machine with 6 GB of RAM. Is there a setting I can turn off to make zooming, panning, changing layouts, etc. faster?
View 3 Replies
View Related
Nov 25, 2013
I have a problem while executing intersectwith between polylines and lines
the polyline execute intersectwith method referencing a line object with expandboth parameter value but sometimes , the intersection is not found
when using expandthis or expandargument values, I have no problems
I'am using VS2012 express and Autocad 2014
the attached project containt :
an image (result;png) showing my result
a dwg file (dessin3.dwg) , it is my test file
the source code for testing , (test" command)
it find all polylines and all lines in the drawing , compute the intersections between each couple and draw a dbpoint on each
View 3 Replies
View Related
Sep 30, 2012
I am occasionally developing with ObjectARX 2013. The problem: A command being executed from a document needs to focus on another document. I am doing that as:
Application.DocumentManager.MdiActiveDocument = aGeneratedDrawing;
After this line, the focus is taken by the other document. But the command execution just stops without producing any visible error or catchable exception. Apparently, the document focus cannot be changed during execution of a command.
A solution: What worked in the end was displaying a .NET form inside the command, like:
Autodesk.AutoCAD.ApplicationServices.Application.ShowModelessDialog(aForm);
Then, performing the very same set of actions on a button click works flawlessly.
The question is: can using the form as a mediator be avoided? It is redundant there. I tried hooking to CommandEnded, executing the code as a separate command via Application.DocumentManager.MdiActiveDocument.SendStringToExecute, and also executing the code in a separate delayed thread. So far, only triggering the code via the form worked.
View 4 Replies
View Related
Dec 6, 2013
when i work on geometry which is not in orthographic orientation i always prefer to create orthographic view of this, that's what i do :
Command : ucs
Command : z
Command : (selecting representative angled 2 points)
Command : plan
Command : c
than the whole zoom is lost , and i need to find again the portion , and save a view. i want to automate this process but before i automate it i want to know if there is a way to avoid zoom lost after executing the (plan) command?
View 7 Replies
View Related
Feb 21, 2013
I have a macro that automatically creates a Detailed view on a sheet. It works on 2 input's:
- mouse click 1 (set's the target to be detailed)
- mouse click 2 (set's the location where the balloon should be)
The code works fine. But sometimes the user will start another command, or restart the same command, while it is still running. This off course gives all kinds of problems.
Is there a possibility in VBA to prevent the user to start another command while this command is running?Or is this problem a part of the clicking itself?
Here is my (it uses a Class Module called: clsGetPoint, see code below)
Sub AutoDetailedView() On Error GoTo ErrorManagment '(error handling 2013/02/18) 'step 0 Create a transaction. -> for 1 undo command Dim oTransMgr As TransactionManager Set oTransMgr = ThisApplication.TransactionManager Dim oTrans As Transaction Set oTrans = oTransMgr.StartTransaction(ThisApplication.ActiveDocument, "AutoDetailedView") 'step 1 Select a drawingView 'Set a reference to the drawing document. Dim oDrawDoc As DrawingDocument Set oDrawDoc = ThisApplication.ActiveDocument 'Set a reference to the active sheet.
[code].....
View 5 Replies
View Related
Jun 30, 2013
SurfaceBody.GetExistingFacets( ToleranceIndex As Double, VertexCount As Long, FacetCount As Long, VertexCoordinates() As Double, NormalVectors() As Double, VertexIndices() As Long )
This works fine in VBA (Inventor 2014). But when I start using the same in VB.NET (VS 2012) all declaration as long shows as integer and fails on compiling. If I change to integer compile passes but fail on executing in Inventor 2014.
View 6 Replies
View Related
Dec 17, 2012
Im having a little trouble of late understanding how to undertake an action/ command if nil
what i do know id the following:
(setq TESTvar(findfile "acad.lsp"))(alert TESTvar)
this gives me the path of the acad.lsp, that is provided it actually exists, however because the acad.lsp is not compulsory it may indeed not exist meaning that the command prompt would return the NIL value instead of the pathname.
based upon that I would like to create a new acad.lsp file if not found by autocad.
View 3 Replies
View Related
Aug 5, 2013
I have a template that I have created, in it I have a rule that changes the stock number and description based on which sheet metal rule is selected. The weird thing is it works correctly if the first sketch is a rectangle. If you sketch a circular shape and make that the face it will not work. It blanks out the values for the stock number and description.
I'm running Inventor 2014 update 2.
Format:HTML Format Version:1.0 StartHTML: 165 EndHTML: 33212 StartFragment: 314 EndFragment: 33180 StartSelection: 314 EndSelection: 314
SyntaxEditor Code Snippet
DimiPropValAsString=""
DimiPropDesAsString=""
SelectCaseSheetMetal.GetActiveStyle()
[code]...
View 1 Replies
View Related
Sep 3, 2013
I am trying to access the edit original (edit with) option to edit a photo that has not been edited yet. I right click and go through the edit menu and does not appear or is not available? Would I have to reopen it manual in photoshop or is there a way around this to access that setting? it sometimes does not appear on my already edited photos.
I would prefer not to open each photo again, as some files i do not have and were imported into the document with another computer.
View 3 Replies
View Related
Sep 26, 2012
Sometimes I work offstie, so no wacom tablet with me. How can I spray sparkles/dust/etc and vary aspects randomly such as size? Even with the wacom would like more random results, than gradated.
I really like how illustrator does this with sliders so you can set a range. Can I set up something simlar in Photoshop?
View 3 Replies
View Related
Oct 29, 2013
I updated my Mac and everything was fine until i had to restart it. My Photoshop's keyboard short cut became all random like this:I tried restarting my computer again but it has not changes.
The most weird part is that when i tried to change the short-cuts, it won't work even though i clicked on accept and "ok". Is there a way i can turn this back? It wasn't like this when i first got this back at November.
View 6 Replies
View Related
Mar 2, 2013
I am having a problem with my brush/stamp/eraser tool in photoshop CS5.5. Whenever I click to paint, erase..etc it will sometimes randomly paint elsewhere on my photo. Sometimes it will paint just one spot or other times it will paint a whole line or squiggle across my photo. I have checked my brush settings and I don't have anything turned on for it to do so (i.e. scattering, shape dynamics, spacing).
View 4 Replies
View Related
Sep 26, 2013
The blocks are seemingly random and happen unexpectedly. What's worse is they become permanently incorporated into my file, thus destroying my work.Note that you can see the blocks have become part of both the art on the layers as well as the masks.
I'm working on a 27" iMac 3.1 GHz Intel Core i5 with 8GB of 1333 MHz DDR3 RAM, using Photoshop 14.1 x64. I have seen some reports about possible video driver errors associated with this model, This is a Photoshop-only problem as far as I can tell. I do believe I encountered this in Photoshop CS5 at one point as well.
View 2 Replies
View Related
May 19, 2013
I've used Photoshop CS6 Extended Edition for over a year on my current laptop (specs below), but now it just crashes at random points. I get the message 'Photoshop has stopped working' and then I can only close it. I didn't change any settings. First I thought it happened because I also had Visual Studio open (also uses alot ram etc), but even after I closed it and did a reboot Photoshop kept crashing :'(
My specs are:
Pc: Dell latitude D630 86x
CPU: Intel Core 2 Duo 2.20Ghz
Graphics: Mobile Intel 965 Express Chipset Family
Os: Windows 8 Pro
Ram: 2Gb
I know it isn't the best you can get but first I could use Photoshop without any problems.
Edit: I have updated all my drivers and it still won't work.
View 10 Replies
View Related
Oct 3, 2012
Using cs5 ps version 12 and randomly photoshop will not open any file. I can open ps itself and ask to open a file and all the menus appear but no window with the art or pic! Cannot move any of the menus either. Only way to rectify is to reboot!
View 6 Replies
View Related
Apr 28, 2013
I have a big problem with photoshop that continues to always close at random. The error report is as follows.
Process: Adobe Photoshop CS5.1 [519]
Path: /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
Identifier: com.adobe.Photoshop
Version: 12.1 (12.1x20110328.r.145] [12.1)
Code Type: X86-64 (Native)
Parent Process: launchd [137]
User ID: 502
[code]...
View 1 Replies
View Related
Jun 9, 2005
There must be a way to spray points randomly within a set radius. I don't see any tools to do this though in the tool bar.
View 1 Replies
View Related
Aug 25, 2005
I'm creating a landscape plan, and I would like a method for creating leaves on the trees. I can draw an initial leaf and copy it, but then I'm confronted with the tedious task of resizing, rotating, and pasting them onto the tree hundreds of times over. I know that in some drawing programs, there's a random spray tool that allows you to continuously paste a selection at random points within a given radius. Is there a tool like that in Photoshop, preferably something that also randomly modifies the size and rotation of the selection?
View 5 Replies
View Related
Mar 31, 2008
I am setting up an Action, and I like to know if there is a way for photoshop to select random color so I don't end up with the same color everytime.
View 13 Replies
View Related
Feb 27, 2012
I am just starting out with the Photoshop CS5 trial. I am trying to apply a triangular pattern to a thin rectangular shape. I used the custom shape tool>triangle, then defined the pattern successfully.However, when I apply the pattern it partially repeats it along the vertical as well as the horizontal axis. Please see attached screenshot:
I only want it to repeat horizontally, what am I doing wrong?
Also, I am Fireworks CS5 user and am really missing the properties inspector panel which allows you to quickly and esily edit sizes of objects, is there a Photoshop equivalent of this?........at the moment the only way I can find to edit objects is through Edit>Free Transform.
View 4 Replies
View Related
Oct 9, 2012
Whilst editing images in photoshop cs3 (using power mac), random horizontal lines are appearing on images. Usuall just one or two and the only way to get rid of them is to edited/erase them out....
I have tried saving and opening image on another mac and it still shows up...
View 3 Replies
View Related
Nov 22, 2013
when i save my psd file i get these random black squares all ovr my picture.. what in the world can i do to remove these? i use photoshop cs6 on a mac
View 1 Replies
View Related