AutoCAD .NET :: Modify Tooltips Of Ribbon Items

Jan 9, 2014

We want to deliver a language independend CUIX-File and translate the UI at runtime after loading the CUIX like this:
 
foreach (RibbonTab tab in ComponentManager.Ribbon.Tabs)
{
foreach (RibbonPanel panel in tab.Panels)
{
foreach (RibbonItem item in panel.Source.Items)
{
TransRibbonItem(item);
}
}
}
 
TransRibbonItem(item)should translate the Item text displayed in the UI as well as the tooltip text.
I found a good way to translate RibbonItem texts. But the only solution I found to translate tooltips is the approach that Kean Walmsley posted in his blog here and here.
 
This solution has some drawbacks: It uses Autodesk.Internal.Windows.ToolTip, which Kean rates as "risky". It can not be used in my TransRibbonItem(item) function because it uses an ToolTipOpened event-handler that modifies a tooltip just when it is created.I found that this mechanism does not work very well in AutoCAD 2014: When a tooltip is created the first time, the handler is called before it is completely initialized. The posted solution reloads the tooltip in this case - which leads to a delay and display flash.

View 7 Replies


ADVERTISEMENT

AutoCAD Inventor :: How To Change Language Of Tooltips On Ribbon

Oct 22, 2012

I have Polish version of Autodesk Inventor 2013 Profesional. Tooltips display ribbons to me in English. How do I set to display them in the Polish language?

View 9 Replies View Related

AutoCAD 2010 :: Chinese Characters On Tooltips And Ribbon

Apr 17, 2012

For the last few weeks my copy of C3d 2012 has had what appear to be chinese characters pm all tooltips.This started after a network change here which resulted in everyone gaining a new user account on their PC.

I copied over all my old settings.I have tried adding font packs from the installation disk.I tried repairing from the installation disk.

Makes no difference; it's still Chinese (or what appears to be Chinese anyway). how to get this program back into English or is a reinstallation the only answer? 

After reading a thread that seems related I also tried changing the windows advanced appearance options for tooltip fonts.Didn't have any effect.

View 1 Replies View Related

AutoCAD LT :: Modify Box On Ribbon - Possible To Move The Buttons?

Jul 31, 2013

In AutoCAD LT 2013, the Modify box on the ribbon, I regularly use about four buttons in the main box on the ribbon and I use only the Lengthen button in the drop down box. Is there a way to trade the Lengthen button in the drop down box for one of the seldom used buttons in the main box on the ribbon?

View 3 Replies View Related

AutoCAD 2013 :: Convert Ribbon Menu Items Into Classic Workspace?

Nov 13, 2012

i having a fully working ribbon in ACAD2013. it is a registered dll that is originally coded in vb.net.

unfortunatley the functionality is only visible at the drafting & annotation workspace but is desperatly needed in classic workspace mode.

for hours i am trying to find a way to make my functionality working in classic workspace too.

is it possible to extend the classic workspace in acad2013 with my functions? if so, how, or where can i get more detailed information to solve my task.

View 6 Replies View Related

AutoCAD Dynamic Blocks :: Link Text Items Between Pages And Items In Drawing?

Apr 17, 2013

I am hoping to link text items between pages and items in the drawing such as elevations?

So, ideally, I would have a front page to my drawing set, and this would have a 'Contents' type table on it, with the title name of each drawing in one column, then the drawing number in the next column. This is the tricky bit, someone must know: If i was to change the name / number of any item in this table, could it change also (linked to) the following items:

Drawing title  (as a text idem on the layout sheet that that drawing relates to) 

Drawing number (as a text idem on the layout sheet that that drawing relates to) 

Elevation call-out (on the plan view)

And possibly:

Excel reference cell

Drawing layout tab title (this might be pushing it!!)

Perhaps this could be done by linking to an external Excel spreadsheet with these titles modified in there? I'm not sure. This would be ideal as typing into excel is a lot easier than the triple click text modify method required currently.

I waste a lot of time renaming and updating sheet names / titles / numbers. Are there standard templates for drawing sets that may have this built in available anywhere that I could try?

View 7 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Customize Ribbon Panel In Ribbon Tab

Nov 28, 2012

I am trying to customize Autocad 2012 ribbon tab. I can't seem to find how to mimic the small arrow that appears in several of the standard menus. For example, in the 3D Solids - Home Tab, the second panel from the left is "3D Solids Home - Mesh" It has a small arrow in the corner that opens up a preferences dialogue box.

How can I add that arrow to a custom panel with that little arrow so that I can add my command to it?

View 4 Replies View Related

AutoCAD Civil 3D :: Lost All Tooltips And Glyphs

Mar 5, 2012

I needed to check some vehicle turning movements against my design, so I started Civil 3d from the AutoTurn icon.  As I was working I noticed that I don't have any Tooltips anymore.  I've checked the global tooltip settings in the Civil3d settings, and the Autocad options, and also the tooltip settings for individual objects. 

