Automator problem parsing variable as filename in disc image

Dear apple/automator forum.
I have just recently started using Automator, and i am experiencing a little problem which im hoping to get a helping hand with.
First, heres my screenshot (sorry its in danish, ill explain what iwe done): www.bergsorensen.dk/screenshot.png
- As for text
- Set new variable
- Get finder items
- New disc iamge from finder items (variable as filename)
I made a service which creates a new disc image of the selected finder items. Now, "in front" of that, i wanted a dialog box, where you could type the name of the new disc image - filename.
The creating disc image flow works perfectly, though i cant get the dialog box to parse the variable as name to the disc image.
Any suggestions?
Best
Kasper

You might want to update your forum settings, since your screenshot indicates you are running *Snow Leopard's Automator*.
The problem seems to be that you are mixing the text from your dialog with the input items - note that any selected items are already passed to the service, so you don't have to use additional actions to get the input. You just need to add a few actions to save and restore the original input when getting your other variable(s):
1) *Set Value of Variable* { Variable: _Original Input_ } -- save the input items
2) *Ask for Text* ( *Ignore Input* ) -- get a name for the disk image
3) *Set Value of Variable* { Variable: _Image Name_ } -- now we can use this variable in other actions
4 *Get Value of Variable* { Variable: _Original Input_ } ( *Ignore Input* ) -- get the input items back
5) *New Disk Image* { (drag _Image Name_ variable to the "Volume name" and "Save as" fields) }

