Outline drawing help

Hi all
I have been working on an outline drawing from an image using this tutorial: http://virtualphotographystudio.com/photographyblog/2008/12/17/use-photoshop-to- create-a-line-drawing-from-a-digital-image/
everything works great the only thing I am not sure how to do is how to change the colour of the outlines from the grey to a blue or black outline.
can any help me explain how to change the colour of the line drawing to a blue/ black or what ever colour prefered?
many thanks for your help
I have attached demo psd file

In the imaging model, type has paint attributes. There is a paint attribute for the spline path, called the stroke, and a paint attribute for the fill inside the spline path. When you select Outline in the Font menu, whatever Apple application you use you are telling the imaging system that you want to set the fill attribute to None. The imaging system has a predefined attribute for the stroke since if it had not then the stroke default would be None. And if it were None, you would not see the type at all - neither the fill that you yourself set to None nor the stroke that was None in the type and should therefore be set to something positive. If you don't want this behaviour, don't use the Outline command in the Font menu, simply.
/hh

Similar Messages

  • Drawing help!!!

    Hi everyone,
    I just needed help with my java drawing program. I have to create a program that will allow user input to choose the demo they want. For example, demo1 will be "draw lines", demo 2 will be "draw oval" and so on.. However, my main problem is, how will i draw 10 lines?? would i use a loop? This is what i have so far and it's been driving me nuts because it only draws one line... i'd like it to offset by 1... but it doesn't seem possible no matter what i do. Also there's a circledemo in there where it requires me to use drawOval to draw the circles and have them in a pattern... the third demo wants me to color them. and the last demo which is a rectangle demo wants me to place any rectangle randomly on the applet... This is what i have so far.
    import javax.swing.JOptionPane;
    import java.awt.*;
    import javax.swing.*;
    import java.applet.*;
    * @author
    * @version
    public class Shapes2 extends JApplet
    String input;
    int choice;
    int lines=10;
    public void init()
    do
    input = JOptionPane.showInputDialog("Enter 1 to draw lines\n" + "Enter 2 to draw rectangles\n" +
    "Enter 3 to draw ovals\n" + "Enter 4 to draw polygons");
    choice = Integer.parseInt(input);
    //paint(Graphics g);
    repaint();
    }while (choice > 4);
    public void paint(Graphics g)
    switch (choice)
    case 1:
    if (choice == 1)
    {lineDemo(g);
    break;}
    case 2:
    if (choice == 2)
    {circleDemo(g);
    break;}
    case 3:
    if (choice == 3)
    {circleDemo2(g);
    break;}
    case 4:
    if (choice == 4)
    {rectDemo(g);
    break;}
    default: break;
    } g.drawString("Please enter 1, 2, 3 or 4", 20, 20);
    private void lineDemo(Graphics g)
    g.drawLine(20,20,280,280); // how do i draw 10 lines here???
    private void circleDemo(Graphics g) // draw circles all over the screen ...using nested for loops
    private void circleDemo2(Graphics g) //color the drawn circles from above
    private void rectDemo(Graphics g) // draw any graphical item on the screen randomly
    Edited by: blackcoda786 on May 23, 2009 9:41 PM
    Edited by: blackcoda786 on May 23, 2009 9:43 PM

    import javax.swing.JOptionPane;
    import java.awt.*;
    import javax.swing.*;
    import java.applet.*;
    * create a shape then have it repeat 100x.
    * @author
    * @version
    public class Shapes2 extends JApplet
        String input;
        int choice;
        int lines=10;
        public void init()
            do
                input = JOptionPane.showInputDialog("Enter 1 to draw lines\n" + "Enter 2 to draw rectangles\n" +
                                      "Enter 3 to draw ovals\n" + "Enter 4 to draw polygons"); 
                choice = Integer.parseInt(input);
                //paint(Graphics g);
                repaint();
            }while (choice > 4); 
    public void paint(Graphics g)
                    switch (choice)
                        case 1:
                            if (choice == 1)
                                    {lineDemo(g);
                                    break;}
                        case 2:
                            if (choice == 2)
                                    {circleDemo(g);
                                    break;}
                        case 3:   
                            if (choice == 3)
                                    {circleDemo2(g);
                                    break;}
                        case 4:
                            if (choice == 4)
                                    {rectDemo(g);
                                    break;}
                            default: break;
                    }       g.drawString("Please enter 1, 2, 3 or 4", 20, 20);
               private void lineDemo(Graphics g)
                   // how do i draw 10 lines here???
                    for(int i=0; i<10; i++)
                     g.drawLine(20,20,280,280)
                private void circleDemo(Graphics g) // draw circles all over the screen ...using nested for loops
                private void circleDemo2(Graphics g) //color the drawn circles from above
                private void rectDemo(Graphics g)  // draw any graphical item on the screen randomly
            }Hi cotton, thanks for your reply, i know how to write a for loop, however im not sure if what i did above is correct... it seems to only create 1 line each time...

  • Drawing help: paths and fills

    Hi there, i'm looking for help with this. When I draw a path with the pen tool, and fill it, it seems as if the shape now has two parts. If i drag the filled area around, it's breaking apart from the path (or border). this is kind of annoying for me, so how can i make this one entity?

    thank you. i still find this behaviour a little cumbersome though. for example, on a rectangle shape it's a few clicks to select all the areas of the border, and the fill.

  • Super newbie drawing help

    Hey all...im a super newbie and this is probably easy, I just
    can't find what i need in the documentation..so im hopping you guys
    can give me some insight. I'm trying to figure out how to draw
    vectors using AS on some container in flex. Flash makes it super
    easy, but I haven't had much luck with flex. Any help would be
    awesome...once I get better at this..i'll try and return the favor
    thanks

    Let's say you want to make a Flex Canvas that draws a red X
    from corner to corner, no matter what size the Canvas is. Here's
    how you do that:
    1. Create a new ActionScript class, extending Canvas. You can
    also do this with an MXML file with Canvas as the root tag if you
    are more comfortable doing that.
    2. In your file, override the updateDisplayList function to
    draw the X:
    override protected function updateDisplayList(
    unscaledWidth:Number, unscaledHeight:Number ) : void
    super.updateDisplayList( unscaledWidth, unscaledHeight );
    graphics.clear();
    graphics.lineStyle( 2, 0xFF0000 ); // 2 pixel red lines
    graphics.moveTo( 0, 0 );
    graphics.lineTo( unscaledWidth, unscaledHeight );
    graphics.moveTo( unscaledWidth, 0 );
    graphics.lineTo( 0, unscaledHeight );
    } // end of updateDisplayList
    That's it. Whenever the Canvas change's size, the
    updateDisplayList function will be called. Using graphics.clear()
    will erase the previous X.
    You can get fancier and create a child UIComponent and then
    draw the X into that if you like, and if you choose to do that, use
    that's child's graphics property and create the child by overriding
    the createChildren() function.

  • MDX Outline Formuale - Help

    Hi,
    I have outline MDX formulae is attached to measure member "Y" in ASO outlilne:
    X is another measure in the outline. I have dimension like : DIMx where x is 1 to 9. DIM1 is measure dimension
    IIF(X = 0 , IIF(Count(Intersect({DIM3.CurrentMember}, {Descendants([DIM3 Member]))}))=0, X, <SUM Logic>),X)
    This formulae is applying to all the member combination now.
    It should be applicable to all the members in the outline expect members in different dimension ( Say DIM2,DIM4,DIM5). I want apply different Sum Logic for them.
    In other words, I dont want to apply this formula (Sum logic) when my current member combination is having members from DIM2,DIM3,and DIM4.
    How can it be redesigned to cater the issue having current logic in place?
    Please let me know if any other information is requried
    TIA
    Edited by: user636938 on Nov 22, 2008 9:26 AM
    Edited by: user636938 on Nov 22, 2008 9:27 AM

    You can't fully exclude a dim, but basically you would just tell your formula to evaluate only for the root member. So use a CASE statement to say when the member IS Dim2, Dim4, Dim5, etc, then execute the formula. This will keep the formula from evaluating when you drill on those dimensions and perform much better, which I assume is why you are trying to do this.

  • Macbook pro 2011 13" i5 slowed down, any help would be much appreciated (detailed info).

    Ok first off let me preface with as much detailed information as possible, as i have read many many posts on problems and hopefully mine will be detailed enough to not cause all you wonderful people a headache.
    Machine Details
    Macbook Pro 13inch model  (2011)
    Core i5 4gb RAM 250gb Standard harddrive
    As I am a very inexperienced I would very much appreciate a very idiot proof explaination, but any help I will be very thankfull for.
    The laptop was running like a dream and much better than I remembered my last mac (Macintosh LC) ever did. Ive had minor hickups this last year (a trackpad that went bust under warranty and a broken power supply) otherwise its been a wonderfull experience. The final hiccup that might be a cause, not sure hence I will mention it is that my battery is Conditon: Replace Now for about a month now.
    The laptop, as always was left ON, on its own connected to the wifi home network, when I returned the computer was working very slow. Any load on the harddrive/CPU. The cursor starts lagging (jumping), any keypresses are registered with a 2-10second delay. Any vidoes that i would try to play would suffer freezes in framerates/jams but audio remained fine. First step i was afraid that i may have contracted one of the new trojans so i downloaded an antivirus program, scanned the drive, but came out clean. Second step was to format the drive and perform a fresh install of OSX but no luck. Being inexperienced in Apple products i assumed that my harddrive (used to PCs) was on the fritz and went out and bought a 160gb Western Digital Black series 2.5inch harddrive. Having read all the guides and official knowledge bases on how to swap out the harddrive I did so with success. I placed in my installation OS 10.6 CD formatted the drive through the disk utility and performed a fresh install. Before doing any steps I went through the update cycle a couple of times till only the thunderbolt update remained (havent updated as I never used it). Sadly it hasnt solved the problems with cursor repsonse lag, video playback, and keyboard input lag under load.
    On this install I have performed:
    Verify Disk Permissions Many were found so I performed Repair Disk Permissions
    Verify Disk Came up with "Appears to be OK"
    performed a Pram reset (CMD+option +P +R)
    My main problem is that I live in europe nowadays (Poland to be precise) and cant go to a genius bar as they dont exist, and sadly the support is a tad behind the US standards and any minor repair will be at least a 4 week wait, hence i would like to try to exhaust possible solutions before giving it off to professionals: being a month out of the warranty period has abit to do with it too:)
    Sorry for the wall of text
    Thanks guys for any help you could throw my way!
    Chris M

    See the following:
    Kappy's Personal Suggestions for OS X Maintenance
    For disk repairs use Disk Utility.  For situations DU cannot handle the best third-party utilities are: Disk Warrior;  DW only fixes problems with the disk directory, but most disk problems are caused by directory corruption; Disk Warrior 4.x is now Intel Mac compatible. Drive Genius provides additional tools not found in Disk Warrior.  Versions 1.5.1 and later are Intel Mac compatible.
    OS X performs certain maintenance functions that are scheduled to occur on a daily, weekly, or monthly period. The maintenance scripts run in the early AM only if the computer is turned on 24/7 (no sleep.) If this isn't the case, then an excellent solution is to download and install a shareware utility such as Macaroni, JAW PseudoAnacron, or Anacron that will automate the maintenance activity regardless of whether the computer is turned off or asleep.  Dependence upon third-party utilities to run the periodic maintenance scripts was significantly reduced since Tiger.  These utilities have limited or no functionality with Snow Leopard or Lion and should not be installed.
    OS X automatically defragments files less than 20 MBs in size, so unless you have a disk full of very large files there's little need for defragmenting the hard drive. As for virus protection there are few if any such animals affecting OS X. You can protect the computer easily using the freeware Open Source virus protection software ClamXAV. Personally I would avoid most commercial anti-virus software because of their potential for causing problems. For more about malware see Macintosh Virus Guide.
    I would also recommend downloading a utility such as TinkerTool System, OnyX 2.4.3, or Cocktail 5.1.1 that you can use for periodic maintenance such as removing old log files and archives, clearing caches, etc.
    For emergency repairs install the freeware utility Applejack.  If you cannot start up in OS X, you may be able to start in single-user mode from which you can run Applejack to do a whole set of repair and maintenance routines from the command line.  Note that AppleJack 1.5 is required for Leopard. AppleJack 1.6 is compatible with Snow Leopard. There is no confirmation that this version also works with Lion.
    When you install any new system software or updates be sure to repair the hard drive and permissions beforehand. I also recommend booting into safe mode before doing system software updates.
    Get an external Firewire drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    Carbon Copy Cloner
    Data Backup
    Deja Vu
    SuperDuper!
    SyncTwoFolders
    Synk Pro
    Synk Standard
    Tri-Backup
    Visit The XLab FAQs and read the FAQs on maintenance, optimization, virus protection, and backup and restore.
    Additional suggestions will be found in Mac Maintenance Quick Assist.
    Referenced software can be found at CNet Downloads or MacUpdate.
    Be sure you have an adequate amount of RAM installed for the number of applications you run concurrently. Be sure you leave a minimum of 10% of the hard drive's capacity as free space.
    You may want to check for other issues outlined here:
    Helpful Links Regarding Flashback Trojan
    Visit Thomas Reed's site for insight and help: Mac Malware Guide
    A Google search can reveal a variety of alternatives on how the remove the trojan should your computer get infected. This can get you started. However, be careful about what you do as new variants of the malware circumvent the efforts of earlier tools.
    Also see Apple's article About Flashback malware.
    Apple has released Java updates for Snow Leopard and Lion users:
    Java for OS X Lion 2012-003; available only for users of Lion with Java installed.
    Java for Mac OS X 10.6 Update 8; available only for users of Snow Leopard.
    Flashback malware removal tool; available only for users of Lion without Java installed.
    Install whichever shows up in Software Update. It removes the malware (if present), updates Java (if present) and tightens up Java settings for the future.  You may download from Apple's web site instead of using Software Update, but it's important to know which one to get, because the other two won't work for you.
    For the truly paranoid see 10 Simple Tips for Boosting The Security Of Your Mac.
    However, I find it hard to understand the problems you describe on a computer if you erased the drive and reinstalled a fresh copy of OS X.

  • Drill down in the esssbase outline

    Looks like this is the true essbase knowledge base forum. I am experiencing a prob that I am hoping that someone has the answer to:
    There is a long long delay when I attempt to drill down in my outline. The outline is relatively small (a few hundred members) and the issue exist within all of of the dimensions (6 of them). It use to behave normal but just encountered this prob a few weeks now. Loading the app and data base is normal - just drilling down in teh outline presesnts a prob. Any idea what may be the cause? i am using the client version of EAS and teh serveris located on the same floor in the building where i sit. Essbase version 11.2.1
    tkx
    don

    If it is ASO, compacting outline may helps you.
    To compact ASO outline, refer
    http://www.essbaselabs.com/2011/11/11/essmdq-utility-for-aso-outline-compression/
    http://glennschwartzbergs-essbase-blog.blogspot.com/2010/06/aso-outline-compaction.html
    http://timtows-hyperion-blog.blogspot.com/2010/06/essbase-outline-performance-testing.html

  • Account blocked pls help not a week old!

    My account is suspended.
    But i have dont have a week this new account i am very happy about my new account.
    Today i get logout on phone and PC.
    i dont know what is the problem i change 3 times my password dont working i can't login.
    How to fix it pls help me...
    i hope you understand me.
    Username : [Redacted for privacy]
    First things, first: for your safety and protection, please never, ever include any personally identifiable information such as your real name, Skype account name, e-mail address, or a telephone number in a post on a public Community or forum such as this. Thanks!

    Hi, mather201, and welcome to the Community,
    Please check this FAQ to see if the steps outlined will help recover your account:
    https://support.skype.com/en/faq/FA10946/what-should-i-do-if-my-account-is-suspended-hacked-or-compr...
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Blue outline on clip?

    When i insert a photo, in a photo in photo, when i click play, to see the overall result, it does not show. It has a blue outline, but the other ones have a grey outline on the clip, and it shows when i click play. What do i do? I wasnt sure how i got the grey outline. Help please?

    Hey AshleyAsha,
    Thanks for the question. It sounds like you are using the picture-in-picture feature of iMovie and wish to change the border color. To do so, you’ll want to click the Adjust button in the toolbar after selecting the picture-in-picture effect. In the controls, you can then set a border color. For more information, see the “Adjust a picture-in-picture clip” section of this resource:
    iMovie Help: Create a picture-in-picture clip
    http://help.apple.com/imovie/mac/10.0/#mova1aaa682b
    Thanks,
    Matt M.

  • Reverse path direction in Illustrator CS5

    I have started to use Illustrator CS5 for outline drawing this year. I purchased the license time ago, but I always preferred to use FreeHand for outline drawing (I design lettering and typefaces).
    Now that FreeHand is unfortunately become a bit too obsolete for the new operating systems architectures, I have familiarized myself with Illustrator and was going decently, but I have been unable to find a solution to this problem yet:
    Whenever I need to reverse the direction of a path (for various reasons), I can’t seem to find a way to do so, unless of course it’s a composed path (from two closed paths). I need to perform this operation. At work, I use InDesign CS6 and I have seen Adobe has introduced it in its palette, but I can’t find it in Illustrator CS5 or CS6.
    Many thanks in advance to all those who could help me…

    You can temporarily make the simple path into a Compound Path (same thing as a FreeHand Composite Path) and then the reverse direction buttons in the Attributes palette will work. But like most everything in Illustrator, it's needlessly cumbersome:
    Select the single path (Object>Compound Path>Make).
    Select a portion of it with the white pointer. (Deselect, then click a segment or an anchor; don't altClick it to select the whole path, because Illustrator doesn't know the difference between a path's being selected as an object, as opposed to merely having all its anchors selected.)
    Click the Reverse Direction button in the Attributes palette.
    Deselect. Then select the whole path (sigh).
    Object>Compound Path>Release.
    Ridiculous, isn't it?
    The scripting object model provides for a path direction setting (polarity), but interface doesn't provide access to it on normal paths. This simple script will reverse the polarity of currently selected paths:
    //Begin Script
    for(i=0;i<activeDocument.selection.length;i++){
    if(selection[i].polarity==PolarityValues.POSITIVE){
      selection[i].polarity=PolarityValues.NEGATIVE;
    }else{
      selection[i].polarity=PolarityValues.POSITIVE;
    //EndScript
    Of course, while drawing glyphs, you'll soon run into the lack of other FreeHand no-nonsense features, such as extend/retract individual handles. And there's nothing you can do about the lack of Connector Points which ensure tangency between straight and curved segments.
    What font program are you using? FreeHand's progenitor, Fontographer, from which its path drawing interface was derived (and which pre-dated Illustrator), is now owned and sold by FontLab. I would (and do) use that.
    JET

  • Stroking a Path

    I've got a drawing that is currently composed entirely of paths. It's a pretty detailed outline drawing, so lots of closed and open paths, some quite small in size. My next step is to stroke the paths to create a vector image for printing. And now here's my question, which is so basic it feels dumb to ask, but I'm extremely new to this. (Thanks for your patience!) Is there a way to stroke all the paths at once? Or at least all the paths on one layer maybe? When I try to select all and stroke, I get an error. Thanks so much for your help!

    First of all what you want to do is of curse possible.
    In the tool Panel or what some refer to as tool bar there is the proxy for fill and stroke. stroke is the opened box or outlined box if you wish.
    Click on it to bring it to the front. You can select all if you wish and give it a stroke as long as you have a color selected as well.
    Once the proxy for the stroke in in the front you can select a color fro the swatch panel, the color panel or double click the stroke color proxy to bring up the color picker.
    You use the stroke panel to select a weight for the stroke you need both a weight and a color to make a stroke.
    You can select all items on a layer by clicking to the right of the circle in layer. You can then apply a stroke to all the paths on that layer.
    If the objects or paths are locked you will not have much success.
    So what we need is to no the error you are seeing.

  • Creating groups of paths after tracing image in Illustrator

    I created a raster image in a 3d program (let's say of a person) and placed it within Illustrator CS6.
    I traced the image and expanded that (and I need to keep this as photo-realistic as possible, including shading/coloring) -
    I now need to group the paths into separate regions - like the arms, legs, torso, and head, so I can export the file in SVG format and let someone manipulate it programmatically - with the ability to re-shade different areas.  There are well over a hundred paths, so manually clicking to group them all together isn't a good option.
    I also have an outline drawing with the exact demarcations of where I'd like to divide the regions (and it's important I get these exact as opposed to just eyeballing it)
    Any suggestions as to how I do this?
    Can I use the outline image (also exported from a 3d program) to slice things into the exact groups I need?
    Or can I bring that in and use a live paint feature on that to choose my areas and then somehow transfer that onto the main image below?
    Thanks for any suggestions.

    Here's an example.
    I made this turkey in a 3d program with different shading domains for hat, wings, body legs, and feet.
    The top image shows this image inside of Illustrator CS6 after I did Image Trace and Expand
    The next image shows all the paths that were created.
    The last is another image from the 3d program with an outline of the turkey with (most of) the domains I want for the turkey (accidently scaled the image, but imagine all 3 are the same size and overlap each other perfectly)
    How do I get from the second stage (with all those paths) - to exporting an svg from illustrator that has things grouped into just a few areas (in this case, wings, body, hat, thighs, feet)
    Thanks for any help. 

  • Saving Vector Images

    Please forgive me if this is answered somewhere. My searching skills are lacking, or I can't find quite what I'm looking for. I have two questions:
    I'm using the pen tool to draw a vector image (just an outline drawing, no fill) that will be saved as a pdf. The intent is for it to be a printable file for use as a (sewing) pattern. Part of the reason I'm using a vector image is so that the file can be made bigger or smaller to suit the user's needs. So, regarding saving the file and printing it, do I save it as a pdf just with the vector paths and achieve this? Or do I need to stroke the path before saving to the pdf? Or will stroking the path create a drawing without the vector-type (resizing) capabilities?
    Also, I don't really want the file to be editable, since I don't someone else reworking and "stealing" my pattern, but is there a way in pdfs to manipulate the image without using an editing program like Illustrator? If, for example, the user wanted to move part of an image to another place on the page?
    I'm a total newbie, so I appreciate your help!

    mygenaddy,
    I'm using the pen tool to draw a vector image (just an outline drawing, no fill) that will be saved as a pdf. The intent is for it to be a printable file for use as a (sewing) pattern. Part of the reason I'm using a vector image is so that the file can be made bigger or smaller to suit the user's needs. So, regarding saving the file and printing it, do I save it as a pdf just with the vector paths and achieve this? Or do I need to stroke the path before saving to the pdf? Or will stroking the path create a drawing without the vector-type (resizing) capabilities? Stroking the path does not change its being vector, but it makes it visible.
    Also, I don't really want the file to be editable, since I don't someone else reworking and "stealing" my pattern, but is there a way in pdfs to manipulate the image without using an editing program like Illustrator? If, for example, the user wanted to move part of an image to another place on the page? A PDF without Illustrator  Editing Capabilities (saving option) will put a certain limt to the editability, however not with such simple artwork. To be certain, you will have to use a raster format, but that is not scalable.
    I'm a total newbie, so I appreciate your help!

  • Home sharing not working after update to iTunes 12.1

    recenty updated iTunes to 12.1.0.71 64 bit for windows 8.1, and home sharing no longer works with my apple tvs. i have an apple tv 2 with software 7.0.3(6917) and an apple tv 3 aalso on 7.0.3(6917). I have tried the usual troubleshooting. Restoring, restarting, reinstalling itunes, made sure all the neccessary ports are open both on my router and firewall. Still not working. I would appreciate any help.

    I have similar issue and already opened another thread for it...no reply so far. So I'll give it a try in here.
    I'm using a Mac Mini (Mid 2010) with 4GB RAM, Yosemite 10.10.2.
    The Mac is connected by cable to a Gbit Ethernet network switch.
    I hope the following drawing helps to understand the network environment:
    Mac <--> Switch_1 <--> Switch_2 <--> Fire TV
             Switch_1 <--> WLAN Router AVM Fritz!Box 7270 <--> 30MBit Internet connection
    The Mac and the Fire TV (running AirPlay server App) are both connected by Ethernet cable, but to different switches.
    No WLAN enabled on Fire TV.
    The WLAN router is the DHCP server.
    For sure the remote App is running on an iPad (2) which is using WLAN.
    All network addresses are in same network and were provided by same DHCP server (running on WLAN router).
    All my music and internet radio is coming from the Mac.
    I use remote app (latest version from Appstore) on the iPad to connect to iTunes 12.0.1.26 running on my Mac.
    In iTunes I selected the Fire TV as AirPlay receiver.
    Fire TV is playing all music through my AV receiver.
    This is working perfectly fine except one issue which exists since update to Yosemite 10.10.0.
    It remained same with Yosemite 10.10.1 and 10.10.2.
    My problem is that I need to enable WLAN (wireless) on my Mac since update to Yosemite.
    When I disable WLAN remote app does not find my media library anymore and iTunes is unable to connect to the Fire TV.
    When I re-enable WLAN, everything is working fine again.
    Remember, all devices except the iPad are on a cabled 1Gbit Ethernet.
    Before updating to Yosemite I did not need WLAN.
    Any idea what's causing this? IP traffic routing issue?
    Usually, when I disable WLAN on the Mac, it continues to run for 1 or 2 days where the iPad has no problem to find and connect to the media library.
    After a while. running with WLAN disabled, my iPad is not able to "see" the iTunes media library asking me to enable home sharing.
    When I check on my Mac, home sharing is enabled.
    I then disable and re-enabled home sharing in iTunes and after doing so my iPads is able to "see" the iTunes media library but it cannot connect to it.
    I checked routing and arp tables on the Mac but everything looked fine, routing through the Ethernet interface.
    I used "fing" on the iPad to see which devices are online and "fing" on my iPad was only aware of the Mac Ethernet interface. No entry for the disabled Mac WLAN interface.
    I checked on the WLAN router and ensured that both Mac interfaces have unique host names (aliases) on the router.
    To be sure everything is refreshed I rebooted the router.
    No change, my iPad was able to find the iTunes media library through home sharing but was unable to connect to that media library.
    So I enabled WLAN on the Mac and immediately my iPad could connect to the iTunes media library.
    Weird...
    Only mitigation I found so far is to re-enable the WLAN on the Mac.
    So I assume something is broken in Yosemite / iTunes 12 home sharing.

  • Error: 1012704 Dynamic Calc processor cannot lock more than [25] ESM blocks

    Dear All,
    I get the Following Error in the Essbase console when I try to Execute any CalcScript.
    Error: 1012704 Dynamic Calc processor cannot lock more than [25] ESM blocks during the calculation, please increase CalcLockBlock setting and then retry(a small data cache setting could also cause this problem, please check the data cache size setting)_+
    Please find the detailed output of the Statics of my Planning Applications Database and outline.
    please help guys........
    GetDbStats:
    -------Statistics of AWRGPLAN:Plan1 -------
    Dimension Name Type Declared Size Actual Size
    ===================================================================
    HSP_Rates SPARSE 11 11
    Account DENSE 602 420
    Period DENSE 19 19
    Year SPARSE 31 31
    Scenario SPARSE 6 6
    Version SPARSE 4 4
    Currency SPARSE 10 10
    Entity SPARSE 28 18
    Departments SPARSE 165 119
    ICP SPARSE 80 74
    LoB SPARSE 396 344
    Locations SPARSE 57 35
    View SPARSE 5 5
    Number of dimensions : 13
    Declared Block Size : 11438
    Actual Block Size : 7980
    Declared Maximum Blocks : 3.41379650304E+015
    Actual Maximum Blocks : 1.87262635317E+015
    Number of Non Missing Leaf Blocks : 10664
    Number of Non Missing Non Leaf Blocks : 2326
    Number of Total Blocks : 12990
    Index Type : B+ TREE
    Average Block Density : 0.01503759
    Average Sparse Density : 6.936782E-010
    Block Compression Ratio : 0.001449493
    Average Clustering Ratio : 0.3333527
    Average Fragmentation Quotient : 19.3336
    Free Space Recovery is Needed : No
    Estimated Bytes of Recoverable Free Space : 0
    GetDbInfo:
    ----- Database Information -----
    Name : Plan1
    Application Name : AWRGPLAN
    Database Type : NORMAL
    Status : Loaded
    Elapsed Db Time : 00:00:05:00
    Users Connected : 2
    Blocks Locked : 0
    Dimensions : 13
    Data Status : Data has been modified
    since last calculation.
    Data File Cache Size Setting : 0
    Current Data File Cache Size : 0
    Data Cache Size Setting : 3128160
    Current Data Cache Size : 3128160
    Index Cache Size Setting : 1048576
    Current Index Cache Size : 1048576
    Index Page Size Setting : 8192
    Current Index Page Size : 8192
    Cache Memory Locking : Disabled
    Database State : Read-write
    Data Compression on Disk : Yes
    Data Compression Type : BitMap Compression
    Retrieval Buffer Size (in K) : 10
    Retrieval Sort Buffer Size (in K) : 10
    Isolation Level : Uncommitted Access
    Pre Image Access : No
    Time Out : Never
    Number of blocks modified before internal commit : 3000
    Number of rows to data load before internal commit : 0
    Number of disk volume definitions : 0
    Currency Info
    Currency Country Dimension Member : Entity
    Currency Time Dimension Member : Period
    Currency Category Dimension Member : Account
    Currency Type Dimension Member :
    Currency Partition Member :
    Request Info
    Request Type : Data Load
    User Name : admin@Native Directory
    Start Time : Mon Aug 15 18:35:51 2011
    End Time : Mon Aug 15 18:35:51 2011
    Request Type : Customized Calculation
    User Name : 6236@Native Directory
    Start Time : Tue Aug 16 09:44:10 2011
    End Time : Tue Aug 16 09:44:12 2011
    Request Type : Outline Update
    User Name : admin@Native Directory
    Start Time : Tue Aug 16 10:50:02 2011
    End Time : Tue Aug 16 10:50:02 2011
    ListFiles:
    File Type
    Valid Choices: 1) Index 2) Data 3) Index|Data
    >>Currently>> 3) Index|Data
    Application Name: AWRGPLAN
    Database Name: Plan1
    ----- Index File Information -----
    Index File Count: 1
    File 1:
    File Name: C:\Oracle\Middleware\user_projects\epmsystem1\EssbaseServer\essbaseserver1\APP\AWRGPLAN\Plan1\ess00001.ind
    File Type: INDEX
    File Number: 1 of 1
    File Size: 8,024 KB (8,216,576 bytes)
    File Opened: Y
    Index File Size Total: 8,024 KB (8,216,576 bytes)
    ----- Data File Information -----
    Data File Count: 1
    File 1:
    File Name: C:\Oracle\Middleware\user_projects\epmsystem1\EssbaseServer\essbaseserver1\APP\AWRGPLAN\Plan1\ess00001.pag
    File Type: DATA
    File Number: 1 of 1
    File Size: 1,397 KB (1,430,086 bytes)
    File Opened: Y
    Data File Size Total: 1,397 KB (1,430,086 bytes)
    File Size Grand Total: 9,421 KB (9,646,662 bytes)
    GetAppInfo:
    -------Application Info-------
    Name : AWRGPLAN
    Server Name : GITSHYPT01:1423
    App type : Non-unicode mode
    Application Locale : English_UnitedStates.Latin1@Binary
    Status : Loaded
    Elapsed App Time : 00:00:05:24
    Users Connected : 2
    Data Storage Type : Multidimensional Data Storage
    Number of DBs : 3
    List of Databases
    Database (0) : Plan1
    Database (1) : Plan2
    Database (2) : Plan3

    ESM Block Issue
    Cheers..!!