I also found that the glyphs which should appear when snaps are turned on aren't visible, although the snaps do work properly.  Once I had finished with the vehicle checks I shut down, and then restarted from the Civil3d icon but the behavior hasn't changed back to normal.  I've also tried repairing the installation - next step will be a full reinstall.

View 5 Replies View Related

AutoCAD .NET :: Where Are Bits Of Ribbon API To Add Slide Out To Ribbon Panel

Jan 24, 2013

Where are the bits of the Ribbon API to add a slide out to a ribbon panel?

Autodesk.Windows.RibbonControl ribbonControl = Autodesk.Windows.ComponentManager.Ribbon; RibbonTab Tab = new RibbonTab(); ribbonControl.Tabs.Add(Tab); // create Ribbon panels Autodesk.Windows.RibbonPanelSource panel1Panel = new RibbonPanelSource(); panel1Panel.Title = "Panel1"; RibbonPanel Panel1 = new RibbonPanel(); Panel1.Source = panel1Panel; Tab.Panels.Add(Panel1);
 
I saw some source that hinted you could use panel1Panel.AddSlideout() but in the search I do not see any Ribbon API that allows for any slideout functionality?Do you *have* to use the CUI API for this?

View 5 Replies View Related

AutoCAD Civil 3D :: Corrupted Or Chinese Characters Appearing In Tooltips?

Apr 13, 2012

Ever since I got back to my desk after theEaster break I have had an odd problem witj C3d 2012.

The pop up names of the buttons along the bottom (snap, grid, osnap etc)  are apparently now in Chinese. Tool tips for other tools are also containing a mixture f what appears to be Chines plus corrupted characters.

View 2 Replies View Related

AutoCAD Civil 3D :: Handy Routines For Controlling Alignment ToolTips

Sep 22, 2006

4 little helper functions to turn off & on the ToolTips associated with alignments. Handy for when you have a number of nearby alignments and you don't need the constant showing of all the data.

Intended for buttons, actual function names may be shortened for keyboard use.