Similar Messages

  • Disc image file exported from Encore CS4 won't work

    Hello,
    I have a problem concerning the export of a disc image file in Encore CS4. I recently upgraded to CS4 and wanted to continue my project which I started editing with CS3. While working with CS3 I already did image files from this project for burning and testing the DVD. Back then it worked with no problems.
    However, since using the CS4 version Encore does the image without any problem, but I can't use the image file in any way afterwards. I mounted it with Daemon Tools as I did before, but the DVD won't play in any software DVD player I have installed (Media Player Classic, Windows Media Player, Nero Showtime) nor can I access the file structure over a file manager. Nevertheless NeroInfoTool and ImgBurn say there is a DVD in the virtual drive. Then I exported the DVD project into a folder and now I can see the files in the file manger but again no player will play it.
    Has anyone experienced this before and is able to help? It would be very appreciated since I don't want to downgrade back to CS3 :-)
    It's Encore CS4, Version 4.0.1.048 on a 2,8 GHz HT CPU, 2 GB RAM, Nvidia Geforce 6800 UT, lots of HDD space, XP + SP3.
    Thank you,
    Chris...

    Hey,
    thank you both. As I said no player accepts the project exported to a folder. It doesn't matter if I point the player to the video_ts.ifo or just the folder - it won't play. As a consequence I re-installed Encore CS3 in which exporting worked fine and guess what - the exported image and folder output doesn't work either. Since it worked before in CS3 it comes down to the conclusion that either I did some editing to the project that screwed the project or Encore CS4 did. Checking for mistakes in the project and previewing in inside CS4 everything seems fine. So might it be CS4 that ****** up the project file??? I mean it's full of strange bugs so it could easily be that. I even updated my Daemon Tools yesterday and it won't make a difference.
    Or could it be something else I haven't considered yet? Any ideas? I just don't want to build the whole project again which might not even work if it's some other error. This is a desperate call for help
    Thanks,
    Chris...

  • Pixelation occurring after disc image burn

    I'm having a problem with pixelation after performing a disc image burn through iDVD.  I'm filming with Sony AX-2000 cameras onto Sony Memory Sticks, and loading the footage as Apple ProRes 422.  The footage looks fine and no pixelation once loaded.  After the edit is complete, I'm exporting it as a Quicktime self-contained movie, using "current settings" like I always have in the past.  This QT self-contained movie file looks fine once complete, and there is no pixelation in it.
    However, once I pull that file into iDVD, and then burn a disc image of it, I'm getting pixelation, but only in certain places.  This is BEFORE I burn the actual DVD, but the pixelation does show up on the DVD.  I'd say out of a 90 minute wedding video, there is a total of 5 minutes of pixelated footage spread out primarily over the first 30 minutes of the DVD.  I've burned the disc image twice now, and it's pixelating in the same places.
    I've been using this same process for the past 1 1/2 to 2 years without trouble on all my projects, but for some reason this wedding video is getting pixelation.  I have no idea what to do and welcome any suggestions. 

    A couple of thoughts:
    I assume you're evaluating the DVD on a television…because computer playback often gives misleading results.
    If the artifacts continue to show up in TV playback, then try some tests using Compressor and/or DVD Studio Pro. Start with a small segment that includes the problem footage, and choose the 120 minutes Best Quality DVD preset. In Encoder, open quality and goose the bit rate up until the point where  you're approaching the time limits of your video (the "allows" message provides time feedback at the bottom of the pane).In Frame Controls set Resize Filter to Best. In Preview, insert compression markers at the points where the artifacting begins. Either have Compressor spit out a test DVD as a job action or bring in into DVDSP to make a build without a menu. Evaluate.
    Hopefully, you'll find the right recipe.
    Russ

  • JSTL - Problem parsing XML file w/ XML schema declarations

    I'm having trouble parsing an xml document that contains XML schema declarations in the root element. I've included 2 snippets, the XML files they're supposed to parse, and their output below. The first one works and the second one doesn't. Could someone please tell me why? I find it hard to believe that no one's run into this before.
    I'm running Tomcat 5.5 and I'm using JSP 2.0, jakarta standard taglibs jars (1.1.2), jdk 1.5.0_04, and the Xalan 2.7.0 jars.
    Here's the first snippet:
    <c:import url="/WEB-INF/config/schools.xml" var="xml" />
    <x:parse doc="${xml}" var="schoolList"/>
    There are <x:out select="count($schoolList//school)"/> schools in the file:<br/>
    <x:forEach select="$schoolList//school">
         <x:out select="name"/><br/>
    </x:forEach>it parses the following xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <schools>
         <school id="34033">
              <name>Tumwater Middle School</name>
              <district>Tumwater</district>
              <type>middle</type>
              <active>false</active>
         </school>
         <school id="17001">
              <name>Garfield High School</name>
              <district>Seattle</district>
              <type>high</type>
              <active>true</active>
         </school>
         <school id="00023">
              <name>Tigard High School</name>
              <district>Tigard-Tualatin</district>
              <type>high</type>
              <active>true</active>
         </school>
    </schools>and it outputs:
    There are 3 schools in the file:
    Tumwater Middle School
    Garfield High School
    Tigard High School-----------------------------------------
    The second snippet:
    <c:import url="/WEB-INF/config/schools2.xml" var="xml2" />
    <x:parse doc="${xml2}" var="schoolList2"/>
    There are <x:out select="count($schoolList2//school)"/> schools in the file:<br/>
    <x:forEach select="$schoolList2//school">
         <x:out select="name"/><br/>
    </x:forEach>parses this xml file (note the xml schema declarations):
    <?xml version="1.0" encoding="UTF-8"?>
    <schools xmlns="http://www.serenus.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.serenus.com schools.xsd">
         <school id="34033">
              <name>Tumwater Middle School</name>
              <district>Tumwater</district>
              <type>middle</type>
              <active>false</active>
         </school>
         <school id="17001">
              <name>Garfield High School</name>
              <district>Seattle</district>
              <type>high</type>
              <active>true</active>
         </school>
         <school id="00023">
              <name>Tigard High School</name>
              <district>Tigard-Tualatin</district>
              <type>high</type>
              <active>true</active>
         </school>
    </schools>and its output is:
    There are 0 schools in the file:That's it! No errors at all! I'm 100% certain the variable names, filenames, etc. are correct. I've looked everywhere for an existing answer to this problem, but I can't find one. Is this a known issue? Please help.
    -Ben

    Hi Ben,
    I got exactly the same problem and also could not find any solution.
    Did you find a way out for this problem meanwhile?
    Any help is welcome!

  • How can I solve a Parse Error: "There was a problem parsing this package"

    Hello;
    I developed a really simple app in Flash Pro CC for android. I published it using AIR 13.0 for Android. When I tried to install it I received the Parse Error: "There was a problem parsing this package"
    Im not sure if the problem has something to do with my app xml file, but here it is:
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://ns.adobe.com/air/application/13.0">
         <id>TOeatorNOTTOeat</id>
         <versionNumber>1.0.0</versionNumber>
         <versionLabel>TouchEvent</versionLabel>
         <filename>TO eat or NOT TO eat</filename>
         <description/>
         <name>TO eat or NOT TO eat</name>
         <copyright/>
         <initialWindow>
              <content>TO%20eat%20or%20NOT%20TO%20eat.swf</content>
              <systemChrome>standard</systemChrome>
              <transparent>false</transparent>
              <visible>true</visible>
              <fullScreen>true</fullScreen>
              <aspectRatio>landscape</aspectRatio>
              <renderMode>gpu</renderMode>
              <autoOrients>false</autoOrients>
         </initialWindow>
         <icon>
              <image36x36>icons/icon36x36.png</image36x36>
              <image48x48>icons/icon48x48.png</image48x48>
              <image72x72>icons/icon72x72.png</image72x72>
              <image96x96>icons/icon96x96.png</image96x96>
         </icon>
         <customUpdateUI>false</customUpdateUI>
         <allowBrowserInvocation>false</allowBrowserInvocation>
        <android>
              <manifestAdditions>
                   <![CDATA[<manifest> </manifest>]]>
              </manifestAdditions>
         </android>
         <supportedLanguages>en</supportedLanguages>
    </application>
    What do you think is the best to check?

    i don't see any problem with your manifest.
    try saving your fla and the published files to a new directory and see if the error resolves.

  • Problem with Variable Client Support

    Hello,
    I work with Labview 8.5 and Crio 9014.
    I have a problem with  Variable Client Support. When I try to compile my project I have the following error:
    "The Network Variable Engine and Variable Client Support must be installed on the RT target for this application to function properly..."
    I have read that we have to install the Variable Client Support in Measurement and Automation by right-clicking on the software and then choosing add/remove software but I can't install the appropriate shared variable components because I can't see neither Network Variable Engine and Variable Client Support. So what can I do?
    Can somebody help me?
    Thanks

    I have exactly the same problem. I wanted go through the "Getting Started with the LabVIEW RT module" and when I use wizard for generating new project I get same notification in my VI... 
    The Network Variable Engine and Variable Client Support must be installed on the RT target
    for this application to function properly. If the Network Variable Engine is not supported on
    the target (e.g. FP-2000 with <32MB of RAM), open the project and move the variable library
    to My Computer in the project. Doing this will deploy the variables to localhost but
    will still require that Variable Client Support be installed on the RT target.
    Could someone help please ? 
    Attachments:
    ni.png ‏95 KB

  • Possible Fix for Disc Image Creation Problems

    I've noticed a number of posts describing problems similar to the one I had: with my first session with iDVD5, I tried creating an .img disc image (thanks to Apple, btw, for building that function in -- and for the new progress bars!), but it hung up all night long on the "Burn" task, and I had to force quit, leaving me with no image at all.
    I used disk image burning exclusively in iDVD4, because it allowed me to preview the result before committing it to a physical burn and prevented coaster-burning if something went wrong. I had had buffer problems when burning directly from iDVD -- but never with Disk Utility.
    Of course, in iDVD4, you cannot just burn a disk image using the app. Most are aware that using "Hurz" and "Pfurz" (see posts under iDVD4) provided a great workaround, however, and that's what I used.
    Well, it occurred to me that perhaps Hurz and Pfurz -- which basically interfered with iDVD4 to the user's advantage -- ought NOT to be in play with iDVD5. So I removed them from my user folder, et voila -- the very next time I tried the disk image function in iDVD5 (with the same project), it worked perfectly.
    But I can only SUSPECT that this was the solution, unfortunately, because of the fact that an automated maintenance script had repaird my permissions in the meantime. The problem might have been permission troubles resulting from installation.
    I do know this: removing Hurz and Pfurz and repairing the permissions worked for me. Hope it does for some others as well!

    Thanks, Len. I kind of wish Apple would make a bigger deal of this. Repairing permissions fixes ALL KINDS OF THINGS! And it is a VERY good idea to do it regularly.
    Like you, I do it once a week, using a wonderful freeware utililty called Onyx (search MacWorld or Google for it), which has a number of advantages over Disk Utility.
    In the first place, it will execute all the maintenance scripts as well. You might know that OSX has a number of scripts it runs in the background for maintenance, some daily, some weekly, and some monthly. But they are generally set to run late at night, which means you need to leave the computer ON and AWAKE. I don't do this as much as I should, so running Onyx ensures that these scripts get run. Since using Onyx, I have NEVER had a crash.
    Secondly, I can schedule it to do all this automatically, which is great - because I'm getting old . . . and I forget things. . . .

  • Burning From  a Disc Image Problems??

    I recently purchased iDVD 5. The best feature in the new iDVD for me is the ability to save my projects to disc image which lets me keep just the disc image on my hard drives with a file size of roughly 3-4 GB. This saves me a TON of space as I was having to save all of the self contained movie files along with the DVD projects in order to burn more copies for my clients in the future.
    My concern is that burning these extra copies of my projects for my clients with disk utility is not as "solid" a way to create DVDs as it would be to simply burn all the copies I may need directly from iDVD.
    Is this true?
    Also, I have never been able to verify any disk that I burned from a disk image using disk utility. These disks play fine on my new Sony DVD player, but I have had some complaints from clients that the disks skip and don't play perfectly.
    What could be causing this problem?
    If I can play these disks on my home DVD player even though my computer can't verify the burn, should I be concerned?
    Is the inability to verify a problem with my burner?
    Pete

    Len,
    Others have had the verify "problem." I NEVER verify.
    Really? Then I don't need to verify? My burning process goes to this automatically, I think. How do I stop it?
    BTW, I did install Tiger, no problem, installed FCE and made a very short movie, only one transition, no added audio, but burned with iDVD just great! It takes some adjusting, but I am getting the hang of it, and it hasn't been too hard to learn yet
    I think I will use iMovie--> for my photos/videos to DVD projects for a while, but when I get to mostly videos and all digital photos, I think I will go back to FCE (or whenever I have lots of time to be REALLY creative)
    PS. I'm SURE you ARE younger than I am! I'm like Old Toad...we're older than dirt!

  • Problems Restoring From Disc Image

    Hello Support Community
    I'm attempting to replace a suspected failing HD on my G5.  I made a disc image of the suspected drive in disc untility, and have it on an external drive.  I purchased a 500GB WD Cavier Black HD for my new drive.  I removed the old drive, and put the new one in.  I noticed on the old drive that there was a jumper installed all the way to the right when the drive is installed in the machine.  I tried restoring with the jumper installed, and without.  I had better luck with the jumper installed.  I got an error that said device does not support this action when I tried to restore to the new drive without the jumper installed.  Now, without the jumper installed, when I go to restore from my disc image, I get a Restore Failure error saying "An error (2) occurred while copying.  (No such file or directory)"  Once I click ok, and try it again, I now get a message that says "An error (16) occurred while copying.  (Resource Busy)" 
    Any ideas what my problem would be at this point?  It seems as though my .dmg is functioning just fine.  It mounts, and looks to have all contents of my old boot drive.  The new drive is able to be formatted just fine.  Did I buy the wrong tupe of drive?  Is it too new?
    Any help would be greatly appreciated.
    Thanks
    Dave

    Hello,
    I think you might need a Jumper on pins 5&6 to slow the drive to G5 SATA 1 speeds...
    http://wdc.com/wdproducts/library/other/2579-001037.pdf

  • Problem with variables in formulas when using CrystalReportViewer

    Post Author: Aksu
    CA Forum: Formula
    Hi! I have a problem with variables in Crystal Reports formulas, when using CrystalDecisions.Windows.Forms.CrystalReportViewer class from VS2005-project. ReportViewer always gives error:*************Crystal Report Windows Forms ViewerThis field name is not known.Details: errorKindError in File C:\{dir&#93;}\{file}.rpt:Error in formula <mCustomerAttributes>.'Dim result As String'This field name is not known.Details: errorKind ************* Report without variables works fine with Viewer and in Crystal Reports Designer report with variables works also fine. I have tried with both "formula-syntaxes" - basic and crystal. But Viewer always gives error when trying to define new variable.I think the problem might be with CR -versions, because VS-project has formerly been designed to VS2003 and CR9 or 10. Now I'm using VS2005 and CR11. Though I have changed all references to new CrystalDecisions-asseblies (Ver.11.0.3300.0), when I debug the project and checkout the Viewers ReportSources FormatEngine Shows version CR9_2.... I have no idea where it gets this version...***************DEBUG-view when Viewer is created *******************CrystalReportViewer    |_        ReportSourceClassFactoryName ... , Version=11.0.3300.0 , ...    |_            ReportSource            |_                FormatEngine    {CrystalDecisions.CrystalReports.Engine.FormatEngine}                        |_                        ClientVersionHeader    {CrystalDecisions.Shared.ReportServiceVersionHeader}                            |_                            |    version = 920     (int)                            |_                                Static members                                            |_                                        VER_CR9    = 920    (int)**************************************** Could anyone have any answers or tips for this problem? I'd really appreciate it... ---Aksu

    Has anyone been able to answer this question?
    I am having the same problem:
    I am designing a report in Crystal Reports XI Developer that contains parameters, which are passed to a stored procedure and are also used within formulas ( in Crystal Syntax ie. {?FORMAT_ID} ) in the report itself.
    I can run the report successfully in CRXI Developer.  The formulas use the correct values from the parameters entered during execution and everything looks good.
    I then deploy the report to Business Objects Enterprise XI.  I do all of the things necessary to manage the report including setting up the proper database connection information and default parameter values.
    When I run the report using the Crystal Report Viewer, I get the following error message:
    Error in File Forecasting.rpt:
    Error in formula <Report Format>.
    'if (not isNull({?FORMAT_ID} ) ) then
    This field name is not known.
    Details: errorKind
    This happens when I press the "Preview" button in the Manage Object dialog from Crystal or when I run the report using InfoView.
    I have changed the formulas and it doesn't seem to matter what the specific content of the formula is; other than the existence of a parameter reference in the formula.  If I comment out the parameter and replace it with a hard-coded value, it gets through the formula fine.
    Does Business Objects Enterprise XI support crystal reports with parameter references in the formulas?
    Thanks,
    Tim H.
    Edited by: Tim Haley on Nov 25, 2008 11:11 PM
    Edited by: Tim Haley on Nov 25, 2008 11:12 PM

  • Problem returning variables from dynamic SQL/PLSQL

    Hi, I have a problem I am trying to solve using a very short piece of dynamic SQL or PLSQL but I am having problems getting the variable values out of the dynamic block.
    I have 16 counters whose names are made up of three variable parts - 'scheme', 'contributory category' and 'employment category'
    The 'scheme' can be either 'no1', 'no2', 'off', 'cg' or 'amc'
    The 'contributory category' can be either 'cont' or 'noncont'
    The 'employment category' can be either 'ft' or 'pt'
    (There are only 16 because only 16 combinations are possible)
    For example the total counter name could be 'v_cg_noncont_ft_count'
    I have created a variable by concatenating the various elements called v_incr_count_name which holds the name of the counter I want to increment.
    I am running this whole thing within an anonymous PLSQL block so I cannot use global variables meaning that my variables are not visible within a dynamic PLSQL block.
    I believe this means that either I need to bind the variables within a PLSQL block or use a SELECT FROM INTO SQL block.
    I have tried a few solutions with no luck such as the following PLSQL:
    v_incr_count := 'v_'||v_scheme||'_'||v_cont_cat||'_'||v_emp_cat||'_count';
    sql_stmt := 'BEGIN :a := :a + 1; END;';
    EXECUTE IMMEDIATE sql_stmt USING v_incr_count_name;
    Unfortunately I am getting the 'IN bind variable bound to an OUT position' error which I believe is because it is trying to return a value into v_incr_count_name which has been defined by default as an IN variable. The problem is that I need to store the returned value into the variable whose name is stored in v_incr_count_name.
    Another solution I tried is:
    v_incr_count_name := 'v_'||v_scheme||'_'||v_cont_cat||'_'||v_emp_cat||'_count';
    sql_stmt := 'SELECT '||v_incr_count_name||' + 1 FROM DUAL';
    EXECUTE IMMEDIATE sql_stmt INTO v_return;
    This solution gives me an 'Invalid colum error'
    Any help would be greatly appreciated
    Cheers, Dan

    Repost:
    Problem with variables in dynamic SQL/PLSQL

  • Having problems burning/creating disc image in iDVD 6

    I am currently experience new problems trying to burn or create a disc image in iDVD 6. I have successfully burned iDVD projects in the past with the same computer/iDVD 6. The iDVD project looks like it is processing normally, even creates a labled disc image- but when you click on it, it reads "My Great DVD", and the video and audio files are also unreadable or absent- the error message for the VIDEO_TS.VOB file I pulled up read, "There is no default application specified to open the document "VIDEO_TS.VOB".
    My older son just got Toast 7 Titanium for me, so I have that resource. I also just bought extra memory to bring me up to 1.25 GB, and an external hard drive with 320 GB. I have a younger son and a friend who will need me to make a dance audition DVD for a CA college dance department that must be in So Cal by 1-19-07, so you can imagine I'm getting a bit nervous about this. I have verified permissions, reinstalled iDVD from the original, and re-done the original iMovie/iDVD project that first caused the problems- a 12.8 GB project (but have not re-done things since I got more memory on my computer). I don't know how big the audition DVD's will be, but estimate they won't be that big (hopefully), but will consist of many short clips/chapter headings. I know just enough about computers to know what I don't know, so would really, really appreciate some basic help!

    My Great DVD", and the video and audio files are also unreadable or absent- the error message for the VIDEO_TS.VOB file I pulled up read, "There is no default application specified to open the document "VIDEO_TS.VOB".
    I don't know what you expect. You're looking for a problem where there isn't one.
    The AUDIO_TS folder SHOULD be empty and (unless you've installed spercial software) you WON'T have any application to open the VIDEO_TS.VOB.
    If you want to play the disk image, open Apple's DVD player application and then use it to open the VIDEO_TS folder.
    This Burning a disk image file on a CD or DVD in Mac OS X at http://docs.info.apple.com/article.html?artnum=93006 is how you burn the disk image you have to writable media.

  • Dv6-6c13cl problems w/ install using purchased Recovery Discs.

    Thanks for any help you can provide.<br>Initally, there was a harddrive problem, so I replaced it. The factory discs were lost unfortunately, so I just recieved a set from HP yesterday.<br>The install process is uneventful, except that when its &quot;preparing Windows for the first use&quot;, I get some errors.<br>Specifically, it says,<br><br>[timestamp] ChkErrBB.CMD: detect some error during PININST_BBV.<br><br>[timestamp] check C:\system.sav\logs\BurnBootWarn.log<br><br>[timest​amp] or, check C:\system.sav\logs\BurnBootMerge.log)<br><br>At this point, there is nothing else I can do. You have the option to retry, but it initiates the whole install process again, leading to the same result.<br>Prior to ordering the discs, my brother installed a retail of W7-64bit, and there were no problems, save that there weren't any drivers installed (for example, couldn't get online).<br>Now, I dont really need the HP apps that get installed, but of course I need the drivers (incidentally, I believe they are on a fourth disc separate from the OS recovery (the Application and Driver Recovery CD).<br>Does anyone recognise the error messages above, what they mean, how to remedy this?<br>Is it likely the new HDD is faulty? Or the discs? Would it be a better idea to buy a retail of W7, and manually install all the needed drivers?<br>Its a shame in that this should work, Id hate to have to put more money into it.<br>Thanks again for any help.<br>Raab<br>

    Hi,
    If you want a clean installation of Windows 7, there's no need to purchase a retail copy as you can use the following method.
    Before trying the following, make sure you can still read the 25 Character Product Activation key on your Windows COA label ( 5 blocks of 5 alpha/numeric sets ).
    An example of a COA Label can be seen Here.
    You can create a Windows 7 installation disc yourself using another PC - just download the correct Disc Image ( this must be the same version that originally came with your notebook - this is listed as Windows 7 Home Premium ) from the link below and use an application such as ImgBurn to burn the ISO correctly to a blank DVD - a guide on using ImgBurn to write an ISO to a disc is Here.  These Images are clean and from a well-respected source - Digital River.
    If the listing is correct, Windows 7 Home Premium 64bit is on the following link.
    Windows 7 Home Premium 64bit.
    If the listing isn't correct, other versions can be found on the link below.
    Windows 7 Images.
    Use the disc to perform the installation, enter the Windows activation key found on the COA Label when requested and when the installation has completed, use the 'Phone Method' detailed in the link below to activate the OS - this method supported by Microsoft and is popular with people who just want a clean installation of Windows 7 without the additional software load normally bundled with OEM installations.
    http://www.kodyaz.com/articles/how-to-activate-win​dows-7-by-phone.aspx
    Any additional drivers and software you may need can be found Here.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Problem with variable

    Hi. I'm making a form for work for people to book places on
    training courses. Having an annoying problem with variables that
    i'm hoping has a simple solution. Any help with this will be much
    appreciated.
    All the info is held in an external text file which looks
    like this (but much longer):
    &totalcourses=2&
    &course0=Please choose a course&
    &course1=my course one&
    &totaldates1=3&
    &c1date0=Select a date...&
    &c1date1=15 September 2006&
    &c1time1=Time: 10:00 to 16:00&
    &c1date2=23 January 2006&
    &c1time2=Time: 11:00 to 16:00&
    &c1date3=28 February 2007&
    &c1time3=Time: 12:00 to 16:00&
    &course2=my course 2&
    &totaldates2=3&
    &c2date0=Select a date...&
    &c2date1=15 September 2006&
    &c2time1=Time: 11:00 to 16:00&
    &c2date2=08 January 2007&
    &c2time2=Time: 9:00 to 16:00 &
    &c2date3=15 February 2007
    &c2time3=Time: 12:00 to 16:00&
    The course titles are loaded into an array and then into a
    combobox. When a course is chosen a second combobox loads the
    relevant dates array for that course. When a date is chosen the
    time is shown in a dynamic text box.
    Problem is - if more than one course is on the same date it
    will show the time for the latest course with that date. For
    example - course 1 is on 15 sept at time 10:00 to 16:00, course 2
    is also on 15 sept at time 11:00 to 16:00. When 15 Sept is chosen
    for course one it displays the time for course 2 on this date -
    presumably because it comes later in the text file.
    I've attached the actionscript for this - Can anyone help me
    sort this out??

    Hi. I'm making a form for work for people to book places on
    training courses. Having an annoying problem with variables that
    i'm hoping has a simple solution. Any help with this will be much
    appreciated.
    All the info is held in an external text file which looks
    like this (but much longer):
    &totalcourses=2&
    &course0=Please choose a course&
    &course1=my course one&
    &totaldates1=3&
    &c1date0=Select a date...&
    &c1date1=15 September 2006&
    &c1time1=Time: 10:00 to 16:00&
    &c1date2=23 January 2006&
    &c1time2=Time: 11:00 to 16:00&
    &c1date3=28 February 2007&
    &c1time3=Time: 12:00 to 16:00&
    &course2=my course 2&
    &totaldates2=3&
    &c2date0=Select a date...&
    &c2date1=15 September 2006&
    &c2time1=Time: 11:00 to 16:00&
    &c2date2=08 January 2007&
    &c2time2=Time: 9:00 to 16:00 &
    &c2date3=15 February 2007
    &c2time3=Time: 12:00 to 16:00&
    The course titles are loaded into an array and then into a
    combobox. When a course is chosen a second combobox loads the
    relevant dates array for that course. When a date is chosen the
    time is shown in a dynamic text box.
    Problem is - if more than one course is on the same date it
    will show the time for the latest course with that date. For
    example - course 1 is on 15 sept at time 10:00 to 16:00, course 2
    is also on 15 sept at time 11:00 to 16:00. When 15 Sept is chosen
    for course one it displays the time for course 2 on this date -
    presumably because it comes later in the text file.
    I've attached the actionscript for this - Can anyone help me
    sort this out??

  • Problem with variable in the woorkbook selection screen.

    Hi All,
    I have Problem with Variable in the selection screen. I have four variable in the report in this sequence
    <b>Plant (optional), calendar month (mandatory),  material (optional), Customer (mandatory). </b>
    In Development system, I changed the query to fix the problem for a formula. saved and executed the query. In the selection screen appeared four variables and executed. after executing the query and I saved the work book also. I logged out of the Bex Analyzer. In the RSRT I generated the report by clicking the Generated Report push button. and again logged into the Bex analyzer and ran the work book, now in the selection screen, appeared three Variables only, I am missing the variable <b>Customer</b>.
    The old report which is already  in the Production system is working fine. What could be the mistake I did in the development system.
    It is very urgent, I need to deliver this object as soon as possible.
    Can I anybody help on the same.
    Thanks in advance
    Narendra

    Yunus,
    I did what you said. I removed the variable from characteristic restrictions, saved the query and executed the query, appeared three variables Plant, Calender month and material. executed and saved the work book. disconeted from Bex analyzer, in RSRT Generated Report and logged into Bex analyzer ran the work book for selection Plant, calender month and material and went into change query definition and added the variable for customer which was removed earlier and and ran the query for selections Plant, Calender monmth, Material and customer. saved the work book. disconnected from Bex analyzer and closed all excel sheets and work books. In RSRT Generated Report and again connected to Bex analyzer and ran the work book, now appeared only three variables again missed variable customer.
    Yunus does any missed n the procedure what i did.
    It is helped what Chris was answered.
    Many Many Thaks for your time and replies.
    Thaks in advance
    Narendra

Maybe you are looking for