Maybe you are looking for

  • Because of unknown error

    Can anyone help me please?  Itunes will download an update to my iphone but will not install them due to an "unknown error" no code listed. It says it cannot back up my iphone . I have tried everything , searched the internet for help, including turn

  • I REALLY NEED to update my graphics - please

    Please, someone help me. The blue shape does not update when you scroll the panel. It happens because i am using variable to set the shape coordinates. i need to make it possible (update the shapes using variables). understood ??? thanks. here's the

  • Confirm sales order with idoc ORDERS05

    Hi everybody. I´d like to know if it´s possible to confirm a sales orders with idoc ORDERS05 and message type ORDCHG and posting FM IDOC_INPUT_ORDCHG_VMI. How would I have to fill the idoc data?? Thanks a lot

  • Consumer-Proxy authentication via x.509 Certificate

    Hi experts, I want to consume a service from a erp system and authenticate via x.509 SSL Certificate. But in soamanager there is no checkbox for this authentication method when I create the logical port. Only u201CUser Id / passwordu201D and u201CSAP

  • U530 boot failed

    I have a Lenovo U530 laptop that intermittently encounters a 'boot failed' error. This has happened 6 times in a 4 month period. Each time it has occurred I have clicked through the following 5 screens until it requested a system restart:   1. EFI Ne