|;
(defun c:all-align-ttips-off ()
(if (ssget "x" '((0 . "AECC_ALIGNMENT")))
(progn
(vlax-for ent (vla-get-activeselectionset
(vla-get-activedocument
(vlax-get-acad-object)))
(vlax-put-property ent 'showtooltip :vlax-false)
[code]....

View 9 Replies View Related

AutoCAD Civil 3D :: Turn Off Tooltips Hides Tooltip But Mouse Moves On Jumping Mode

Jul 29, 2013

what can I do to avoid the annoying mouse cursor "delay" or "jumps" when I move it inside my project ?

I have one surface and 3 aligments....

I have tried turn off tooltips on general options but... yes I dont see tooltips but the mouse seems to investigate the objects below the cursor....

In adittion,. is there a variable to control this ?

Civil 3D (2013)

View 4 Replies View Related

Photoshop :: You Have No Items To Display / 24 items Hidden Error Message

May 25, 2012

How to I "unhide" my photo files in My Pictures?

View 5 Replies View Related

Photoshop :: CS6 Tooltips Don't Fully Display

Jul 1, 2013

Since initially installing PS CS6, the tooltips do not completely display. I get part of the white band to pop up that displays slightly less than the first letter of the tool tip. I have uninstalled and reinstalled and the problem persists. I'm using Photoshop CS6 v. 13.0.1 x 32 on Windows 7 Enterprise. I have the Adobe Design and Web Premium CS6 and tool tips work just fine on all the other programs that I use in the suite.

View 2 Replies View Related

CorelDRAW X3 :: Turned Off Show Tooltips

Apr 19, 2012

I'm attempting to use layers and the Object manager pops up (like a tooltip) when I setting up my layers.  I've turned off "show tooltips" option but this doesn't  stop the object manager from showing them.

View 4 Replies View Related

CorelDRAW Graphics Suite X6 :: Tooltips Won't Display?

Apr 8, 2013

I'm a longtime CorelDraw user (since the 90s), so I generally know what all the tools are... but there are times my mind lapses. Unfortunately, in CDX6 none of my tooltips appear. This is on version 16.3.0.1114 .

CTR+J > Workspace > Display > Show Tooltips has no effect.

Running on Windows 7 Professional x64 with 12GB RAM and NVidia Geforce 480 with latest drivers.

View 5 Replies View Related

GIMP :: Keyboard Shortcuts Disappear From Tooltips?

Aug 27, 2013

I'm using Gimp 2.8.4 on Kubuntu 13.04.

When I change to single window mode, the Shortcuts disappear from the tooltips of the tools window (ie. 'E' for Elipse, 'Shift+B' for Bucket etc). The tooltips still work, and I can still check them on the tools menu (alt+t). But it would be nice to be able to see them on the mouseover tooltip. If I close Gimp and reopen, the shortcuts show up again on the tooltips. But if I change to single window mode again, they will disappear one more time.

View 1 Replies View Related

Illustrator :: Move Tooltips To The Left Of Mouse Pointer?

Dec 19, 2012

I am using Illustrator on a Wacom 24HD on a PC, which works quite well, except that as a right handed person, the tooltips, which appear to the right of the mouse cursor, are covered by my hand.  Windows (and the Wacom settings) both have a left hand / right hand setting which control where a popup menu appears, however, I do not see anywhere where I can control where the tooltips appear, presumably because this is an Illustrator feature, not a Windows feature.  Its particular important for this application because tooltips are used for information (such as size when dragging out new shapes), not just for beginners needing a reminder what a button means. To put the tooltips to the left of the cursor instead of the right?

View 1 Replies View Related

Lightroom :: 5.3 Does Not Show Image Info Tooltips In Grid View Expanded Cells?

Jan 17, 2014

In my copy of Lightroom 5.3, image info tooltips do not show in the grid view expanded cells even though that option is activated in view options. Is this an issue with Lightroom 5.3? (Note: Image info tooltips in grid view compact cells and the filmstrip do display, however.)

View 1 Replies View Related

AutoCAD Inventor :: Modify STP Model

Oct 22, 2013

I have a STP file of a seat that I just want to simply modify it's dimensions.  Bring some aspects in closer, raise the back, and hollow out the middle.  I can't seem to do anything and in searching online I only ended up with Inventor Fusion 2013 R1 that crashes each time, and Fusion 360 which has to be the worst user experience I have ever found in a piece of software. 

(Side note I understand a little about solid models and surface models, but I just want something to work, otherwise inventor is a glorified model viewer.

I couldn't attach the file so here is the link to it. [URL]........

View 7 Replies View Related

AutoCAD .NET :: How To Modify Leader Vertices

Aug 30, 2011

How do I interate through the vertices of a leader and update them.

I have tried

myObjRef.UpgradeOpen()
For i = 0 TomyObjRef.NumVertices - 1
 Dim MyVertex AsNewGeometry.Point3d(myObjRef.VertexAt(i).X, _
myObjRef.VertexAt(i).Y, _
0.0)
myObjRef.SetVertexAt(i, MyVertex)
Next

I had expected properties like StartPoint LastVertex to be updated.

View 6 Replies View Related

AutoCAD LT :: Modify Drop Down List

Feb 27, 2012

Working with LT2012 found that the 'Properties' drop down list can be slow to populate - filling up a line at a time.

View 4 Replies View Related

AutoCAD Inventor :: Modify A Stl File With It

Mar 6, 2013

for a study that I have to do, I did run a company specialized a 3D scan of some engine parts. Files that have given me are .stl that I can not modify or edit with inventor ..how can I make these stl files like editable solids?

View 4 Replies View Related

AutoCAD LT :: Modify 2D Drawings Of Terminal

May 4, 2012

We need to modify the 2D drawings of our terminal..The drawings are in DWG format and and 2D plot plans and isometrics,...which version of autocad would be suitable for the mentioned working above?I was considering Auto Cad LT.

View 5 Replies View Related

AutoCad :: Unable To Modify Table

Jul 3, 2012

I have simple 3 column 4 row table I copied from another drawing and am tying to revise the text in the cells and can't. Text is entered into the cell but is on top of the existing text from the copied table. It also appears as though I can't delete the existing text either. I have checked the cell locking option and the cell is "unlocked" I thought this had something to do with the issue but apparently not.

View 4 Replies View Related

AutoCad :: Modify Dimension Style

Jan 8, 2012

How I need to modify dimension style if I want to get like in my given picture?

View 9 Replies View Related

AutoCad :: Modify Block With Attributes

Mar 29, 2012

I have a block which provides me a lot of things:

1) dwg name & path
2) date stamp
3) latest author of changes
4)misc. title block information

I'm not sure how to modify this one. I'd like to delete the item #4 options. I'm not even sure if I can edit this as a block.

View 3 Replies View Related

AutoCad :: How To Edit / Modify File

Aug 19, 2012

I create a file of pemnut drawing so that I can use it as library file and then copy and paste to other of my other drawings. I don't know what is going on of the file. After 2 hours I created the file, it cannot be edited/copied.

View 9 Replies View Related

AutoCad :: How To Use Ribbon

Oct 10, 2012

After the last issue with ACAD and Vista my IT director has finally decided I can have a new computer... In April. So I need to know what people think would be good graphics cards, processors, etc. for ACAD 2012 & 2013. I say 12 because most times I'm in 13 something goes wrong (Vista). So I have gone back to 12.how to use the Ribbon now and I guess I'll have to learn Windows 7 too. I like my XP and toolbars and I'll miss them.

View 9 Replies View Related

AutoCad :: How To Unselect Items On The Fly

Sep 14, 2012

I am running AutoCAD 2013, and when I shift select to unselect objects (lines, polylines, etc.) it doesn't unselect but rather a window called "Image Select" appears and asks me which image(s) I would like to select. How I can unselect items on the fly?

View 1 Replies View Related

AutoCAD Inventor :: Modify Face With Draft?

Jul 11, 2013

I am trying to put a 1 degree draft on the face shaded in yellow in the direction I have shown....not sure how to accomplish this?

View 4 Replies View Related







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