To learn coding in WDA

Hi All,
        I am having knowledge in WDJ. Now i like to learn WDA. I am feeling difficulty in writing the codes.
For eg : for setting a value to a context attribute in WDJ i will use wdContext.currentcontextelement.setattribute("value"); But here it goes like wdContext->..... How to learn the codings? I don't have knowledge in ABAP. Do i want to learn ABAP to work in  WDA.
Thanks,
Mugundhan

Hi Kandha,
Dont worry it is not a tough task to learn writing code you need not remember the code .
Simple thing is on our transaction se80 in the menu bar we have a small magic button which we call it as "Webdynpro code wizard"( cntrl+f7) . this gives you the entire code for declarations here you can read the context , fetch the messages, popups and methods in our component can be called .
Initially try using this infact i feel this is the good procedure for writing the code such that we do not miss any part of the declarations.
GoodLuck!.
Regards,
Sana.

Similar Messages

  • Help? Learning coding for iOS/Mac

    Hello,
    I want to start learning coding, primarily for iOS and Mac applications. I know my way around computers pretty well, but as of now, I have essentially zero knowledge of coding. My question is, how should I start? What language do I learn first? Is iOS or Mac OS a better starting point? etc.
    Any help and advice is greatly appreciated. Thanks!

    What do you want to build for? That's the first question you should ask.
    Building for iOS essentially requires you to learn Obj-C, which hopefully you know is a superset of C. Building for iOS also requires knowledge of other tools, such as Cocoa, a framework built by Apple. Additionally, you should be familiar or be prepared to be familiar with XCode, Apple's IDE. You'll also need to review guidelines for publishing to the iOS App Store.
    Building for Mac can be done in many, many ways. You can distribute Mac applications yourself in almost any language you want, such as Java, C, C#, Ruby, Python, etc. All have IDE's (IIRC) that work with OS X. If you want to build for the Mac App Store, (IIRC) most apps are in Obj-C, and have stringent requirements like that of the iOS App Store.
    Keep in mind, I've barely scratched the surface here. There's a lot more to development than just langauges, frameworks, classes, IDE's, etc. While both iOS and Mac have their own program (at $99/year), you may find that you may not want anything to do with coding, or may want to build for both.
    You mention that you don't have any coding experience. If I were you, I would take very gradual steps, to see if this is something you want to get serious about. There's nothing wrong with diving right into a langauge like C, but you may feel overwhelmed. I plan on building iOS apps myself, but I didn't dive right in. I started learning Javascript two years ago (as well as HTML and CSS), and progressed to a bit of Java and Python. This summer, I plan on learning PHP and RegEx. So, two years in, and I don't feel ready to build with C just yet. However, people learn differently, so heck, you might even start building in 3 months.
    TL;DR, give it a shot. You have nothing to lose. If you want to dive right in, start with C. Being verbose with that language will give you the upper hand when it comes to Obj-C.

  • New to coding!!

    Hey there lovely peoples!
    Okay, I'm completely new to coding!! I realy want to get into it though. So my question is where to start? I already have dreamweaver installed, and I've found a great deal on a classroom in a book cs4 book. So my question is this: Being a COMPLETE novice (as in I know NOTHING!) will this book help me to learn coding at all? And if not, where is the best place to begin?
    Thanks guys

    To make websites using Dreamweaver, you need to learn and understand HTML and CSS. Both are fairly easy to learn and you can do a lot of this using books as well as on your own. Go to any website and copy the URL. Then go to the W3C Markup Validation Service and paste the URL. If the website passes, you have a website that has code that is good and compliant with the accepted standards of the Worldwide Web Consortium.
    http://validator.w3.org/
    If you have a website that works, you can get all of the code from that website from any web browser by navigating in the browser's menu to view the source.
    In the source file of any website that has an external style sheet, you'll see something like this:
    <link href="css/main.css" rel="stylesheet" type="text/css" media="all">
    If you click on the CSS file in your browser, you can get to the style sheet. Both the HTML source code and the style sheet can be copied and pasted into Dreamweaver, and you can see what the person who made the website did. Of course you won't get graphic files or photos, but this can be a great learning tool.
    Another outstanding learning tool is built in to Dreamweaver.
    From the menu, go to File>New, choose Blank Page, HTML and pick a layout from the selection. The pages will be heavily commented and so will the resultant style sheet.
    That should get you started doing elementary stuff.
    -Mark

  • Newbie question about C coding and SDK for iPhone app

    Hello,
    I am interested in trying to create an app. However, I have NO experience writing code I already have downloaded and installed the latest version of the SDK.
    I know I have to learn: C, Objective C, and Cocoa.
    I just picked up "C for Dummies" as a starting point. I figured the K&R might be a bit overwhelming to start with. Thing is, "C for Dummies" suggests doing some exercises in Text Edit and then using GCC to compile and test. But, then again, it has a copyright of 2004--long before Snow Leopard.
    My question is, do I really need to do the exercises in Text Edit? Can I just use Xcode for entering the code and testing it? And, any suggestions for learning C and Xcode tutorials are greatly appreciated.
    Thanks!!

    But, I really want to learn coding and not just take the easy route by using Xcode.
    The simplification of using Xcode may have been a bit exaggerated throughout this thread. You will still learn how to program full-on by using Xcode -- it's not like you're taking a shortcut or anything. Well, technically speaking, you are, but Xcode is the expected way to develop on a Mac nowadays -- it's how Apple expects you to develop and how most people are doing so. Should you choose, you can taking a deeper dive into the inner workings of compiling and whatnot by using a text editor and the Terminal, but keep in mind that the extra complexities here could complicate the more important overall goal of learning the basics of how to program. There is absolutely nothing wrong with simply using Xcode for the novice part of your programming days. In fact, it's probably the path I would recommend. Some here might suggest that it is beneficial to learn the intricacies of compiling through the Terminal and whatnot early on, and they are right -- it is beneficial, but the benefits of taking a route (at least for the time being) that allows you to focus on the more pressing issues of learning how to program without having to delve too deeply can be just as beneficial. After all, it's not like you can't go back and learn how to compile via Terminal later on -- that's what I've done (or, rather, am in the process of doing).
    I always thought Terminal was something not to mess with.
    Not so much. Like most things in programming (or life, for that matter), the Terminal is something not to mess with +if you don't know what you're doing+. Basically, it breaks down like this. The GUI that Apple has created for you in Mac OS X (by GUI I mean "graphical user interface" -- the icons and windows and buttons and so forth that you use to perform tasks on your Mac -- in other words, everything outside the Terminal) is geared toward the common user who does not need to access advance aspects of the system's functionality. Consequently, it makes common tasks much simpler to perform, but in the process it hides some of the deeper levels of the system's functionality from the user. This is a good thing, since most people wouldn't know what to do with this functionality and would create problems for themselves if they did have easy access to it. However, for some users who know more about the inner workings of the operating system, there needs to be a way for them to access this functionality, so that they can do certain things (like accessing certain files and performing certain tasks) that they would not be able to do using the Mac OS X GUI -- that's what the Terminal is for. It allows the user to operate the system on a lower level. In other words, it allows you to get closer to the operating system. This is good in a way, because it allows you to perform tasks that you wouldn't otherwise be able to perform by giving you more control over the operating system, but it is also bad in a way, because it can allow you to mess up some of the deeper aspects of your system if you don't know what you are doing. Most people leave the Terminal alone for this reason, and because they have no need of it, but if you want to be a good developer, you're going to have to work with it sooner or later.
    Now, with all that being said, it's not that easy to mess things up using the Terminal. It's not like your system's going to crash if you misspell a command. All in all, the Terminal is very forgiving, but it will do what you tell it to do, even if you tell it to kill itself, and it is for that reason that you need to know what you are telling it before you try to tell it something. If you understand what you are telling the system, than operating on a lower level and being closer to the operating system is completely safe.
    The Mac OS X operating system is based around Unix, so when you are communicating more directly with the operating system by using the Terminal, you are interacting with its Unix core. For this reason, using the Terminal goes hand in hand with understanding Unix. So, if you're going to want to use the Terminal, then I recommend you get a good book on Unix to teach you the basics of Unix commands and shell programming and whatnot. Any book on Unix will do, since more or less everything you learn will be applicable to the Mac OS X's Terminal, but there are a few that are specifically directed to Mac OS X users, and that always makes things easier. Most of these books aren't updated to cover past Tiger, but this really doesn't matter (someone correct me if I'm wrong). A few examples are O'Reilly's "Learning Unix for Mac OS X Tiger" by Dave Taylor or Peachpit Press's "Unix for Mac OS X Tiger" by Matisse Enzer. Also, the book "Unix Programming Environment" by Kernighan and Pike is an excellent book on Unix, although fairly outdated, so I would highly recommend it, although I would recommend it as a supplement to another, more recent, Mac-based Unix book and not as your primary source for learning Unix. The skills you will acquire from these books will help you later if not sooner, so I recommend giving one of them a read at some point, whether you are planning on compiling using the Terminal right now or not.
    Anyways, I hope this helped to clear some of this up for you, and please let us know if you have any further questions.

  • Bootstrap 3 versus responsive coding for...

    Nancy & Ben recommend bootstrap 3 for responsive web pages. Osgood recommends learning coding and the use of appropriate files to make your own responsive page (as I understand the conversations).
    I only need to make a page for my wife to show and sell some of her leather creations (purses, wallets etc...).
    Based on my old fixed page I think I only need a header, menu, max of two columns and a footer (with social media) on the entry page,
    Gallery with add to cart features, cart page,purchase page. Then of course, maintenance.
    I do enjoy challenges and learning but I don't need to delve deep into another field as I am spread to thin in many areas.
    DMX doesn't offer a trial for bootstrap 3. That could have helped me decide especially since some who use Dreamweaver CS6 as I do have had some issues.
    Based on the above what would be most suitable approach for me. I appreciate your opinions.
    Thank you-

    You don't need a commercial extension to use Bootstrap 3 -- it's an open source framework, freely available.  In fact, you don't even need to download it.  You can reference the framework's  CSS and Javascript files with links to the CDN (content distribution network) servers.
    While I agree with Osgood that learning to code is better in the long run, I think that if you're pressed for time and you don't need much, Bootstrap is a good way to jump start your responsive projects. 
    Copy & paste this Bootstrap demo into a new, blank document.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Bootstrap Demo</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!--Latest jQuery Core Library-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--Bootstrap-->
    <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
    <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
    </head>
    <body>
    <!--begin Bootstrap Carousel-->
    <div id="myCarousel" class="carousel slide carousel-fade" data-ride="carousel">
    <!-- Indicators -->
    <ol class="carousel-indicators">
    <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
    <li data-target="#myCarousel" data-slide-to="1"></li>
    <li data-target="#myCarousel" data-slide-to="2"></li>
    <li data-target="#myCarousel" data-slide-to="3"></li>
    </ol>
    <!-- Wrapper for slides -->
    <div class="carousel-inner" role="listbox">
    <div class="item active">
    <img src="http://lorempixel.com/1200/400/sports/4/" alt="...">
    <div class="carousel-caption">
    <h3>Heading 3</h3>
    <p>Details....</p></div>
    </div>
    <div class="item">
    <img src="http://lorempixel.com/1200/400/sports/3/" alt="...">
    <div class="carousel-caption">
    <h3>Heading 3</h3>
    <p>Details....</p>
    </div>
    </div>
    <div class="item">
    <img src="http://lorempixel.com/1200/400/sports/2/" alt="...">
    <div class="carousel-caption">
    <h3>Heading 3</h3>
    <p>Details....</p>
    </div>
    </div>
    <div class="item">
    <img src="http://lorempixel.com/1200/400/sports/1/" alt="...">
    <div class="carousel-caption">
    <h3>Heading 3</h3>
    <p>Details....</p>
    </div>
    </div>
    <!--end active-->
    </div>
    <!-- Left and right controls -->
    <a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="right carousel-control" href="#myCarousel" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> <span class="sr-only">Next</span> </a>
    <!--end carousel-->
    </div>
    <!--centered content-->
    <div class="container">
    <div class="jumbotron">
    <h1>Bootstrap 4 column layout</h1>
    <p>div class col-xs-12 col-sm-6 col-md-3</p>
    </div>
    <!--basic 4 col layout-->
    <div class="row">
    <div class="col-xs-12 col-sm-6 col-md-3">
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </div>
    <div class="col-xs-12 col-sm-6 col-md-3">
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </div>
    <div class="col-xs-12 col-sm-6 col-md-3">
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </div>
    <div class="col-xs-12 col-sm-6 col-md-3">
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </div>
    <!--end row--></div>
    <!--end container--></div>
    </body>
    </html>
    Nancy O.

  • 13" Macbook Pro with retina or MacBook Air?

    Hello All,
    This is my first post to this forum and I need an advice for buying my first MacBook ever. The time has come that I have decided to invest into a Mac and have always been a PC user until now. I was planning to buy the 13" 256GB version (1500 USD). My goal is to learn coding (JavaScript, PHP/MySQL, and HTML, Drupal for Web design) on the bust commute, with little to none intention of doing gaming on the machine. But plan to watch video/tutorial files, movies etc.
    But I am reading some concerning reviews/complaints of people about the MacBook Pro with Retina series and I want to know whether the latest version (as of today, Feb 21st, 2014) of rMBP is problematic. Here is what I have learned about the existing issues so far and I would like if folks here could give me a piece of advice which one should I choose (Air vs Pro)?:
    1) The trackpad/system sudden freeze;
    2) The image retention/persistence problem;
    2) Overheating when watching a video;
    Honestly, I feel disappointed that Apple computers are having so many issues.
    Are these issues still a problematic as of today for rMBP? Will the heating be problematic fo watching a movie for 1-2 hrs? Is it better to go with the air rather?
    Please advise!
    Thanks.
    Frank

    Also, would the applecare be strongly recommended for my situation?

  • Mid 2010 MacBook Pro i7 - Crashing - Low $ - HEELLPP

    My mid 2010 Macbook pro 15" with i7 running 10.85 has recently started crashing. I've really only used it extensively for the last 2 years so it's been doing quite well but has now started black screening then rebooting with no - at least not apparent to the user - sequence of events.
    My partner isn't working (car hit and run) so budget is low and I'm currently pushing myself on Team Treehouse to learn coding to improve my job prospects and my salary so need the laptop right now.
    Is the below the standard logic board replacement that I've found many have on forum? is it the video card? Just not sure which way to head and not in the budget for a totally new laptop though would be confident enough with the help of (PC) husband to upgrade hard drive or other components. OR am I best to take it to the Apple store for a genius assessment?
    Any help greatly appreciated.
    Kindest,
    Kitty
    Etre Check report below:
    Problem description:
    Mid 2010 MBP with i7 processor and anti-glare screen running 10.85.
    Mac occasionally crashes, goes black screen, then reboots with seemingly no identifiable actions causing this to happen by the user (ie. can’t identify similarities).
    EtreCheck version: 2.0.11 (98)
    Report generated 4 November 2014 9:22:11 AM AEDT
    Hardware Information: ℹ️
      MacBook Pro (15-inch, Mid 2010) (Verified)
      MacBook Pro - model: MacBookPro6,2
      1 2.66 GHz Intel Core i7 CPU: 2-core
      4 GB RAM
      BANK 0/DIMM0
      2 GB DDR3 1067 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1067 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics - VRAM: 288 MB
      NVIDIA GeForce GT 330M - VRAM: 512 MB
      Color LCD 1680 x 1050
    System Software: ℹ️
      OS X 10.8.5 (12F45) - Uptime: 0:14:28
    Disk Information: ℹ️
      ST9500420ASG disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      disk0s1 (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 499.25 GB (335.34 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Internal Memory Card Reader
      Apple Inc. Built-in iSight
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [loaded] com.Cycling74.driver.Soundflower (1.5.1) Support
      [not loaded] com.wacom.kext.wacomtablet (6.3.4 - SDK 10.8) Support
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [running] com.adobe.AdobeCreativeCloud.plist Support
      [loaded] com.citrix.AuthManager_Mac.plist Support
      [running] com.citrix.ReceiverHelper.plist Support
      [running] com.citrix.ServiceRecords.plist Support
      [invalid?] com.maintain.LogOut.plist Support
      [invalid?] com.maintain.PurgeInactiveMemory.plist Support
      [invalid?] com.maintain.Restart.plist Support
      [invalid?] com.maintain.ShutDown.plist Support
      [invalid?] com.maintain.Sleep.plist Support
      [running] com.maintain.SystemEvents.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
      [running] com.wacom.wacomtablet.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [invalid?] com.adobe.SwitchBoard.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
      [invalid?] com.maintain.AutoLoginUserScreenLocked.plist Support
      [not loaded] com.maintain.CocktailScheduler.plist Support
      [invalid?] com.maintain.HideSpotlightMenuBarIcon.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist Support
    User Login Items: ℹ️
      Adobe Bridge CC ApplicationHidden (/Applications/Adobe Bridge CC/Adobe Bridge CC.app)
    Internet Plug-ins: ℹ️
      o1dbrowserplugin: Version: 4.0.1.13525 Support
      WacomNetscape: Version: 2.1.0-1 - SDK 10.8 Support
      WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.2 Support
      AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 Support
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      Silverlight: Version: 4.0.60531.0 Support
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0
      CitrixICAClientPlugIn: Version: 11.8.0 - SDK 10.7 Support
      npgtpo3dautoplugin: Version: 0.1.44.29 - SDK 10.5 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      googletalkbrowserplugin: Version: 4.0.1.13525 Support
      QuickTime Plugin: Version: 7.7.1
      EPPEX Plugin: Version: 3.0.5.0 Support
      JavaAppletPlugin: Version: Java 7 Update 45 Check version
    Safari Extensions: ℹ️
      feedly
      Twitter for Safari
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Java  Support
      WacomTablet  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Destinations:
      GLAM WD750 [Local]
      Total size: 749.78 GB
      Total number of backups: 16
      Oldest backup: 2012-12-23 08:10:51 +0000
      Last backup: 2014-10-28 10:33:13 +0000
      Size of backup disk: Excellent
      Backup size 749.78 GB > (Disk size 0 B X 3)
    Top Processes by CPU: ℹ️
          3% WindowServer
          1% AppleIDAuthAgent
          0% fontd
          0% Creative Cloud
          0% mds
    Top Processes by Memory: ℹ️
      245 MB WebProcess
      86 MB Safari
      64 MB Finder
      57 MB mds
      56 MB PluginProcess
    Virtual Memory Information: ℹ️
      1.88 GB Free RAM
      1.23 GB Active RAM
      215 MB Inactive RAM
      832 MB Wired RAM
      433 MB Page-ins
      0 B Page-outs

    Hi Ogelthorpe,
    Thank you for such a speedy response, suspected as much. Here is the report below, does this mean a trip to the Apple Genius Bar is in order?
    Hoping they can take pity on me…..
    panic(cpu 2 caller 0xffffff7f8bc85f1a): "GPU Panic: [<None>] 3 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff808627d000 0x0a5480a2, D0, P2/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.5/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 2), Frame : Return Address
    0xffffff8085383190 : 0xffffff8009a1d636
    0xffffff8085383200 : 0xffffff7f8bc85f1a
    0xffffff80853832d0 : 0xffffff7f8a1bd88c
    0xffffff8085383390 : 0xffffff7f8a29085a
    0xffffff80853833d0 : 0xffffff7f8a2908b8
    0xffffff8085383440 : 0xffffff7f8a556280
    0xffffff8085383570 : 0xffffff7f8a2b9345
    0xffffff8085383590 : 0xffffff7f8a1c465f
    0xffffff8085383640 : 0xffffff7f8a1c20f6
    0xffffff8085383840 : 0xffffff7f8a1c303e
    0xffffff8085383920 : 0xffffff7f8b19cfc0
    0xffffff8085383960 : 0xffffff7f8b1acdf7
    0xffffff8085383980 : 0xffffff7f8b1dbe1f
    0xffffff80853839c0 : 0xffffff7f8b1dbe7d
    0xffffff8085383a00 : 0xffffff7f8b1b2bcf
    0xffffff8085383a50 : 0xffffff7f8b17d022
    0xffffff8085383ae0 : 0xffffff7f8b178dba
    0xffffff8085383b10 : 0xffffff7f8b17697b
    0xffffff8085383b40 : 0xffffff8009e6ec83
    0xffffff8085383bc0 : 0xffffff8009e70d13
    0xffffff8085383c20 : 0xffffff8009e6e74f
    0xffffff8085383d70 : 0xffffff8009a98c21
    0xffffff8085383e80 : 0xffffff8009a20b4d
    0xffffff8085383eb0 : 0xffffff8009a10448
    0xffffff8085383f00 : 0xffffff8009a1961b
    0xffffff8085383f70 : 0xffffff8009aa6546
    0xffffff8085383fb0 : 0xffffff8009acf473
          Kernel Extensions in backtrace:
             com.apple.driver.AppleMuxControl(3.4.5)[49FEF732-D7A3-327B-A7AA-6AC5A6E3DCFF]@0 xffffff7f8bc78000->0xffffff7f8bc8afff
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[B5B1F368-132E-3509-9ED5-93270E3ABB DD]@0xffffff7f8bc73000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f8a0c2000
                dependency: com.apple.driver.AppleGraphicsControl(3.4.5)[4A2C8548-7EF1-38A9-8817-E8CB34B8DC A6]@0xffffff7f8bc5f000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f8a040000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8a148000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8a105000
             com.apple.NVDAResman(8.1.6)[39D35403-42FB-3F08-999C-9866938D6B3A]@0xffffff7f8a1 5c000->0xffffff7f8a3fffff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f8a0c2000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8a148000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8a105000
             com.apple.nvidia.nv50hal(8.1.6)[BF3CC142-4112-3E23-BCE2-CDCFD5811DDA]@0xffffff7 f8a40b000->0xffffff7f8a6defff
                dependency: com.apple.NVDAResman(8.1.6)[39D35403-42FB-3F08-999C-9866938D6B3A]@0xffffff7f8a1 5c000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f8a0c2000
             com.apple.GeForce(8.1.6)[8D728212-9DE5-349D-ABF3-7989F0C4BC29]@0xffffff7f8b15a0 00->0xffffff7f8b227fff
                dependency: com.apple.NVDAResman(8.1.6)[39D35403-42FB-3F08-999C-9866938D6B3A]@0xffffff7f8a1 5c000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8a148000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f8a0c2000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8a105000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12F45
    Kernel version:
    Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    Kernel UUID: EA38B02E-2B88-309F-BA68-1DE29F605DD8
    Kernel slide:     0x0000000009800000
    Kernel text base: 0xffffff8009a00000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 26462820966363
    last loaded kext at 26236101947216: com.apple.driver.IOBluetoothHIDDriver 4.1.7f2 (addr 0xffffff7f8bd97000, size 73728)
    last unloaded kext at 24681820713714: com.apple.driver.IOBluetoothHIDDriver 4.1.7f2 (addr 0xffffff7f8bd97000, size 73728)
    loaded kexts:
    com.Cycling74.driver.Soundflower 1.5.1
    com.apple.driver.AppleIntelProfile 119
    com.apple.iokit.IOBluetoothSerialManager 4.1.7f2
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AGPM 100.13.14
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.1.7f4
    com.apple.driver.AppleHDA 2.4.7fc4
    com.apple.driver.AppleMikeyDriver 2.4.7fc4
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleSMCLMU 2.0.3d0
    com.apple.GeForce 8.1.6
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleSMBusPCI 1.0.11d1
    com.apple.driver.AppleIntelHDGraphics 8.1.6
    com.apple.driver.AppleIntelHDGraphicsFB 8.1.6
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.ApplePolicyControl 3.4.5
    com.apple.driver.AppleLPC 1.6.3
    com.apple.driver.AppleUpstreamUserClient 3.5.12
    com.apple.driver.AppleMuxControl 3.4.5
    com.apple.driver.AppleMCCSControl 1.1.11
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.SMCMotionSensor 3.0.3d1
    com.apple.driver.AppleUSBTCButtons 237.1
    com.apple.driver.AppleUSBCardReader 3.3.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 34
    com.apple.driver.AppleUSBTCKeyboard 237.1
    com.apple.driver.AppleIRController 320.15
    com.apple.iokit.SCSITaskUserClient 3.5.6
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.3.5
    com.apple.driver.AppleAHCIPort 2.6.6
    com.apple.driver.AppleUSBHub 635.4.0
    com.apple.driver.AirPort.Brcm4331 615.20.17
    com.apple.driver.AppleFWOHCI 4.9.9
    com.apple.iokit.AppleBCM5701Ethernet 3.6.2b4
    com.apple.driver.AppleUSBEHCI 621.4.6
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 1.8
    com.apple.driver.AppleRTC 1.5
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 1.9
    com.apple.driver.AppleACPIEC 1.8
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 214.0.0
    com.apple.nke.applicationfirewall 4.0.39
    com.apple.security.quarantine 2.1
    com.apple.driver.AppleIntelCPUPowerManagement 214.0.0
    com.apple.driver.IOBluetoothHIDDriver 4.1.7f2
    com.apple.driver.AppleProfileTimestampAction 119
    com.apple.driver.AppleProfileThreadInfoAction 119
    com.apple.driver.AppleProfileRegisterStateAction 119
    com.apple.driver.AppleProfileReadCounterAction 119
    com.apple.driver.AppleProfileKEventAction 119
    com.apple.driver.AppleProfileCallstackAction 119
    com.apple.iokit.AppleProfileFamily 119
    com.apple.iokit.IOSerialFamily 10.0.6
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOFireWireIP 2.2.5
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.1.7f2
    com.apple.driver.DspFuncLib 2.4.7fc4
    com.apple.iokit.IOAudioFamily 1.9.2fc7
    com.apple.kext.OSvKernDSPLib 1.12
    com.apple.iokit.IOSurface 86.0.4
    com.apple.iokit.IOBluetoothFamily 4.1.7f2
    com.apple.nvidia.nv50hal 8.1.6
    com.apple.NVDAResman 8.1.6
    com.apple.driver.AppleGraphicsControl 3.4.5
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.3.7
    com.apple.driver.AppleSMBusController 1.0.11d1
    com.apple.driver.AppleHDAController 2.4.7fc4
    com.apple.iokit.IOGraphicsFamily 2.3.7
    com.apple.iokit.IOHDAFamily 2.4.7fc4
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.4.1d13
    com.apple.driver.AppleSMC 3.1.5d4
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.5.6
    com.apple.iokit.IOUSBMassStorageClass 3.5.2
    com.apple.driver.AppleUSBMultitouch 237.3
    com.apple.iokit.IOUSBHIDDriver 623.4.0
    com.apple.driver.AppleUSBMergeNub 621.4.6
    com.apple.driver.AppleUSBComposite 621.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.5.6
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOAHCISerialATAPI 2.5.5
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.5.6
    com.apple.iokit.IOAHCIFamily 2.5.1
    com.apple.iokit.IO80211Family 530.5
    com.apple.iokit.IOUSBUserClient 630.4.4
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOEthernetAVBController 1.0.2b1
    com.apple.iokit.IONetworkingFamily 3.0
    com.apple.iokit.IOUSBFamily 635.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 1.8.1
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 220.3
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.DiskImages 345
    com.apple.iokit.IOStorageFamily 1.8
    com.apple.driver.AppleKeyStore 28.21
    com.apple.driver.AppleACPIPlatform 1.8
    com.apple.iokit.IOPCIFamily 2.8
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    System Profile:
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D3147314631
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D3147314631
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 21 devices, 3 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420ASG, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 7
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

  • Best practice in dreamweaver based web design

    Hi DW Gurus
    I have been learning dreamweaver at work and at home for a while now and I am very interested in getting some details about best practices.
    I am aware that my designs are still quite simple and don't expand dreamweaver anyway near its abilities, however as a novice I am sticking with DW CS4 and trying to developing foundation skills before trying to move on to greater adventures in web design.  My dream is to eventually leave my employer and start my own freelance design business that I can manage while I am travelling in SE Asia (yeah I know - dream on .....). I am saving for my CS4 master suite license - my current one belongs to my employer.
    In particular I have just started to do some free design a community organisation - I am trying to develop a portfolio of sites that I can show new clients (with money) what they could expect for their investments.
    I am interested in getting some ideas about work flows - design standards - whether designers use the dreamweaver layouts - whether to code or to use the WYSIWYG.
    Anyone care to share how they plan and go about their design work.
    In my past life I was a SQL developer and a C#.net programmer - in those feilds there are standards for code and applications . Are there industry standards that would point to good or better designing?
    Thanks for your time and interest in my topic,
    Respect,
    Doug

    The first thing you need to learn is html and css, without knowing the programming language will only make DW a hard tool to use.  You need to learn coding to WC3 standards.
    FREE HTML & CSS Tutorials  - http://w3schools.com/
    http://reference.sitepoint.com/css
    http://reference.sitepoint.com/html
    Validation tools that you will need to bookmark.
    HTML Validator - http://validator.w3.org
    CSS Validator - http://jigsaw.w3.org/css-validator/
    Hopefully you use Firefox, and if you do, the web developer toolbar is essential:
    http://chrispederick.com/work/web-developer/
    Yes, you can rely somewhat on DW's layout mode (or what features are left of it), but this will only lead to problems when it comes time to troubleshoot any problem pages that do not render correctly across the various browsers.
    A paying client will expect a well designed, fully functional website and you need to have the programming skills to accomplish this for them.
    Not sure how far advanced you are but the Adobe site has quite a few CSS based tutorials - and I would strongly urge you to go through the series listed below - to get up to speed on the correct way to lay out a page.
    Creating your first website (series)
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WS42d4a1c0291fbe4e59147ede1232ff9686c-8 000.html
    LIST OF CSS TUTORIALS ON ADOBE SITE:
    http://www.adobe.com/devnet/dreamweaver/css.html
    If you use Fireworks as a tool to create your layouts, then the following tutorial may be of benefit:
    TAKING FIREWORKS COMP TO DREAMWEAVER:
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
    Good luck in your future endeavours 
    Nadia
    Adobe Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • How to get externally made nav bar css into dreamweaver

    How do I insert 'purecssmenu' made nav bar into dreamweaver? I have a zip file with just the interactive nav bar in it. There used to be an insert nav bar but that seems to have vanished in cs6 presumably because Adobe want you to use Spry!!!
    I am completely new to this game but it is not helpful to be constantly told that you should learn coding.
    I just want to make 1 tiny personal site. Any constructive help would be very much appreciated.

    Sorry you're having such a terrible time not only getting the navbar to work, but interpreting the help here. (That's what it is... help, only you really didn't give us a lot to go on)
    You need to do one of two things if you'd like people to stop "guessing" what's wrong with your page.
    1.Upload your page to your server and post the URL here so others can download the source code and analyze it.
    or
    2. Copy and paste your ENTIRE page of code here so it can be seen, downloaded and viewed in someone else's Dreamweaver on their computer. Something like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
        <meta http-equiv="content-type" content="text/html;charset=utf-8" />
        <title>Generated by Pure CSS Menu.com : Free CSS Drop Down Menu Generator</title>
        <meta name="description" content="Online CSS Menu Maker. Create No-Javascript, 100% CSS Dropdown Menu in seconds! Horizontal css menu & Vertical css menu." />
    </head>
    <body bgcolor="#ffffff">
    <!-- Start PureCSSMenu.com STYLE -->
    <style>
    #pcm{display:none;}
    ul.pureCssMenu ul{display:none}
    ul.pureCssMenu li:hover>ul{display:block}
    ul.pureCssMenu ul{position: absolute;left:-1px;top:98%;}
    ul.pureCssMenu ul ul{position: absolute;left:98%;top:-2px;}
    ul.pureCssMenu,ul.pureCssMenu ul {
    margin:0px;
    list-style:none;
    padding:0px 2px 2px 0px;
    background-color:#333333;
    background-repeat:repeat;
    border-color:#cccccc #111111 #111111 #cccccc;
    border-width:1px;
    border-style:solid;
    ul.pureCssMenu table {border-collapse:collapse}ul.pureCssMenu {
    display:block;
    zoom:1;
    float: left;
    ul.pureCssMenu ul{
    width:155.4px;
    ul.pureCssMenu li{
    display:block;
    margin:2px 0px 0px 2px;
    font-size:0px;
    ul.pureCssMenu a:active, ul.pureCssMenu a:focus {
    outline-style:none;
    ul.pureCssMenu a, ul.pureCssMenu li.dis a:hover, ul.pureCssMenu li.sep a:hover {
    display:block;
    vertical-align:middle;
    background-color:#333333;
    border-width:1px;
    border-color:#333333;
    border-style:solid;
    text-align:left;
    text-decoration:none;
    padding:2px 5px 2px 10px;
    _padding-left:0;
    font:normal 12px Trebuchet MS,Tahoma;
    color: #cccccc;
    text-decoration:none;
    cursor:default;
    ul.pureCssMenu span{
    overflow:hidden;
    ul.pureCssMenu li {
    float:left;
    ul.pureCssMenu ul li {
    float:none;
    ul.pureCssMenu ul a {
    text-align:left;
    white-space:nowrap;
    ul.pureCssMenu li.sep{
    text-align:left;
    padding:0px;
    line-height:0;
    height:100%;
    ul.pureCssMenu li.sep span{
    float:none;     padding-right:0;
    width:3px;
    height:100%;
    display:inline-block;
    background-color:#cccccc #111111 #111111 #cccccc;     background-image:none;}
    ul.pureCssMenu ul li.sep span{
    width:100%;
    height:3px;
    ul.pureCssMenu li:hover{
    position:relative;
    ul.pureCssMenu li:hover>a{
    background-color:#377D9F;
    border-color:#377D9F;
    border-style:solid;
    font:normal 12px Trebuchet MS, Tahoma;
    color: #FFFFFF;
    text-decoration:none;
    ul.pureCssMenu li a:hover{
    position:relative;
    background-color:#377D9F;
    border-color:#377D9F;
    border-style:solid;
    font:normal 12px Trebuchet MS, Tahoma;
    color: #FFFFFF;
    text-decoration:none;
    ul.pureCssMenu li.dis a {
    color: #666 !important;
    ul.pureCssMenu img {border: none;float:left;_float:none;margin-right:2px;width:16px;
    height:16px;
    ul.pureCssMenu ul img {width:16px;
    height:16px;
    ul.pureCssMenu img.over{display:none}
    ul.pureCssMenu li.dis a:hover img.over{display:none !important}
    ul.pureCssMenu li.dis a:hover img.def {display:inline !important}
    ul.pureCssMenu li:hover > a img.def  {display:none}
    ul.pureCssMenu li:hover > a img.over {display:inline}
    ul.pureCssMenu a:hover img.over,ul.pureCssMenu a:hover ul img.def,ul.pureCssMenu a:hover a:hover ul img.def,ul.pureCssMenu a:hover a:hover a:hover ul img.def,ul.pureCssMenu a:hover a:hover img.over,ul.pureCssMenu a:hover a:hover a:hover img.over,ul.pureCssMenu a:hover a:hover a:hover a:hover img.over{display:inline}
    ul.pureCssMenu a:hover img.def,ul.pureCssMenu a:hover ul img.over,ul.pureCssMenu a:hover a:hover ul img.over,ul.pureCssMenu a:hover a:hover a:hover ul img.over,ul.pureCssMenu a:hover a:hover img.def,ul.pureCssMenu a:hover a:hover a:hover img.def,ul.pureCssMenu a:hover a:hover a:hover a:hover img.def{display:none}
    ul.pureCssMenu a:hover ul,ul.pureCssMenu a:hover a:hover ul,ul.pureCssMenu a:hover a:hover a:hover ul{display:block}
    ul.pureCssMenu a:hover ul ul,ul.pureCssMenu a:hover a:hover ul ul{display:none}
    ul.pureCssMenu span{
    display:block;
    background-image:url(./images/arr_white.gif);
    background-position:right center;
    background-repeat: no-repeat;
       padding-right:12px;}
    ul.pureCssMenu li:hover>a>span{     background-image:url(./images/arrv_white.gif);
    ul.pureCssMenu a:hover span{     _background-image:url(./images/arrv_white.gif)}
    ul.pureCssMenu ul span,ul.pureCssMenu a:hover table span{background-image:url(./images/arr_white.gif)}
    </style>
    <!-- End PureCSSMenu.com STYLE -->
    <!-- Start PureCSSMenu.com MENU -->
    <ul class="pureCssMenu pureCssMenum">
    <li class="pureCssMenui"><a class="pureCssMenui" href="index.html">Home Page</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#"><span>Product Info</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul class="pureCssMenum">
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">What is New?</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#"><span>Menu Features</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul class="pureCssMenum">
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Free Online Generator</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">100% Pure CSS Menu</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">No Javascript Required</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Multi Level Submenus</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Search-Engine Friendly</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Advanced Styling</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Horizontal & Vertical</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]--></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#"><span>How To Use</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul class="pureCssMenum">
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">1. Select Template</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">2. Customize Items</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">3. Download Zip</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]--></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#"><span>Supported Browsers</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul class="pureCssMenum">
    <li class="pureCssMenui"><a class="pureCssMenui" href="#"><span>Windows OS</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul class="pureCssMenum">
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Internet Explorer</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Firefox</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Chrome</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Safari</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Mozilla</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Opera</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Netscape Navigator</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]--></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#"><span>MAC OS</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul class="pureCssMenum">
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Firefox</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Safari</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Internet Explorer</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]--></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#"><span>Unix/Linux OS</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul class="pureCssMenum">
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Firefox</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Konqueror</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]--></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]--></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]--></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#"><span>Templates</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
    <ul class="pureCssMenum">
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Template 1</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Template 2</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Template 3</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Template 4</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Template 5</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Template 6</a></li>
    </ul>
    <!--[if lte IE 6]></td></tr></table></a><![endif]--></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">FAQ</a></li>
    <li class="pureCssMenui"><a class="pureCssMenui" href="#">Contact Us</a></li>
    </ul>
    <a id="pcm" href="http://www.purecssmenu.com/">CSS Drop Down Menu by PureCSSMenu.com</a>
    <!-- End PureCSSMenu.com MENU -->
    <!-- (c) 2009, PureCSSMenu.com -->
    <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
    <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
    <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
    </body>
    </html>
    Based on your reply, and the troubles you had just getting the domain, I'll have to assume that you can't upload the page, so be a dear, and paste your code here so we can actually see it and troubleshoot it for you.
    Let's see if we can get that egg boiled, eh?

  • Help with link styles (Was: Help! Dreamweaver CS6)

    Hi! I try to apply the function « visited link » on a email address but it dont works.
    1. In the text I select the email address.
    2. Go to › Page properties › Choose Links CSS
    3. From there, I appy to my email address different  colors for each kind of links (regular link = pink + Rollover link = yellow + Active link = red + Visited link = green)
    4. Preview in a browser › all those links color are applied to my email address and works well except for the VISITED LINK... it stays pink like the regular link.
    5. Curiously, if I appy the same options to a any text which is linked to a Web page... this time the « visited link » works well. It seems that the problem is just related when I apply those criteria to an email address! Thanks for your posts!

    First learn coding fundamentals. A working knowledge of HTML & CSS are required to use DW.
    http://www.html.net/
    http://w3schools.com/
    http://www.csstutorial.net/
    http://webdesign.tutsplus.com/sessions/web-design-theory/
    Then do this 5-part, self-paced tutorial:  Creating your first web site in DW CS6 -
    http://www.adobe.com/devnet/dreamweaver/articles/first_website_pt1_cs6.html
    Nancy O.

  • Need main Div page container to fill height of browser

    I'm a relative Dreamweaver newbie (using CS3). I know almost
    nothing about the code, but I've more or less grasped laying out my
    page using Div Tags and CSS.
    One thing I can't figure out is how to get the page to fill
    the height of the browser window, for example if I have a page with
    little content. I'm sure there must be a quick fix for this.
    Can anyone please explain to me how this is achieved.
    Thanks.

    Point is that if you want 100% height, that's the way to
    achieve it.
    > I've looked around on other forums, many say the key to
    pages displaying
    > at
    > 100% height in browsers is adding a {height: 100%;}
    attribute to the body
    > code,
    > so that subsequent divs have a parent reference for
    their height setting.
    I've seen that kind of rule added to the stylesheet with a
    compound selector
    (in the following context) -
    <style type="text/css">
    html, body { height:100%; }
    </style>
    </head>
    But I don't think it's 100% reliable.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "NickJ_London" <[email protected]> wrote in
    message
    news:[email protected]...
    > Thanks for that link, it seems to apply to tables
    though, I'm laying my
    > pages
    > out using divs.
    >
    > I've looked around on other forums, many say the key to
    pages displaying
    > at
    > 100% height in browsers is adding a {height: 100%;}
    attribute to the body
    > code,
    > so that subsequent divs have a parent reference for
    their height setting.
    > This
    > concept I understand, I'm just not sure where to add the
    code.
    > I know I'm going to have problems until I learn coding,
    I'll get there but
    > one
    > step at a time.
    >
    > This is the code generated from the Dreamweaver basic
    page layout I wish
    > to
    > build on:
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    > <title>Welcome</title>
    > <link href="css/twoColFixLtHdr.css" rel="stylesheet"
    type="text/css" />
    > <!--[if IE 5]>
    > <style type="text/css">
    > /* place css box model fixes for IE 5* in this
    conditional comment */
    > .twoColFixLtHdr #sidebar1 { width: 230px; }
    > </style>
    > <![endif]--><!--[if IE]>
    > <style type="text/css">
    > /* place css fixes for all versions of IE in this
    conditional comment */
    > .twoColFixLtHdr #sidebar1 { padding-top: 30px; }
    > .twoColFixLtHdr #mainContent { zoom: 1; }
    > /* the above proprietary zoom property gives IE the
    hasLayout it needs to
    > avoid several bugs */
    > </style>
    > <![endif]--></head>
    >
    > <body class="twoColFixLtHdr">
    >
    > <div id="container">
    > <div id="header">
    > <h1>Header</h1>
    > <!-- end #header --></div>
    > <div id="sidebar1">
    > <h3>Sidebar1 Content</h3>
    > <p>The background color on this div will only show
    for the length of
    > the
    > content. If you'd like a dividing line instead, place a
    border on the left
    > side
    > of the #mainContent div if it will always contain more
    content. </p>
    > <p>Donec eu mi sed turpis feugiat feugiat. Integer
    turpis arcu,
    > pellentesque eget, cursus et, fermentum ut, sapien.
    Fusce metus mi,
    > eleifend
    > sollicitudin, molestie id, varius et, nibh. Donec nec
    libero.</p>
    > <!-- end #sidebar1 --></div>
    > <div id="mainContent">
    > <h1> Main Content </h1>
    > <p>Lorem ipsum dolor sit amet, consectetuer
    adipiscing elit. Praesent
    > aliquam, justo convallis luctus rutrum, erat nulla
    fermentum diam, at
    > nonummy
    > quam ante ac quam. Maecenas urna purus, fermentum id,
    molestie in,
    > commodo
    > porttitor, felis. Nam blandit quam ut lacus. Quisque
    ornare risus quis
    > ligula.
    > Phasellus tristique purus a augue condimentum
    adipiscing. Aenean
    > sagittis.
    > Etiam leo pede, rhoncus venenatis, tristique in,
    vulputate at, odio.
    > Donec et
    > ipsum et sapien vehicula nonummy. Suspendisse potenti.
    Fusce varius urna
    > id
    > quam. Sed neque mi, varius eget, tincidunt nec, suscipit
    id, libero. In
    > eget
    > purus. Vestibulum ut nisl. Donec eu mi sed turpis
    feugiat feugiat.
    > Integer
    > turpis arcu, pellentesque eget, cursus et, fermentum ut,
    sapien. Fusce
    > metus
    > mi, eleifend sollicitudin, molestie id, varius et, nibh.
    Donec nec
    > libero.</p>
    > <h2>H2 level heading </h2>
    > <p>Lorem ipsum dolor sit amet, consectetuer
    adipiscing elit. Praesent
    > aliquam, justo convallis luctus rutrum, erat nulla
    fermentum diam, at
    > nonummy
    > quam ante ac quam. Maecenas urna purus, fermentum id,
    molestie in,
    > commodo
    > porttitor, felis. Nam blandit quam ut lacus. Quisque
    ornare risus quis
    > ligula.
    > Phasellus tristique purus a augue condimentum
    adipiscing. Aenean
    > sagittis.
    > Etiam leo pede, rhoncus venenatis, tristique in,
    vulputate at, odio.</p>
    > <!-- end #mainContent --></div>
    > <!-- This clearing element should immediately follow
    the #mainContent div
    > in
    > order to force the #container div to contain all child
    floats --><br
    > class="clearfloat" />
    > <div id="footer">
    > <p>Footer</p>
    > <!-- end #footer --></div>
    > <!-- end #container --></div>
    > </body>
    > </html>
    >
    > I'm confident enough with CSS now to handle the
    re-styling of the page,
    > it's
    > just the height battle I want to win at this stage.
    >

  • Need help with construction process. . .

    Hi All
    I put a post on here about 2 months ago regarding exporting
    a PSD, and using the HTML that Photoshop generated. All the kind
    people on here quickly pointed me into the direction of learning
    coding rather than letting something produce it for me. So i did. .
    But i have a new problem - there are lots of tutorials out
    there for how to code HTML and CSS, but none that show you the
    correct process for producing sites.
    The current site i am on has a background that i made in PS
    and just exported as a image. It has a content section (blank black
    box) and the background (grunge grey stuff) all in one image. Now
    when i take this into DW, i add it as the background for the body
    of the site. I center it, and no-repeat the image. I test it and
    all is good.
    SO i start to add my navigation, which is just text links,
    not buttons. I add it on top of the area where i want it to be -
    BUT - when i resize the browser, the background stays centered but
    the links stay where they are.
    What i want is for the links to move with the changing size
    of the browser - HOW?
    Also, is this the correct 'working ethic' for a site? To have
    the content areas as part of the background and just position parts
    on top of the site so that they look like they are in the correct
    areas?
    I guess basically, i have a background image that is centered
    with no repeat. I want the site to be centered, AS WELL as the
    links. I would like them to all stay in relation to each other when
    a browser changes size. Where am i going wrong? In the HTML or CSS?
    Sorry if i have explained it in a bad way, i'm just trying so
    hard to learn the right way of doing things.
    Many Thanks In Advance
    JP

    Did you follow this link (and subsequent ones)?
    Taking a Fireworks comp to a CSS-based layout in Dreamweaver
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt1.html
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "thewakeplace.com" <[email protected]> wrote
    in message
    news:[email protected]...
    > Hi All
    >
    > I put a post on here about 2 months ago regarding
    exporting a PSD, and
    > using
    > the HTML that Photoshop generated. All the kind people
    on here quickly
    > pointed
    > me into the direction of learning coding rather than
    letting something
    > produce
    > it for me. So i did. . . .
    > But i have a new problem - there are lots of tutorials
    out there for how
    > to
    > code HTML and CSS, but none that show you the correct
    process for
    > producing
    > sites.
    >
    > The current site i am on has a background that i made in
    PS and just
    > exported
    > as a image. It has a content section (blank black box)
    and the background
    > (grunge grey stuff) all in one image. Now when i take
    this into DW, i add
    > it as
    > the background for the body of the site. I center it,
    and no-repeat the
    > image.
    > I test it and all is good.
    > SO i start to add my navigation, which is just text
    links, not buttons. I
    > add
    > it on top of the area where i want it to be - BUT - when
    i resize the
    > browser,
    > the background stays centered but the links stay where
    they are.
    > What i want is for the links to move with the changing
    size of the
    > browser -
    > HOW?
    >
    > Also, is this the correct 'working ethic' for a site? To
    have the content
    > areas as part of the background and just position parts
    on top of the site
    > so
    > that they look like they are in the correct areas?
    >
    > I guess basically, i have a background image that is
    centered with no
    > repeat.
    > I want the site to be centered, AS WELL as the links. I
    would like them to
    > all
    > stay in relation to each other when a browser changes
    size. Where am i
    > going
    > wrong? In the HTML or CSS?
    >
    > Sorry if i have explained it in a bad way, i'm just
    trying so hard to
    > learn
    > the right way of doing things.
    >
    > Many Thanks In Advance
    >
    > JP
    >

  • HTMLB TableView Iterator & Edit columns, cells

    Hi friends,
    I am getting errors when , I tried to edit the columns, & Cells of  HTMLB TableView by using Iterator.Actually, I got the whole edit buttons and when I edit the values of particular column & cell fileds, it is not saving the values, instead it is giving same old values. The code I used is as follows.
    <u><b>To Edit the  columns,</b></u>
    method
    IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS.
    FIELD-SYMBOLS: <def> LIKE LINE OF p_column_definitions.
      APPEND INITIAL LINE TO p_column_definitions ASSIGNING <def>.
    <def>-COLUMNNAME = 'STUDENTID'.<def>-EDIT = 'X'.
    endmethod.
    <u><b>To Edit the  cells,</b></u>
    RENDER_CELL_START Method:
    method
    IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START.
    CASE p_column_key.
    WHEN 'ICON'.
    WHEN 'STUDENTID'.
           IF p_edit_mode IS NOT INITIAL.
    ENDIF.
    WHEN 'SDATE'.
           IF p_edit_mode IS NOT INITIAL.
    ENDIF.
    ENDCASE.
    endmethod.
    <u><b>To Edit the SDATE cells,</b></u>
    WHEN 'SDATE'.
      IF p_edit_mode IS NOT INITIAL.
    DATA: date TYPE STRING.
    date = m_row_ref->SDATE.
    p_replacement_bee = CL_HTMLB_INPUTFIELD=>FACTORY(
                          id        = p_cell_id
                           value     = date
                           type      = 'DATE'
                             showHelp  = 'TRUE'
                             cellValue = 'TRUE' ).
                               ENDIF.
    Why the either column or cell is not saving the new values, when I edit them? where it went wrong? please mail me in this regard.
    regards
    CSM Reddy

    Hi REDDY CSM 
    To learn coding these Methods.
    You need to learn everything from scratch about MVC.
    To learn functionalities of Methods in Controller and how to use them,its Better,if you start with some tutorial(Little application) on MVC.
    Here is link,Just follow this,You will get some Exposure to these methods.
    http://help.sap.com/saphelp_erp2005/helpdata/en/c8/101c3a1cf1c54be10000000a114084/frameset.htm
    Rest keep posting whenever you face and Problem..
    Happy Coding..!!
    Vijay Raheja

  • Unfortunately Java Dates

    I am new to Java, I took one class last semester using Eclipse. I have a program that is driven off an access data base. In the data base the dates are a date/time type formatted mm/dd/yy. We did not work with dates as a rule but I used them so would get the experience. How do I change the format in my GUIs so the date is not yyyyMMdd, but the same as the data base.

    Still here and still somewhat confused. I have the sdf so I can format the dates the way I want but have no idea what t do with them now. One is a birthdate that belongs to the Problem Domain Class Players. The other I want to be a serial date set to 08/01/current year. This is what I have so far:
    package Main;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Calendar;
    import java.util.Date;
    import java.util.TimeZone;
    * @author barker44
    public class DateTest {
         public static void main(String[] args) {
              Calendar aCalendar = Calendar.getInstance(TimeZone.getDefault());
              java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("MM/dd/yyyy");
              String strThisSeason = sdf.format(aCalendar.getTime());
              Date datThisSeason = null;
              // This is a format for jtxtCurrentSeason in the clsPlayersGUI
              // It is separate from the the player class and is only used in the GUI
              // It will be a serial date automatically set to Aug 1 of the current season
              // If I can figure out how to set it in the GUI
              String strCurrentSeason = "08012006";
              SimpleDateFormat sdf1 = new SimpleDateFormat("MMddyyyy");
              SimpleDateFormat sdf2 = new SimpleDateFormat("MM/dd/yyyy");
              Date datCurrentSeason = null;
              // This is a format for jtxtDOB in the clsPlayersGUI
              // Have to figure out where it should be implemented
              // In the PDC or in the GUI
              String strDateOfBirth = "12011995";
              SimpleDateFormat sdf3 = new SimpleDateFormat("MMddyyyy");
              SimpleDateFormat sdf4 = new SimpleDateFormat("MM/dd/yyyy");
              Date datDOB = null;
              try {
                   datThisSeason = sdf.parse(strThisSeason);
                   datCurrentSeason = sdf1.parse(strCurrentSeason);
                   datDOB = sdf3.parse(strDateOfBirth);
              } catch (ParseException e) {
                   e.printStackTrace();
              System.out.println("This Season = " + sdf.format(datThisSeason));
              System.out.println("Current Season = " + sdf2.format(datCurrentSeason));
              System.out.println("Date of Birth = " + sdf4.format(datDOB));
         }The first is not what I want because it sets the current month, day, year. But the others are formatted like I want I just don't know what to do with them. In my GUI I created a setCurrentDate method to set the text box to the current date but it doesn't work. Like I said I have this in VBA but can't figure out what to do with it here.
    This is what happns when a 48 year old ex-carpenter goes back to school to learn coding. In case you are wondering I am a student at Morrisville State College in central NY and I am working on my bachelors in Application Software, the semester is over and I am just trying to improve on what I learned this past semester.
    So any additional help would be greatly appreciated.
    Thanks.

  • Scripting Bridge and iTunes

    I'm trying to add a playlist to iTunes via some Obj-C code. (Yeah I know AppleScript would be simpler, but part of this is for me to learn coding with Cocoa.) I'm not new to coding, just the Mac flavor of it, and I suspect I'm missing something simple. Anyway, the procedure in question (from a button's click handler):
    <pre>
    iTunesApplication *iTApp;
    SBElementArray *thePlaylists;
    NSDictionary *newPlaylistProps;
    iTunesPlaylist *newPlaylist;
    iTApp = [SBApplication applicationWithBundleIdentifier:@"com.apple.iTunes"];
    if ([iTApp isRunning]) {
    thePlaylists = [(iTunesSource*)[[iTApp sources] objectAtIndex:0] playlists];
    newPlaylistProps = [NSDictionary dictionaryWithObject:@"foobar" forKey:@"name"];
    newPlaylist = (iTunesPlaylist*)[[[iTApp classForScriptingClass:@"playlist"] alloc] initWithProperties:newPlaylistProps];
    [thePlaylists addObject:newPlaylist];
    </pre>
    I've got iTunes.h created and #imported like the ADC guide showed. The code above works fine until the addObject call, at which point I get an Apple event error -10014. This seems to mean I sent in a list when the handler wanted a single object. I thought newPlaylist counted as just an object.
    Also regarding populating the thePlaylists var - I've resorted to grabbing the first source solely to simplify things. Until I hit this wall, I was iterating the sources to find the library one.
    Any help would be appreciated - thanks!

    Short answer: Scripting Bridge's design is flawed. See the 'jumpstart me with the scripting bridge' thread over on AppleScript-implementors for an explanation of this particular defect:
    http://lists.apple.com/archives/Applescript-implementors/2007/Nov/index.html
    Your options are:
    1. Work around Scripting Bridge's brokenness by sending your own 'make' Apple event via -[SBObject sendEvent:id:parameters:]. (Or even via AEBuildAppleEvent or NSAppleEventDescriptor and AESendMessage if you're particularly masochistic.) You'll need to know the raw AE codes for the 'make' command to do this; e.g. Script Editor can save an application's dictionary to .sdef (XML) file, or ASDictionary [1] can export it in a more readable plain text format.
    2. Use AppleScript via NSAppleScript. Somewhat defeats the purpose of the exercise, but AppleScript knows how to speak Apple events properly so at least you know it'll work.
    3. Use a third-party bridge that speaks Apple events the same way as AppleScript does. For ObjC, use objc-appscript [2]:
    ITApplication *itunes = [[ITApplication alloc] initWithName: @"iTunes.app"];
    NSDictionary *properties = [NSDictionary dictionaryWithObject:@"my playlist" forKey:[ASConstant name]];
    ITMakeCommand *cmd = [[[itunes make] new_: [ITConstant playlist]]
    withProperties: properties];
    ITReference *playlist = [cmd send];
    [itunes release];
    HTH
    [1] http://appscript.sourceforge.net/download.html
    [2] http://appscript.sourceforge.net/objc-appscript.html

Maybe you are looking for

  • How do I convert a file located in my e-mail from PDF to Word.  I can't seem to save it in my word files.

    How do I convert a file located in my e-mail (that is secured) from PDF to Word.  I can't seem to save the PDF file anywhere.

  • Touchscreen issue since IOS 5.1

    Is anyone else having problems with the touchscreen since installing IOS 5.1? It seems like the calibration is off. I am also unable to install apps. Ive tried restoring and soft resets but nothing seems to work. Am I the only one? or does anyone kno

  • Command line generation errors in log. How do I fix this?

    Version: RH 9 (latest version) OS: Windows 7, 64-bit Output: CHM I have a batch file that uses RH's command line generation functionality to generate our CHMs regularly. The command line works for my other projects. But I have one project that has th

  • Podcast description gone in iTunes

    I created the website for my podcast in iWeb, and then uploaded it to iTunes. Everything went fine, until somewhere along the process the "podcast description" in iTunes disappeared. Is it possible to fix this? I think I understand the problem, as at

  • Need help on java.lang.reflect

    Hi, I want to use the java.lang.reflect package's member classes for my program. Is there any place on web where I can get complete details of these packages including, classes, methods, functions and their arguements etc. Thanks.