SetStyle not affecting components already formatted

I have a form and everything is components:  labels, comboBox button.  I have applied a text format to all the elements.  I want the user to select a font from the combo box drop down and then all fonts change.  However, I can only get this to work when I don't apply any textFormats to my components initially.    I know in as2 you had to setNewTextFormat, is it somewhat similar with this setStyle?  Here is my code:
package
     import flash.display.*;
     import flash.events.*;
     import flash.text.*;
     import fl.controls.*;
     import fl.managers.StyleManager;
     import fl.motion.Color;
     import flash.geom.ColorTransform;
     public class CatProcess extends MovieClip
          //LABEL VARIABLES
          var headingTxt:Label;
          var userLabel:Label;
          var paletteLabel:Label;
          var ageLabel:Label;
          //TEXT INPUT VARIABLES
          var ageInputBox:TextInput;
          var nameInputBox:TextInput;
          //TEXT FORMAT VARIABLES
          var standardFormat:TextFormat;
          var headingFormat:TextFormat;
          var arialFormat:TextFormat
          var courierFormat:TextFormat;
          //MISC VARIABLES
          var userName:String;
          var fontCombo:ComboBox;
          var submit_btn:Button;
          public function CatProcess()
               //TEXT FORMATS
               headingFormat=new TextFormat();
               headingFormat.font = "Arial";
               headingFormat.size=16;
               standardFormat=new TextFormat()
               standardFormat.font="Arial"
               standardFormat.size=12;
               arialFormat=new TextFormat();
               arialFormat.font = "Arial";
               arialFormat.size=12;
               courierFormat=new TextFormat();
               courierFormat.font="courier"
               courierFormat.size=12;
               //FORM COMPONENT ELEMENTS
               //Heading
               headingTxt=new Label();
               headingTxt.text = "Olivers Cat Sanctuary";
               headingTxt.autoSize = TextFieldAutoSize.LEFT;
               headingTxt.setStyle("textFormat",headingFormat);
               headingTxt.move(183.2,22);
               addChild(headingTxt);
               //Name Label
               userLabel=new Label();
               userLabel.text = "Please Enter your name";
               userLabel.autoSize = TextFieldAutoSize.LEFT;
               userLabel.setStyle("textFormat",standardFormat);
               userLabel.move(50,106);
               addChild(userLabel);
               //Name inputBox
               nameInputBox=new TextInput ();
               nameInputBox.move(400,103);
               addChild(nameInputBox);
               //Palette Label
               paletteLabel=new Label();
               paletteLabel.text = "Please select a font";
               paletteLabel.autoSize = TextFieldAutoSize.LEFT;
               paletteLabel.setStyle("textFormat",standardFormat);
               paletteLabel.move(50,157);
               addChild(paletteLabel);
               //Palette ComboBox
               fontCombo=new ComboBox();
               fontCombo.addItem({label:"Arial"});
               fontCombo.addItem({label:"Courier"});
               fontCombo.move(400,157);
               addChild(fontCombo);
               fontCombo.addEventListener(Event.CHANGE, comboHandler);
               ageLabel=new Label();
               ageLabel.text = "Please enter your age";
               ageLabel.autoSize = TextFieldAutoSize.LEFT;
               ageLabel.setStyle("textFormat",standardFormat);
               ageLabel.move(50,209);
               addChild(ageLabel);
               ageInputBox = new TextInput();
               ageInputBox.move(400,211);
               addChild(ageInputBox);
               submit_btn=new Button();
               submit_btn.move(255,258);
               submit_btn.label = "submit";
               submit_btn.setStyle("textFormat",standardFormat);
               addChild(submit_btn);
          }//end constructor function
          private function comboHandler(event:Event):void
               var fontType:String = event.currentTarget.selectedItem.label;
               if (fontType== "Arial") {
                    StyleManager.setStyle("textFormat", arialFormat);
               if (fontType=="Courier") {
                    StyleManager.setStyle("textFormat", courierFormat);

package
     import flash.display.*;
     import flash.events.*;
     import flash.text.*;
     import fl.controls.*;
     import fl.managers.StyleManager;
     import fl.motion.Color;
     import flash.geom.ColorTransform;
public class CatProcess extends MovieClip
//LABEL VARIABLES
public var headingTxt:Label;
public var userLabel:Label;
public var paletteLabel:Label;
public var ageLabel:Label;
//TEXT INPUT VARIABLES
public var ageInputBox:TextInput;
public var nameInputBox:TextInput;
//TEXT FORMAT VARIABLES
public var standardFormat:TextFormat;
public var headingFormat:TextFormat;
public var arialFormat:TextFormat
public var courierFormat:TextFormat;
//MISC VARIABLES
public var userName:String;
public var fontCombo:ComboBox;
public var submit_btn:Button;
public function Main()
              //TEXT FORMATS
              arialFormat=new TextFormat();
              arialFormat.font = "Arial";
              arialFormat.size=12;
              courierFormat=new TextFormat();
              courierFormat.font="courier"
              courierFormat.size=12;
              //FORM COMPONENT ELEMENTS
              //Heading
              headingTxt=new Label();
              headingTxt.text = "Olivers Cat Sanctuary";
              headingTxt.autoSize = TextFieldAutoSize.LEFT;
              headingTxt.setStyle("textFormat",headingFormat);
              headingTxt.move(183.2,22);
              addChild(headingTxt);
              //Name Label
              userLabel=new Label();
              userLabel.text = "Please Enter your name";
              userLabel.autoSize = TextFieldAutoSize.LEFT;
              userLabel.setStyle("textFormat",standardFormat);
              userLabel.move(50,106);
              addChild(userLabel);
              //Name inputBox
              nameInputBox=new TextInput ();
              nameInputBox.move(400,103);
              addChild(nameInputBox);
              //Palette Label
              paletteLabel=new Label();
              paletteLabel.text = "Please select a font";
              paletteLabel.autoSize = TextFieldAutoSize.LEFT;
              paletteLabel.setStyle("textFormat",standardFormat);
              paletteLabel.move(50,157);
              addChild(paletteLabel);
              //Palette ComboBox
              fontCombo=new ComboBox();
              fontCombo.addItem({label:"Arial"});
              fontCombo.addItem({label:"Courier"});
              fontCombo.move(400,157);
              addChild(fontCombo);
              fontCombo.addEventListener(Event.CHANGE, comboHandler);
              ageLabel=new Label();
              ageLabel.text = "Please enter your age";
              ageLabel.autoSize = TextFieldAutoSize.LEFT;
              ageLabel.setStyle("textFormat",standardFormat);
              ageLabel.move(50,209);
              addChild(ageLabel);
              ageInputBox = new TextInput();
              ageInputBox.move(400,211);
              addChild(ageInputBox);
              submit_btn=new Button();
              submit_btn.move(255,258);
              submit_btn.label = "submit";
              submit_btn.setStyle("textFormat",standardFormat);
              addChild(submit_btn);
          }//end constructor function
private function comboHandler(event:Event):void
var fontType:String = event.currentTarget.selectedItem.label;
if (fontType== "Arial") {
StyleManager.setStyle("textFormat", arialFormat);
if (fontType=="Courier") {
StyleManager.setStyle("textFormat", courierFormat);

Similar Messages

  • Graphics(Styles) are not Affecting in HTML Format of Smart Form

    Hi,
    I have converted a Smartform from PDF format to HTML. but the Graphics ( Styles ) are not Affecting the out put.
    Can any body Give me the solution.

    Please suggest me ,how to convert from pdf to html workformat,if any program is available for that.Please send it

  • Deploying services does not affect service requests already in-flight EXCEPT...

    How does a deployment effect the in-flight delivery plans...
    Please note this might be contrary to what you think about service delivery plans... Deploying services does not affect service requests already in-flight EXCEPT
    Contents of rules, ISF functions, and JavaScript libraries are always retrieved from the current service definition
    The delivery plan for services that have not completed all their authorizations will be based on the delivery plan in the current service definition

    Hi Tonya,
    We've found that to be the case now but when we were on 2008.1 (an early service pack I believe) and earlier, we were often afflicted with changes to dictionary visibility on forms after we deployed a service definition.  It occurred so frequently that we were in the practice of having to suffix the older service definitions with an underscore to minimise services get locked up as mandatory fields in the delivery moment were disappearing.
    Thanks,
    Ant

  • Dynamic workbook allowing drilldown not affecting format?

    Dear Experts
    I created 2 queries because of technical constraint. 1 query is set with a certain setting that affects another display requirement. So, 2nd query is created.
    Can 1 workbook use 2 queries but allow drilldown such that the formatting will not be affected adversely in the workbook?
    That is, if a workbook is drilled-down, eg. show more information in the rows , by displaying additional characteristic columns, if there is formatting/Excel formula in certain cells, how can this formatting/cell formula be preserved?
    For example, workbook achieves the display requirement by referrencing the cells from the 2 queries. But the user needs to drill down in the workbook. How will the referencing be affected or preserved?
    Please let me know if this is possible.
    Happy holidays.
    regards
    Pascal

    Hi Pascal,
    If the place of a cell changes by some more drill down or other things, then unfortunately excel formulas based on the cell may display wrong values.So workbook with such excel formulas is dangerous.However, you can create another sheet and add the same query to that sheet with different named(but the same) dataprovider.And do this for navigation pane,too.Then you will have two queries in different sheets and not affecting each other.And then allow the user to drill down on second sheet and not to change the first sheet.(So the formula in the first sheet will still show correct values)This is not a good solution but may satisfy your need.
    Here is a step by step workbook document which may be helpful:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d032116a-1ba6-2e10-8db6-d84e7dcc9975?QuickLink=index&overridelayout=true
    Regards,
    Güneş
    Edited by: sunnybt on Dec 24, 2011 6:45 PM

  • All-Day-Events Not affecting Availability

    Hi All,
    We have iCal server setup on 10.5.4 and I've come across a bug in the iCal client (3.05).
    If someone has created an event and checked it as All-Day, that event will not affect that users availability if someone else tries to add them as an attendee.
    I have checked the option on for each calendar (Get Info) that "Events Affect Availability". Other events do affect availability, just not events flagged as "All Day".
    Any ideas? Or is it still a bug in 10.5.5 (also happened in 10.5.4)?
    Thanks in advance!

    In the iCalendar data format used to represent the event information, there is a TRANSP property that can indicate whether a specific event contributes to freebusy or not. By default iCal makes timed events appear as busy, and all-day events appear as free (transparent). There is no way in iCal itself to change that. The only workaround when using iCal is to create a timed event that blocks out 24 hours.

  • I'm trying to create a Windows partition using Boot Camp. An error comes up telling me that I need to reformat my current partition(s) into one single partition. However, it's already formatted in the correct format, and is already a single partition.

    As made clear in the title:
    I'm trying to create a Windows partition using Boot Camp. An error comes up telling me that I need to reformat my current partition(s) into one single partition. However, it's already formatted in the correct format, and is already a single partition.
    My computer recently had a kernel panic, which apparently the corruption was in the system and needed to be erased and re-installed. I have a complete back-up using an external hard drive, and I am definitely not willing to do another one of those to reformat a partition that is already singular. I restarted the computer after ejecting my back-up, and after turning off time machine (thinking that boot camp was recognizing it as a secondary partition), however the error still occurs.
    Is there any way to get around this?

    diskutil list:
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *750.2 GB   disk0
       1:                        EFI                         209.7 MB   disk0s1
       2:                  Apple_HFS Macintosh HD            749.3 GB   disk0s2
       3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                            Windows7               *2.9 GB     disk1
    diskutil cs list:
    No CoreStorage logical volume groups found
    mount:
    /dev/disk0s2 on / (hfs, local, journaled)
    devfs on /dev (devfs, local, nobrowse)
    map -hosts on /net (autofs, nosuid, automounted, nobrowse)
    map auto_home on /home (autofs, automounted, nobrowse)
    /dev/disk1 on /Volumes/Windows7 (udf, local, nodev, nosuid, read-only, noowners)
    From my very basic knowledge - it still looks as if there is only one partition (not including the windows 7 CD necessary to install the windows partition).

  • Is it possible to boot windows solely from an external hard drive so that it does not affect the internal drive

    Is it possible to boot windows solely from an external hard drive so that it does not affect the internal drive. I already know that you can partition the internal hard drive to do the very same. Idon't want to use any of the internal space to run windows so I'm asking if it is possible to use a flash drive or external drive through USB to run windows when it is plugged in.

    Read https://discussions.apple.com/thread/5043762?start=0&tstart=0 to discover you can't do it.
    Allan

  • Will uninstall/reinstall Adobe Acrobat 9 affect PDFs already created?

    I am receiving a message that I must uninstall then reinstall Adobe Acrobat 9 Pro to fix a problem. Operating system. Windows 7.  Problem on laptop only.  No problem on desktop.  Error message says: "Licensing for this product has stopped working.  You cannot use this product at this time. You must repair the problem by uninstalling and then reinstalling this product or contacting your IT administrator or Adobe customer support for help. (148:3)"  If I uninstall / reinstall will this affect the PDFs already created in My Docs?  Is there another way?  

    The process with not affect the PDFs, but I would be concerned about registration and such. If you uninstall without deactivating, you may lose the second install option and have to call Adobe to reset. I would try a repair first and see if that helps. The repair can be done from Control Panel>Programs & Preferences (since you apparently cannot open Acrobat).
    If you do uninstall, do the following before reinstalling: run http://labs.adobe.com/downloads/acrobatcleaner.html and remove any left over parts of the Acrobat folder. If Acrobat is part of a CS installation, you may need to check there (CS forum) for the proper way to reinstall.
    If you have an upgrade, then be sure to have the SN of the previous product available.

  • Stuck Editing text in Acrobat 9 in an already formatted document.

    This is very basic, but I cannot find the technical answer in HELP menu.
    I have received a document already formatted in Adobe Acrobat 9 Pro. I have to make corrections. I know how to delete words or change words. However when I have to ADD IN extra words the page does not automatically reformat as in MS Word. Instead the line gets longer and juts out beyond all the other lines on the right hand side.(upsets the justification).If the line is last in the page, it does not push the text over onto the next page. How can I insert text like I would do in MS Word?

    You do not have a choice at this point, but if the tags were selected when the PDF was created you may get almost prefect recovery into WORD. At this point, just try saving as a DOC file and it will either work well or not. If not, you have the choice of either reformatting yourself or asking for the original. There is not really much else you can do other than purchasing one of the 3rd party products that do a better conversion than Acrobat does, though Acrobat has gotten better with each release from what I have seen.

  • [svn:fx-trunk] 5465: Now that padding set on a TextInput does not affect the inner textView, we need to add a custom TextInput skin for the TextInput a Spark NumericStepper contains .

    Revision: 5465
    Author: [email protected]
    Date: 2009-03-20 11:52:56 -0700 (Fri, 20 Mar 2009)
    Log Message:
    Now that padding set on a TextInput does not affect the inner textView, we need to add a custom TextInput skin for the TextInput a Spark NumericStepper contains. Jim ok'ed the addition of the new FxNumericStepperTextInputSkin.mxml class into the spark.skins and wireframe packaged.
    SDK-18275, SDK-19849
    Reviewer: Glenn
    Checkintests: Pass
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18275
    http://bugs.adobe.com/jira/browse/SDK-19849
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxNumericStepper.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperSkin.mxml
    flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxNumericStepperSkin.mxml
    Added Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperTextInputSkin .mxml
    flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxNumericStepperTextInputSkin. mxml

    Revision: 5465
    Author: [email protected]
    Date: 2009-03-20 11:52:56 -0700 (Fri, 20 Mar 2009)
    Log Message:
    Now that padding set on a TextInput does not affect the inner textView, we need to add a custom TextInput skin for the TextInput a Spark NumericStepper contains. Jim ok'ed the addition of the new FxNumericStepperTextInputSkin.mxml class into the spark.skins and wireframe packaged.
    SDK-18275, SDK-19849
    Reviewer: Glenn
    Checkintests: Pass
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18275
    http://bugs.adobe.com/jira/browse/SDK-19849
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxNumericStepper.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperSkin.mxml
    flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxNumericStepperSkin.mxml
    Added Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperTextInputSkin .mxml
    flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxNumericStepperTextInputSkin. mxml

  • Can I write Design-time for JSP custom tag(not JSF components)

    I have some old JSP custom tags(not JSF components), and I want to use them in the IDE through the toolbox.
    Now I have already written the BeanInfos for these tags, and they can be drag from the toolbox; but it will throw a Exception when render the tags, and the properties in the Property Editor are not which I describe in the BeanInfos.
    How can I write Design-time for these tags? or whether it is possible to write the Design-time for these tags?
    the Exception is shown as follow:
    java.lang.ClassCastException
         at com.sun.rave.insync.faces.FacesPageUnit.renderNode(FacesPageUnit.java:1347)
    [catch] at com.sun.rave.insync.faces.FacesPageUnit.renderBean(FacesPageUnit.java:1086)
         at com.sun.rave.insync.faces.FacesPageUnit.getFacesRenderTree(FacesPageUnit.java:993)
         at com.sun.rave.css2.FacesSupport.getFacesHtml(FacesSupport.java:152)
         at com.sun.rave.css2.CssContainerBox.addNode(CssContainerBox.java:373)
         at com.sun.rave.css2.CssContainerBox.createChildren(CssContainerBox.java:354)
         at com.sun.rave.css2.DocumentBox.createChildren(DocumentBox.java:90)
         at com.sun.rave.css2.DocumentBox.relayout(DocumentBox.java:160)
         at com.sun.rave.css2.PageBox.layout(PageBox.java:392)
         at com.sun.rave.css2.PageBox.relayout(PageBox.java:454)
         at com.sun.rave.css2.DocumentBox.redoLayout(DocumentBox.java:313)
         at com.sun.rave.css2.PageBox.redoLayout(PageBox.java:460)
         at com.sun.rave.css2.DocumentBox.changed(DocumentBox.java:634)
         at com.sun.rave.designer.DesignerPaneUI$UpdateHandler.changedUpdate(DesignerPaneUI.java:1012)
         at com.sun.rave.text.Document.fireChangedUpdate(Document.java:851)
         at com.sun.rave.text.Document$5.run(Document.java:631)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

    I have some old JSP custom tags(not JSF components), and I want to use them in the IDE through the toolbox.
    Now I have already written the BeanInfos for these tags, and they can be drag from the toolbox; but it will throw a Exception when render the tags, and the properties in the Property Editor are not which I describe in the BeanInfos.
    How can I write Design-time for these tags? or whether it is possible to write the Design-time for these tags?
    the Exception is shown as follow:
    java.lang.ClassCastException
         at com.sun.rave.insync.faces.FacesPageUnit.renderNode(FacesPageUnit.java:1347)
    [catch] at com.sun.rave.insync.faces.FacesPageUnit.renderBean(FacesPageUnit.java:1086)
         at com.sun.rave.insync.faces.FacesPageUnit.getFacesRenderTree(FacesPageUnit.java:993)
         at com.sun.rave.css2.FacesSupport.getFacesHtml(FacesSupport.java:152)
         at com.sun.rave.css2.CssContainerBox.addNode(CssContainerBox.java:373)
         at com.sun.rave.css2.CssContainerBox.createChildren(CssContainerBox.java:354)
         at com.sun.rave.css2.DocumentBox.createChildren(DocumentBox.java:90)
         at com.sun.rave.css2.DocumentBox.relayout(DocumentBox.java:160)
         at com.sun.rave.css2.PageBox.layout(PageBox.java:392)
         at com.sun.rave.css2.PageBox.relayout(PageBox.java:454)
         at com.sun.rave.css2.DocumentBox.redoLayout(DocumentBox.java:313)
         at com.sun.rave.css2.PageBox.redoLayout(PageBox.java:460)
         at com.sun.rave.css2.DocumentBox.changed(DocumentBox.java:634)
         at com.sun.rave.designer.DesignerPaneUI$UpdateHandler.changedUpdate(DesignerPaneUI.java:1012)
         at com.sun.rave.text.Document.fireChangedUpdate(Document.java:851)
         at com.sun.rave.text.Document$5.run(Document.java:631)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

  • I have downloaded OS X Yosemite using recovery from boot but while installing error occuring showing unable to extract essential.pkg so can't install. problem is i have already formatted my drive and dont have any os right now. please help

    i have downloaded OS X Yosemite using recovery from boot but while installing error occuring showing unable to extract essential.pkg so can't install. problem is i have already formatted my drive and dont have any os right now. only the downloaded new os x yosemite in the os x base system. please help

    Please try again after taking each of the following steps that you haven't already taken.
    Step 1
    Reset your computer’s PRAM.
    Step 2
    If your model has user-replaceable memory, and you've upgraded the memory modules, reinstall the original memory and see whether there's any improvement. Be careful not to touch the gold contacts. Clean them with a mild solvent such as rubbing alcohol. Aftermarket memory must exactly match the technical specifications of the machine.
    Step 3
    Back up all data to at least two different storage devices, if you haven't already done so. One backup is not enough to be safe. The backups can be made with Time Machine or with Disk Utility. Preferably both.
    Erase and install OS X. This operation will destroy all data on the startup volume, so you had be better be sure of the backups.
    Step 4
    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider to have the machine tested.

  • New external harddrive already formatted as FAT32 for OSX

    I have decided to purchase a new external harddrive already formatted as FAT32 for OSX for me to move files between my pc amd macbook. what would you recommend that is functional and not expensive-less than 150 bucks? 50 gigs would be sufficient for me. please advise.

    thanks guys!
    which of these 3 would you recommend for my
    purpose?as a photographer my purpose is moving back
    and forth high rez photos (none in the 4g range
    though) between my pc at work(dell XP intel 4 ) and
    my new macbook at home. i have to pay for the EHD out
    of my pocket. the advantage of the best buy options
    would be i save on delivery since there is one close
    to home.
    if i buy one of these could i just plug and play it
    or do i have to do something more to make it Fat 32
    and speak to my pc and mac?
    http://eshop.macsales.com/item/Other%20World%20Computi
    ng/MEXPFW80GBST/
    Good buy, not the best quality (chipset)
    http://www.bestbuy.ca/catalog/proddetail.asp?logon=&la
    ngid=EN&sku_id=0926INGFS10074956&catid=20238
    This one needs an external power supply. I don't think you want to lug that back and forth to work with you.
    http://www.bestbuy.ca/catalog/proddetail.asp?logon=&la
    ngid=EN&sku_id=0926INGFS10077276&catid=20238
    Pricey for 40GB's but looks portable. Wish I knew if it was a 3.5" or 2.5" drive. If its a 3.5" it too will need an external power supply.
    With Erik's comment in mind, this might be your best bet (my pick, budget in mind):
    http://eshop.macsales.com/item/Other%20World%20Computing/MOFWU60GB54H/
    Greg
    You might have to format any of the drives you purchase, but its no biggie

  • How will the new OSX Mavericks affect applications already installed and using Mountain Lion?

    How will the new OSX Mavericks affect applications already installed and using Mountain Lion?

    If you're asking about compatibility, that would be something you would need to ask of the app developers, though most apps compatible with Mountain Lion should be compatible with Mavericks. You can also consult the tables here:
    http://roaringapps.com/apps
    though that information comes from user reports and so should not be considered authoritative.
    If you're asking whether installing Mavericks will delete your apps, no, it won't, though a good backup is always highly recommended.
    Regards.

  • Newfs_msdos not producing a good format?

    I need to format a 16 gig compact flash card with the ability to control the block size in order to work with a certain camera. Unfortunately the Disk Utility is completely useless as it produces a format that is unreadable for the device it's going into (Canon 5D and Canon 1DMkII cameras). Before we get into the "just format in camera" suggestions, that's impossible to do with the 5D. Although the 5D will support a card formatted to 16 gigs in 1 series cameras, it can not format a card to 16 gigs on its own. If you have a 1 series camera you can simply format it in and plop it into the 5D, no problem. Fortunately I have both but not everyone does and I have a few folks who'd like to use 16 gig cards with their 5Ds.
    I've tried a straight format using the Disk Utility and as I've mentioned, it produces a useless format (the camera recognizes the disk as being full). If I format a card already formatted to 16 gigs in a PC, it works fine so I'm guessing that Apple or the BSD folks aren't following the standard to the tee (or.... maybe they are following the spec to the T instead of reverse engineering what Microsoft does, and not doing what it says... I don't know... the PC works, the Mac doesn't).
    I figured I might have more luck with the command line. Here's what I've come up with so far...
    sudo su (if you don't use sudo su the following commands throw a "resource busy" error or something along those lines)
    umount /dev/disk1s1 (in my particular case that's where the card is)
    newfs_msdos -F 32 -b 8192 -v some_name /dev/disk1s1
    So, it formats the drive. During the formatting the bsec differs the bsec of the Canon formatted disk but when I check it after the format, things match up. I'm not sure what that's all about. At this point I can't figure out how to release the drive from the system. The eject button doesn't work and if I pull the card out, OSX complains, so that's another part of the mystery as well.
    I'm guessing I need to provide more information on how the Canon is performing the format (or blasting an image to the card) however I'm not exactly sure what that information is or how to extract it. If anyone has any suggestions I'd appreciate it. The final goal is for someone without a 1 series camera or a PC be able to format a 16 gig card and use it in a Canon 5D. Any help would be greatly appreciated.
    Cheers, Joe

    Hi Nils,
    I did try the -N to see what Canon was doing with the format (they're using a block size of 8192 bytes) so I could then plug those parameters in when doing the format with newfs_msdos. After I do the format via the command line and then do the -N again to double check things, the numbers are all identical so there's got to be something else going on there. Interestingly enough DURING the format process the bsec is different (but afterwards it checks out OK, I'm not sure what's going on there). I have also tried this with the PC and when setting the block size to 8192 it produces the same results as a Canon formatted card.
    I'll give the dd route a try. I don't believe that Canon is actually formatting the card, I'm pretty sure they're just blasting an image.
    Thanks!
    Cheers, Joe

Maybe you are looking for

  • Need help with adding formatted text and images to Crystal Report?

    Here's my scenario: I have a customer statement that's generated as a crystal report and that has a placeholder for advertisement. The advertisement is mixture of formatted text and images. Until now we only had one advertisement that was always used

  • Lion OS & Office for Mac

    I have Office 2004 which is based on Rosetta and not compatible with Lion. I use it for Word. ( I get emails in that format and respond with a Word format. ) I believe the Lion OS is compatible with Office 2008 and 2011. Should I buy the Home Office

  • Failed Drive, how to clone

    My hard drive is failing in my iMac emc2389. It has bad sectors. The computer will boot but locks up and becomes unresponsive. I do not have the option to install backup software to this computer to clone the drive. I do not have a backup. I do have

  • Mov to flv

    I want to upload a home video to a site that only accepts .flv. My movies are .mov. Is there any conversion program that will convert .mov to .flv?

  • I can't get any sound out of my iMac unless I am wearing headphones.  Is there a way to fix this?

    When I turned on my computer this morning I noticed that I didn't hear the chime, but realized that my son had left his earphones plugged in.  When I unplugged them, the computer still didn't have any sound.  When I plugged the earphones back in I co