Trust tablet + illustrator CS3 + pressure problem

Hi guys,
I've get recently trust slimline tablet for mac. Using Mac OS X 10.6.2 with adobe cs3. I've installed the tablet, and it works ok with photoshop  and does recognize brush pressure and everything. But illustrator doesn't seem to see it - I still can draw and use the pen, but when I'm trying to change calligraphic (or any other) brushes settings to pressure sensitive it's impossible: the only variables working are fixed and random. the pen icon in right bottom corner is crossed. Have contacted trust - and there is no special drivers for illustrator, anyway have installed the newest drivers, have installed illustrator update. restarted everything and so on - and still no result. and photoshop still perfect. Any advice? Maybe I should turn on something different than just brushes settings? Have been trying to find any solutions on forums, but no luck there
Thanks in advance

I got the one for mac. [Slimline design tablet for Mac, 15908, 'Fully compatible with Mac OS tablet']. If it was to be working with windows only would expect it to not work with photoshop and other things as well....

Similar Messages

  • Viewing large Illustrator CS3 files problem

    I use bridge to browse through previous work in created in Illustrator CS3.
    Problem - when viewing these files in Bridge some files (whatever their dimensions) show as large thumbnails and others (with the same AI dimensions) are small and do not seem to stretch in Bridge?
    Can anyone explain how to stretch the thumbnail in Bridge.

    Sorted - I need to save the CS3 file with 'create pdf compatible file' checked in the options, and it then opens as a large thumbnail in bridge.

  • Illustrator CS3 saving problems

    We have recently integrated our MAC's with a new mini MAC sever.  Still authenticating on a windows domain and all home areas are network locations on a win2k3 server.
    All my Adobe CS3 programs work as you would expect with the exception of Illustrator.  I can make a new file under any user name and save it.  However if I load that same file up or any other saved file I get errors - some of the errors are on loading the file, ie, plugin's and Parm errors.  These all allow me to continue if they show up (not all the time), but no matter what I cannot save the file if I edit it or not.  I just get 'UNEXPECTED ERROR SAVING'.  I can't save anywhere not to a USB pen, network drive or local HDD.  I can save as an eps file but when I go to the location to see what has saved ther is no file there.
    I have tried loosing the parameters files and saving as an admin but still the same problem 'Unexpected error saving'.  Installed Illustrator and re-installed still the same problem.
    Can anyone give me any clues at all please??
    Dave S

    I am also having problems with a new trial version of Illustrator CS5.  Been working fine for several days of trial version, but got a message to run Application Manager today, and had to update/install a new 30 day trial.  I cannot save anything, new work, previous work.  Am on a PC, window XP, plenty of memory, power,etc  Not a great introduction to someone thinking of buying the new program.

  • ILLUSTRATOR CS3 EXPORTING PROBLEM

    HELLO, I WAS WONDERING IF ANYONE COULD TELL ME WHAT IM DOING WRONG. IM TRYING TO EXPORT A SELECTED GRAPHIC FROM A CS3 ILLUSTRATOR FILE TO PHOTOSHOP. WHATS HAPPENING IS, INSTEAD OF EXPORTING JUST THE SELECTED ITEM, ITS EXPORTING THE WHOLE PAGE.? I CANT WORK OUT WHAT IM DOING WRONG.

    Yo kev, I found the crop area comand in the object menu, on your menu bar at top of screen. I've worked out a crude way of using the "crop area " command to localise objects for exporting.
    1. draw a rectangle roughly the size of graphic you want to export.
    2. go to, object menu, crop area, make. this should make crop marks over the rectangle youv'e just created.
    3. move your graphic ontop of the rectangular area, with crop marks youve just created.
    4. file, export.
    so far i havent had any problems with this method.
    give it a go.

  • Illustrator CS3 printing problem

    When I print something on illustrator there is always blocks which have a brighter colour on the work and it doesn't seem to be random. I have an inkjet printer, has anyone got any ideas?

    Olithe,
    To print (reasonably) correctly from Illy you should have a PostScript printer (driver, or at least an emulation of one). Some (older) versions simply refuse to print non PostScript.
    You may Save As/Print to PDF and take it from there; You can see whether there are issues on screen.

  • Illustrator CS3 Linker Problems

    I'm Trying to add a menu to my plugin
    AIErr error = kNoErr;
    const char* label = "Sign Thing"; 
    char* name = "Sign";AIPlatformAddMenuItemDataUS MenuName;
    MenuName.groupName = (
    const char*)kEditMenuGroup;sUnicode->Initialize(MenuName.itemText,label,
    sizeof(label),kAIPlatformCharacterEncoding);error = sMenu->AddMenuItem(message->d.self,NULL,MenuName,kMenuItemNoOptions,&g->signMenuHandle);
    if(!error){ 
    //error = sMenu->AddMenuGroup(name,kMenuGroupAddAboveNearGroup,kHelpMenuGroup,&g->signGroupHandle);
    //error - sMenu->AddMenuGroupAsSubMenu(name,kMenuGroupAddAboveNearGroup,kHelpMenuGroup,&g->signGrou pHandle);
    return error;
    Im getting Linker errors from use of the AIUnicodeString class. I've seen in the forums that I need to include AIUnicodeString.cpp, which I have. Now I'm getting other linker errors.
    SignPlugin.obj : error LNK2001: unresolved external symbol _sAIUnicodeString
    1>SignPlugin.obj : error LNK2001: unresolved external symbol _sSPBlocks
    1>..\Plugin\SignPlugin.aip : fatal error LNK1120: 2 unresolved externals
    Any help would be great,
    Thanks in advance.
    Jeremy

    I already had Unicode added, just added SSPBlocks with the same result.
    // General Suites#include "
    SPBlocks.h"#include
    "AIArt.h"
    #include 
    "AIPath.h"
    #include 
    "AIRealMath.h"
    #include 
    "AIRandom.h"
    #include 
    "AIDocumentView.h"
    #include 
    "AIMatchingArt.h"
    #include 
    "AIMdMemory.h"
    #include 
    "AIUnicodeString.h"
    #include 
    "AILayer.h"
    #include 
    "stringUtils.h"
    #include 
    "IAIUnicodeString.cpp" 
    *SUITE MEMORY MANAGEMENT
    //Allocate Suites
    static
    ASErr AllocateSuites(SPBasicSuite* sSPBasic){ASErr error = kNoErr;
    error = sSPBasic->AcquireSuite(kAINotifierSuite,kAINotifierSuiteVersion,(
    const void**)&sNotify); //1.
    if(!error){error = sSPBasic->AcquireSuite(kAIDocumentListSuite,kAIDocumentListVersion,(
    const void**)&sDocList); //2.
    if(!error){error = sSPBasic->AcquireSuite(kADMIconSuite, kADMIconSuiteVersion2, (
    const void**)&sIcon); //3.
    if(!error){error = sSPBasic->AcquireSuite(kADMBasicSuite,kADMBasicSuiteVersion10,(
    const void**)&sBasicADM); //4.
    if(!error){error = sSPBasic->AcquireSuite(kAIArtSuite, kAIArtVersion,(
    const void**)&sArt); //5.
    if(!error){error = sSPBasic->AcquireSuite(kAIDocumentSuite, kAIDocumentVersion,(
    const void**)&sDoc); //6.
    if(!error){error = sSPBasic->AcquireSuite(kAIMenuSuite,kAIMenuVersion,(
    const void**)&sMenu); //7.
    if(!error){error = sSPBasic->AcquireSuite(kAILayerSuite, kAILayerVersion,(
    const void**)&sLayer); //8.
    if(!error){error = sSPBasic->AcquireSuite(kAIUnicodeStringSuite, kAIUnicodeStringVersion,(
    const void**)&sUnicode); //9.
    if(!error){error = sSPBasic->AcquireSuite(kSPBlocksSuite, kSPBlocksSuiteVersion,(
    const void**)&sSPBlock); //10.
    return error;}
    //release allocated suitesstatic 
    ASErr ReleaseSuites(SPBasicSuite* sSPBasic){ASErr error = kNoErr;
    //Release all suites
    sSPBasic->ReleaseSuite(kAINotifierSuite,kAINotifierSuiteVersion); 
    //1.
    sSPBasic->ReleaseSuite(kAIDocumentListSuite,kAIDocumentListVersion); 
    //2.
    sSPBasic->ReleaseSuite(kADMIconSuite, kADMIconSuiteVersion2); 
    //3.
    sSPBasic->ReleaseSuite(kADMBasicSuite,kADMBasicSuiteVersion10); 
    //4.
    sSPBasic->ReleaseSuite(kAIArtSuite, kAIArtVersion); 
    //5.
    sSPBasic->ReleaseSuite(kAIDocumentSuite, kAIDocumentVersion); 
    //6.
    sSPBasic->ReleaseSuite( kAIMenuSuite,kAIMenuVersion); 
    //7.
    sSPBasic->ReleaseSuite(kAILayerSuite, kAILayerVersion); 
    //8.
    sSPBasic->ReleaseSuite(kAIUnicodeStringSuite, kAIUnicodeStringVersion); 
    //9.
    sSPBasic->ReleaseSuite(kSPBlocksSuite, kSPBlocksSuiteVersion); 
    //10.
    return error;

  • Tablet PC calibration error in Adobe Photoshop and Illustrator CS3 whilst in Extended Desktop Mode

    Hey everyone!
    I've run into a snag which hasn't bugged me before because I never used a second monitor, but now that I do, Photoshop and Illustrator don't function properly.
    I am running my Adobe products on my Lenovo X61 Thinkpad Tablet, which is Wacom PenEnabled. It's got the basic digitizer pen and pen pressure features, no stylus tilt or anything.
    Whenever I run Photoshop or Illustrator in Extended Desktop Mode so I can have a different window open on my external monitor and the Adobe app on my tablet screen, my stylus goes strange. It seems to think that the extended desktop is part of the Adobe window, so when I move my stylus to draw, the cursor will appear on the external monitor, usually proportionate to the size of the screen...ie. It interprets the external and tablet screens as one desktop and the top left corner of my tablet screen is the top left of my external, whilst the bottom right on tablet IS the bottom right on tablet, if that makes any sense...sorry.
    So I can't draw anything in photosho unless I set it back to standard desktop mode, or mirrored desktop. I've searched over the net and these forums and I can't find a fix for this. I was walking in harvey norman the other day and the Wacom Cintiq 12" was there on display, and it had the same issue with extended desktop and photoshop.
    Has anyone had this issue before and/or does anyone know of a fix for it? I'll keep searching around and playing with the computer until I fix it and I'll post any solutions I find here if noone else has one.
    My system details are:
    Abobe Photoshop CS3 10.0.0
    Adobe Illustrator CS3 13.0.0
    OS: Windows Vista Build 6001, Service Pack 1, 32bit
    RAM: 2GB
    HD: 18.2GB free Disk Space (out of 66.3GB on the Active Partition)
    Video: Intel GMA: Mobile Intel(R) 965 Express Chipset Family

    I'm using an HP tx2011au tablet pc, using adobe flash cs3 and have the exact same problem. it becomes decalibrated only while the flash window is open, and only while flash has a file open, and only when using an extended desktop. even if flash is open and it has no files open it works fine.

  • Illustrator CS3 - problems saving as pdf  (or pdf-compatible)

    Hi,
    My office are trialling Illustrator CS3 as we're getting some business card type work and we'd like to be able to send the proposed designs to the client as a multi-page PDF.
    Unfortunately, I'm having a terrible problem when saving a particular file i) as .ai format, if PDF compatibility is checked, &
    ii) as a PDF.
    In both cases the progress bar goes half way and then Illustrator hangs, eventually saving after 3 hours, at the last try!
    The multi-page document consists of 7 x A4 tiles, I know this sounds big but actually there's not that much stuff in it: on each page there's a bit of text, a gradient, 3 monochrome logos and two drop-shadows. There is also a spot colour and a linked image (500kb). If/when it eventually saves the pdf is <150kb and the .ai is <2mb.
    I've tested various options when saving to try to trace the problem and it ONLY hangs when PDFing is involved; it saves with compression really fast.
    Obviously the time it's taking isn't practical so I'm hoping someone can suggest what might be wrong. The PC is a decent spec: WINXP sp2 / 3GHz P4 / 1mb ram / 256mb gfx / 1.5Gb swapfile / 5gb defragged space on HD. I've looked at the Windows Task Manager as Illustrator is trying to save - the CPU is only up to 50% and the swapfile usage is 300mb - if it's taking so long why isn't it maxed out?
    Hope someone can help, thanks in advance.
    smithy_ss

    I can't save a 1.4 meg .ai file as .pdf. Program freezes.

  • Image Link Problems in Illustrator CS3

    Am running on Mac OS 10.4.11. Mac is a Dual 2GHz PowerPC G5. File server is an IBM x3650, running FullPress Software and Xinet and Flashnet.
    When saving files in Illustrator CS3 with preserved image links to hi-res images on the server, other users who later open that ai file, have to manually relink to images on the server. If the file is opened on the Mac that created it, images link automatically when opened again. The problem is that other Macs do not see the links/paths to the images.
    It is frustrating and time-consuming. The problem seems to be isolated to just 2 specific Macs. One with the spec as above, and the other is a 2x2.66GHz Dual-Core Intel Xeon, running on the same Mac OS.
    All software installs are same on all macs in my studio.
    The overall problem is : 17 Macs. 15 of these can open files created on each others Macs without issue. However, if files were created on the 2 "problem Macs", link issues arise. The 2 problem Macs have link issues with ANY other mac when opening files saved on any other Mac.
    Sorry for long winded nature of this, but can anyone help? Have tried all sorts and have run out of ideas on this. URGENT help needed! Thanks.

    Thanks Ian and Jim.
    Have solved the mystery.
    Opened files in Text edit, and the links defined section, did show ghosted volumes on problem macs.
    So, went to desktop > From the Go menu, select Go to Folder >then entered "/volumes"
    This brought up the volumes and highlighted some anomalies. Folders appearing with same name as my server, meaning when the server mounted it added a suffix of -1, -2 etc.
    MANY THANKS Gentleman.
    Tim.

  • Weird Z and Y key swap and arabic filename problems in Illustrator CS3

    Hi
    I am having some very weird problems with Illustrator CS3.
    At completely random times, the software starts to think my Y and Z keys have swapped places. i.e. When I type anything or use any shortcuts, the opposite letters appear and are used.
    Also from time to time, when I save a file, the filename is written in Arabic and I have to rename the file again in Explorer to correct this.
    Both of these problems are random and a restart or Illustrator usually fixes both of these. But what a pain and waste of time.
    Anyone else getting problems like this?
    Oh, I'm using Windows Vista.
    Thanks
    Mr M

    My guess is, it is related to Windows. Try to press shift and ctrl at once if the problem occurs. The keys should be switched back...
    You have probably installed more than one keyboard in Windows. Shift-ctrl is the standard way to switch between them. You can change this in the Windows keyboard configuration file.
    I had this problem with a German and a VS keyboard installed.

  • A problem highlighting/selecting text in Illustrator CS3

    In several instances I can't highlight text to copy or to edit, other times it works fine. If I click the radio button for the text in layers (other layers may be locked to prevent accidental selection), the baselines appears and I should be able to highlight the text, but I can't. If I highlight some other unaffected area of text successfully (unlocked layers), sometimes it will allow me to select the problem text directly after. Then it will go back to being a problem, why?

    I'm using the general text tool, I've locked the other sublayers to avoid accidentally selecting those items. Then I click the radio button on the sublayer I wish to edit or copy, which reveals the baselines. Then if I click within that object to highlight text with the cursor, the text tool creates a new textbox/sublayer and does not highlight the text I intended.
    From: Monika Gause <[email protected]<mailto:[email protected]>>
    Reply-To: <[email protected]<mailto:[email protected]>>
    Date: Wed, 26 Oct 2011 14:49:40 -0600
    To: Roger Daleiden <[email protected]<mailto:[email protected]>>
    Subject: A problem highlighting/selecting text in Illustrator CS3
    Re: A problem highlighting/selecting text in Illustrator CS3
    created by Monika Gause<http://forums.adobe.com/people/Monika+Gause> in Illustrator - View the full discussion<http://forums.adobe.com/message/3992086#3992086

  • Problems reinstalling Illustrator CS3

    I was having issues with Illustrator CS3, it kept crashing, so in hopes of fixing the problem I uninstalled and am now trying to reinstall.
    When I put the install disc in, it starts to go through the process then asks for me to put in InDesign CS4 disc. I do and then a minute later it asks for me to put in the Illustrator CS3 disc. And it keeps going back and forth like that and it doesn't seem to be making any progress in installation.

    Illustrator CS3, InDesign CS4
    It is on a PC so we did an uninstall through the control panel.

  • Gradient with stroke problem Illustrator CS3

    We make a gradient object in Illustrator CS3 and give it a stroke which is centered. Then we rotate the object and the gradient rotates with the object.
    But then when we put the stroke alignment to inside or outside the gradient fails. It shows the gradient in the original 0-position instead of the angle we have created. When we put the stroke alignment back to center the gradient shows as we meant it to show again.
    When stroke alignment is on outside or inside before we rotate the object it shows the same problem.
    But when I copy an object from CS2 with an angled gradient and a inside or outside aligned stroke. The problem isn't there. When we start copying the object within CS3 the problem shows again (not when I use alt-key to copy, but with ctrl+c and then ctrl+v, ctrl+f or ctrl+b).
    Illustrator CS2 didn't have this problem. But now in CS3 we have it. I used to have this same problem in old versions from Macromedia Flash. But I never had it with Illustrator.
    Is this a bug or do we need to handle our gradients in a different way when using Illustrator CS3?

    It's a memory issue. If you scale your artwork down (say, to 50%), then save, it should work (it can be scaled up in the page layout software). If you're using raster effects you'll have to make sure they scale as well and that your raster effects resolution is appropriate for the final output size.

  • Illustrator CS3 problem

    Hi,
    I've been having a bit of what I believe is a problem with Illustrator CS3. I created a graphic layout using Photoshop CS3 and saved the finished product as a jpg to open up and "slice" in illustrator to code it, but every time I open up the image it comes up about half the size of the actual image. At first I thought I had saved the jpg as a smaller size than what it's supposed to be, but when I looked in my files it's the size it should be. I also tried exporting the finished work from photoshop to illustrator, but it did the same. I've also searched around online, including search engines, adobe help, faq, and forums, and have found nothing on this.
    If you want/need specifics on my computer, I can give them, but I am running Windows Vista.

    How exactly would I go about doing that? I edited the resolution and it made the image smaller/larger overall. I've never had to mess with resolution or DPI before because I've never had this problem so I'm quite green about it.

  • Devanagari MT problem in Adobe InDesign & Illustrator CS3

    Someone is helping me create a graphic by emailing me the Hare Krishna mantra in Devanagari MT. Devanagari MT this person has sent me is editable and copy and paste and displays fine in Pages 08, but when I copy and paste the same script (with the Devanagari QWERTY keyboard selected) into Adobe InDesign or Illustrator CS3, the diacritics on the conjuncts separate like there is a kerning problem or something.
    The same problem occurs when I try to type HRE (with the Devanagari MT QWERTY keyboard selected) in InDesign to get 'Hare'.  'Ram' types and display displays OK because there are no diacritcs.
    Also, I am not a Sanskritist and I have no idea how to get the word 'Krishna' to appear correctly in this font. Typing Krsna and Krishna doesn't come close to the correct Devanagari script. Anyone know the keystrokes to get those conjuncts in Krishna's name?

    Old Adobe stuff doesn't normally support Devanagari.  See these notes:
    http://m10lmac.blogspot.com/2010/07/new-plug-ins-for-complex-scripts-for.html
    http://m10lmac.blogspot.com/2009/02/adobe-app-language-improvements.html

Maybe you are looking for

  • How do i connect to itunes with my ipad 2

    I cant see where to open an itunes account to download tunes.once ive done that how do i get these tunes from my ipad to ipad nano?

  • Decimal places in alternative unit of measure

    Dear Gurus, we have a material having two units of measure. Kg and meter. we have to define base unit as meter and alternative as kg. 1 m = 5.236 kg. But when i define this in alrenative UOM system gives error "Decimal places are not permitted" I kno

  • What's going on? Lots of problems!

    Hi there, I'm having a few different problems that seem to have happened all at the same time. They are all very annoying. Firstly, I have a 1gHz eMac, 768MB RAM, MacOS 10.2.8 My first problem is that Adobe Photoshop Elements 2.0 will no longer open.

  • My IPad just went black and will not turn on or off.  Nothing happens. Help!

    How can Iget my IPad to come on?  It jus went black.  It will not turn on or off.

  • My name appears with numbers in another user

    Hi I connected my Spotify account to Facebook and I have problem now with an user. My name appears with numbers in his account. I think that problem is because i had blocked this user in my Facebook :(Can you solve this please? I can´t speak with thi