I need help, n00bie question inside

I need to break up any shape3d into triangles in such manner that once I assemble them all together via TriangleArray, I get the original shape...
Thx

Got a working link dude?
Anyways since I can turn shapes into TriangleStripArray (Casting), and then extract the info about the strips and vertex count, I'm on my way to code my own function to get individual triangles.
I'm gonna use this for my next dynamic shadows demo which will feature casting on any planes in the scene :)
Thx

Similar Messages

  • Need help mac question

    i need help
    i am going to buy the new macbook with
    mac osx v10.5 leopard
    (1)can i update the mac to mac osx v10.5.5 without buying the mac osx v10.5.5 cd
    (2)i want to know if the the games guitar hero call of duty and medal of honor will work on my macbook ihave
    NVIDIA GeForce 9400M graphics
    320gb hard drive
    guitar hero 3+aerosmith:
    System Requirements
    Mac OS X v10.4.11 or v10.5.4 or later
    2GHz or faster Intel Core 2 Duo processor (2.33GHz recommended); does not support PowerPC processors
    1GB of RAM (2GB recommended)
    7.1GB free hard-disk space + 1GB swap file
    Video card: ATI Radeon X1600 or nVidia GeForce 7300
    Video memory (VRAM): 128MB (256MB recommended)
    DVD-ROM drive
    Internet or LAN connection (for Internet or multiplayer gaming)
    Macintosh mouse and keyboard
    Supported video cards: NVIDIA GeForce 7300, 7600, 8600, 8800; NVIDIA Quadro FX 4500; ATI Radeon X1600, X1900, HD 2400, HD 2600
    call of duty 4:
    System Requirements
    Mac OS v10.5.4 or later
    2Ghz or faster Intel Core 2 Duo processor
    1GB of RAM
    9GB free hard-disk space
    ATI Radeon X1600 or NVIDIA GeForce FX7300 video card
    128MB of VRAM
    DVD drive
    Mouse and keyboard
    Broadband or LAN connection for multiplayer mode
    Supported video cards: ATI Radeon X1600, X1900; Radeon HD 2400, 2600; NVIDIA GeForce 7300, 7600, 7800, 8600, 8800; GeForce Quadro FX 4500
    medal of honor war chest:
    System Requirements
    Operating system: Mac OS X v10.2.8 or later
    CPU processor: PowerPC G4/G5 or later
    CPU speed: 800Mhz minimum, 1Ghz or faster recommended
    Memory: 256MB recommended
    Hard disk Space: 2.6GB free disk space
    Video card (ATI): ATI Radeon 7500 or better
    Video card (NVidia): GeForce2 MX or better
    Video memory (VRAM): 32 MB or higher
    Media required: DVD drive for installation and play

    The answer to (1) is yes. for OSX, there hasn't yet been a full-number release (they're all v10). Point releases come out every couple years or so, and usually cost about $130. So if you had 10.4 and wanted to upgrade to 10.5, you'd have to buy it. But updated numbers after the second point are free. So if you have 10.5, then 10.5.5 is a free download.
    Question (2) I'm less sure about, but I would guess that all of those games would probably work. They don't list the particular video card in the Macbook as "Supported", but it's newer than the cards listed. All the other requirements are met.
    From the requirements listed, I would guess that "medal of honor war chest" is a PPC game, which means it will probably run on the Intel Macbook, but under emulation. I think usually the newer Intels are fast enough that running PPC stuff under emulation should be fine, but I don't do much of that so I can't speak from experience.
    I sometimes install Windows on a second partition on my Macs so I can dual boot, just for games. So there's that option too.

  • Need help in drawing inside the Oval and outside it

    I need help in something
    I have an array and I want the numbers to be around the oval and I have part of the array and I want to fill part of the oval
    and when I want to put a number I would like a line from the center to point at the number
    I know its hard to explain so I have picture maybe you will know hwo its work
    http://img265.imageshack.us/i/55788522.jpg/
    I have almost everything done the oval and all the code but I have no clue how to do what I explained

    import static java.lang.Math.*;
    import java.awt.*;
    import javax.swing.*;
    @SuppressWarnings("serial") public class Trefoil extends JComponent {
            setPreferredSize(new Dimension(400, 400));
        @Override protected void paintComponent(Graphics g) {
            Graphics2D g2 = (Graphics2D) g.create();
            int w = getWidth(), h = getHeight();
            g2.setColor(getBackground());
            g2.fillRect(0, 0, w, h);
            g2.setColor(getForeground());
            g2.translate(w/2, h/2);
            g2.setRenderingHint(
                RenderingHints.KEY_ANTIALIASING,
                RenderingHints.VALUE_ANTIALIAS_ON);
            int rays = 100;
            for(int i=0; i<rays; ++i) {
                double angle = i*(2 * PI)/rays;
                double flange = cos(1.5* angle - PI/4);
                int r = (int)(190 * flange * flange);
                int x = (int)(r* cos(angle));
                int y = (int)(r* sin(angle));
                g2.drawLine(0, 0, x, y);
            g2.dispose();
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable(){
                public void run() {
                    JFrame f = new JFrame("Trefoil");
                    f.add(new Trefoil());
                    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    f.pack();
                    f.setLocationRelativeTo(null);
                    f.setVisible(true);
    }

  • Beginner needs help with subform inside of subform

    I need to add a few different subforms depending upon the answers given in the form.  The first level is phase. Then they answer the question does this phase have tasks?  If yes then I want the tasks subform to appear.  If no then I want then I want the working org subform to appear.  After they answer then they have the option of adding another phase and starting the process again.  I have the phase adding again, but cannot figure out to have addtional subforms in between the phases.  Any help or examples would be greatly appreciated.
    Thanks!

    The answer to this depends on how the content of the  tasks and working org sections are organized.  Since each phase entry is set up as a table that's in a row of a parent table, the only way to insert a section under the phase would be to add a row.  You can add a row for tasks and a row for working org after the phase row, so that every time you insert a phase you'll get both.  Set them both to hidden, and unhide the appropriate row based on the answer to the "tasks" question.  The only issue is that if your task and working org info is complex it'll be tricky to format all of the info as a table row.  This can be done by making your row one cell wide (full width of the row) and setting that cell content to a subform, then adding all of your info into the subform.  However if there's a lot of data then the row constraint may be an problem.
    The other method would be to convert the phase section to a subform, then have three child subforms inside: phase, tasks and working org.  The idea is the same as what you're doing now, but you're using subforms rather than table rows.  You can add instances of subforms the same way that you add instances of table rows.
    I wired up your example using rows; see the attached form.

  • Need help  - Ethernet question for DSL

    Hi, hoping someone can help me. We are looking into getting Verizon DSL internet, and don't know if we have the Ethernet specifications. We have a flat screen 17" iMac 1Ghz, Dh said he knows we have an ethernet connection but doesn't know about the card. What Verizon says we need is a "10-Base-T Ethernet Network Interface Card (NIC)". How would I find out if we have this? (We are not eligible for the 24hr online chat support and I don't want to pay $49+ for one question)! Thanks,
    Erica

    Tom & Erica,
    You should have very little trouble connecting with Verizon. I have multiple Verizon accounts and they have always been very helpful in getting you set up, even if they need to come out to test/adjust the line-in to your home. You will get a package from them which will include DSL modem, filters, cables and so on.
    Don't hesitate to call them for help in setting it up - BUT, tell them at your first opportunity that you are running on a Mac. They will switch you immediately to a Mac person who can walk you thru just about any OS configuration.
    And no I don't work for Verizon...Just Kidding
    GOOD LUCK
    John
    Oh, of course you will want to call Verizon and have them test the line prior to/or at the time of your order. They can do that while you are on the line with them and at no charge.

  • Need help with "paste inside" feature, please!

    Hello. I'm a former Freehand user who needs to know how to accomplish the "paste inside" task in Illustrator. I have a graphic which I want to show through only in the areas where the other graphic exists. I don't know how else to explain it. Help!

    Hi JBinReno,
    You may be referring to a clipping mask. Say I want this image of a city to be contained inside of this sheared rectangle.
    Just select both the shape and the image and choose Object > Clipping Mask > Make.
    To edit the image inside of the shape, simply double click on the graphic and you can edit "inside".
    Is this the solution you're looking for?
    Michael

  • Need help - several questions

    The main problem: I have a computer that needs wireless connectivity. I do not want to use a wireless card, for a couple of reasons. One is sort of made obvious below, and the other is that I want to use the pci slot for something else anyway.
    The secondary, tertiary, etc. problem:
    1. I am using a wireless N router. I have been checking this site on occasion to see how I can improve its performance, and what I've done is make sure the firmware is up to date (but that was as of a couple of months ago), and make sure the antennae are bent/turned at different directions so they don't interfere with one another. I've also tried some of the modifications regarding beacon interval et al. (did nothing, so it's all back to defaults now, except it insists on only using channel 11 and I can't remember if it did that before) The problem is that I often lose my connection to the router. It's worse with one specific computer, which I'll explain about in a sec, but the problem also exists to a lesser extent with a powerbook.
    2. The powerbook is able to connect and maintain a decent connection only when the antennae on the router are set up such that they don't cancel each other out. It gets a poor signal when in the same room as the router, although I have read that this may be by design. We've got the router in the basement and use the laptop mostly in other rooms, so this isn't too big of a deal, but still, our B router outperforms the N router when it comes to the powerbook.
    3. The computer that has the worst problem is a desktop PC that is used for gaming and video editing. I move large files around with this machine, and I've found that very often, the wireless card ends up crashing. I've used both a linksys wireless-N card and a d-link one, and both have given me trouble, in two different computers that were used for the same purposes. In fact, I thought I had broken the linksys card because it started causing blue screens of death (this is why I replaced it with a d-link). I've noticed one correlation: the wireless card is more likely (although not guaranteed) to crash if I use the microwave or if I've moved around several gigabytes' worth of files (*especially* if I try to upload and download at the same time). Yes, I know that microwaves are bad for wireless networks, but our B cards and routers never had a problem with it (we had robustness settings turned on). But now, I seem to have roasted the d-link card, as well. It's causing hardlocks and the system can't always boot up. The card randomly stops responding. What I want to know is if I can actually burn out cards this way. I'm thinking that maybe they try to use too much power to overcome both the microwave's interference and the utter crappiness of the router. After the card crashed again today, I immediately powered down and pulled the card out, and it was burning hot. I had noticed the same with the linksys card before, after it started blue screening... (and I'm 100% certain it was the linksys card causing the BSODs as I analyzed the core dump with one of Microsoft's tools, and what came up was the broadcom driver)
    3. I've decided to buy a wireless bridge and hook it up to this computer's built-in ethernet port. What I want to know is: Will I burn out the bridge? Or does it stand a better chance? Also, can a bridge work this way, or does it need to be hooked up to a router? (if so, no prob - I have a spare router) The bridge I've ordered is the Linksys one (not sure but I think there may only be one), and it runs at G speeds. Will this be an issue?
    I also want to know if I can cause any damage to other components in my system what with two wireless cards having burned out. The first card started giving problems in one computer, but then when I got the new one, I transferred it over to the new computer, out of curiosity to see if it would work. It didn't, so that is when I got the D-link. The D-link worked fine for a little while, but now I seem to be headed right down the same path I headed down with the Linksys, with the same initial hardlocking symptoms (I bet if I wait long enough, the D-link will start blue screening too).
    Last but not least, I'm ripping my hair out over this connectivity problem. I'm thinking of firing up my old B router, despite its lack of decent security, and going with that. At least that router works perfectly, even at 7 years of age. I may still use this stupidly expensive N router, but only as a router (not a wireless access point). I apologize for sounding frustrated, but I consider myself a bit of a seasoned wireless network user, having successfully set up and used a wireless-B network for years. It was only after we got this wireless-N equipment that everything made me feel like a total noob again.
    Can anyone suggest *anything* that might help, now that you know the background?
    Oh and one more thing, before someone asks: yes, we have wireless phones. They run at 5ghz.

    1) Here's the thing. To the best of my knowledge, while Premiere can successfully ingest several kinds of color space videos, most of it's processing is done only in RGB mode. I found this out when some colors from DV source changed on me as soon as I added most any effect, whether or not I changed any of that effect's parameters. Simply adding the effect changed the color space Premiere was working in from the native YUV of DV to RGB. That change in color space caused the color shift, and nothing I did would bring it back.
    The point here is that if any affects are added to your video, Premiere has probably already shifted to the RGB color space, so you may as well keep it that way for export, rather than shifting it back to YUV causing further degradation.
    2) Leave it off.
    3) For your source, you can probably just leave it at 8.
    4) Turn off Optimize Stills. That setting can cause issues.
    5) No. Interleave is just combining the video and audio.
    6) Dude, this is Video 101 stuff. How does someone working with your source not know this already?

  • Need help with question about Microsoft Excel?

    I have recently begun using Microsoft Office for Mac. My question is related to the Excel program. I have used this for years on a PC where when the program opens, it shows a Workbook with a single page. However, on the Mac, when it opens, it shows many pages, the first going from column A to G, the second going from H to N, etc. and each page with the text "Click to add data". This continues forever. I would like to have just one sheet as on the PC. I have not found a way to limit this view to a single page. I have looked in the Preferences and in "View", but nothing seems to change the configuration. Any suggestions?
    Thanks

    My zoom only shows the magnification and does not give a "one page" option. However, I did find an icon that I loaded into the menu bar which gives the one page view. This may be due to the version 2004 that I am using.
    I also find that if I want to change the number of columns and rows, I change the size of each. I assume this is correct.
    Thanks for the help. This is slightly different that the PC version, but I am sure over time, there will be no problem.

  • Need help n00bie with Nocturn

    Hey there --
    I need a Nocturn wiz to assist me with setting up some presets. I know that Logic's built in plugs need to be "learned" but have no idea how to switch from controlling another third-party plug to something like Logic's compressor.
    For instance, I've already set up the Nocturn via "Mackie HUI" which is what was recommended. It can already map controls to Vintage Warmer, and etc. and that's fine (I've even customized it).
    When I want it to "learn" Logic's compressor attack and release, how do I then set that up? As another "zone"? Or can this be done through the Mackie HUI thing? I'm terribly confused, and I've gone over the manual twice to no avail.
    Plenty of thanks in advance. I'm looking to start a mixing project in a few weeks and really want to get this down.

    Thanks, I found that out.
    Now, are there any users out there that use the Nocturn with Logic's plugs AND other third-party plugs?
    Thanks in advance if you can help me set up some "easy to switch" templates!!

  • HT5312 NEED HELP SECURITY QUESTION

    i dont remember my security question answer. now i'm block how can i reset my security quest

    You need to contact Apple to get the questions reset. Click here, phone them, and ask for the Account Security team, or fill out and submit this form.
    (95694)

  • Mac is extremely slow after yosemite update, really need help. (Etrecheck inside).

    After recently installing yosemite my mac been painfully unresponsive and slow. I cannot boot up in normal mode, i'm currently in safe mode.
    What I have tried so far and what I know:
    Initially thought filevault was the issue, I disabled encryption and now it says "decryption is paused" and hasn't resumed in days. Potentially is the issue.
    I run a hardware diagnostic test using the hardware check within the macbook pro (booting up holding D) and the mac didn't identify any hardware issues.
    I reinstalled yosemite (not a clean install) and the issue was not resolved.
    I have completed a backup of my mac so all my data is secure.
    Any help would be great, even just telling me how to turn on filevault will be helpful.
    My etrecheck:
    EtreCheck version: 2.0.11 (98)
    Report generated 23 November 2014 20:15:11 GMT
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,2
      1 2.5 GHz Intel Core i5 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 4000 -
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 0:11:9
    Disk Information: ℹ️
      APPLE HDD TOSHIBA MK5065GSXF disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) /  [Startup]: 498.88 GB (268.58 GB free)
      Core Storage: disk0s2 499.25 GB Online
      MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
      Samsung M3 Portable Samsung M3 Portable 500.11 GB
      S.M.A.R.T. Status: Verified
      EFI (disk2s1) <not mounted> : 210 MB
      Backups (disk2s2) /Volumes/Backups : 494.35 GB (264.39 GB free)
      Recovery HD (disk2s3) <not mounted>  [Recovery]: 650 MB
      GeneralUse (disk2s4) /Volumes/GeneralUse : 4.63 GB (4.60 GB free)
      MOSART Semi. 2.4G Keyboard Mouse
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Computer, Inc. IR Receiver
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Extensions
      [not loaded] com.caiaq.driver.NIUSBTraktorKontrolS4Driver (2.6.0 - SDK 10.8) Support
      /System/Library/Extensions
      [not loaded] com.mice.driver.Wireless360Controller (1.0.0d12 - SDK 10.8) Support
      [not loaded] com.mice.driver.WirelessGamingReceiver (1.0.0d12 - SDK 10.8) Support
      [not loaded] com.mice.driver.Xbox360Controller (1.0.0d12 - SDK 10.8) Support
    Startup Items: ℹ️
      DoubleCommand: Path: /Library/StartupItems/DoubleCommand
      Startup items are obsolete and will not work in future versions of OS X
    Problem System Launch Agents: ℹ️
      [invalid?] org.thebends.iphonedisk.mobile_fs_util.plist Support
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.watchdogd.plist
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [not loaded] com.mcafee.menulet.plist Support
      [not loaded] com.mcafee.reporter.plist Support
      [not loaded] com.oracle.java.Java-Updater.plist Support
      [not loaded] com.teamviewer.teamviewer.plist Support
      [not loaded] com.teamviewer.teamviewer_desktop.plist Support
      [not loaded] org.pqrs.KeyRemap4MacBook.server.plist Support
    Launch Daemons: ℹ️
      [not loaded] com.adobe.fpsaud.plist Support
      [not loaded] com.bombich.ccchelper.plist Support
      [not loaded] com.DesignScience.DSMTTool.plist Support
      [not loaded] com.ea.origin.ESHelper.plist Support
      [invalid?] com.mcafee.ssm.Eupdate.plist Support
      [invalid?] com.mcafee.ssm.ScanFactory.plist Support
      [invalid?] com.mcafee.ssm.ScanManager.plist Support
      [not loaded] com.mcafee.virusscan.fmpd.plist Support
      [not loaded] com.mice.360Daemon.plist Support
      [not loaded] com.microsoft.office.licensing.helper.plist Support
      [not loaded] com.oracle.java.Helper-Tool.plist Support
      [not loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [not loaded] com.teamviewer.Helper.plist Support
      [not loaded] com.teamviewer.teamviewer_service.plist Support
    User Launch Agents: ℹ️
      [not loaded] com.adobe.ARM.[...].plist Support
      [not loaded] com.google.keystone.agent.plist Support
      [not loaded] com.spotify.webhelper.plist Support
      [not loaded] com.valvesoftware.steamclean.plist Support
    User Login Items: ℹ️
      FilesWarwick Application (/Users/[redacted]/Downloads/FilesWarwick.app)
      iTunesHelper ApplicationHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Flux Application (/Users/[redacted]/Applications/Flux.app)
      uHD-Agent UNKNOWN (missing value)
      uTorrent UNKNOWNHidden (missing value)
      Google Chrome UNKNOWN (missing value)
      wine Unix Executable File (/Applications/Wine.app/Contents/Resources/bin/wine)
      proXPN Application (/Applications/proXPN.app)
    Internet Plug-ins: ℹ️
      JavaAppletPlugin: Version: Java 7 Update 67 Check version
      Unity Web Player: Version: UnityPlayer version 4.5.1f3 - SDK 10.6 Support
      Default Browser: Version: 600 - SDK 10.10
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.223 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.223 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.4.6 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      DirectorShockwave: Version: 12.0.4r144 - SDK 10.6 Support
    User Internet Plug-ins: ℹ️
      BlueStacks Install Detector: Version: Unknown
    Safari Extensions: ℹ️
      LinkThing
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Java  Support
      MacFUSE  Support
      Native Instruments USB Audio  Support
      XBox 360 Controllers  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 498.88 GB Disk used: 230.30 GB
      Destinations:
      Backups [Local]
      Total size: 495.00 GB
      Total number of backups: 0
      Oldest backup: -
      Last backup: -
      Size of backup disk: Too small
      Backup size 495.00 GB < (Disk used 230.30 GB X 3)
    Top Processes by CPU: ℹ️
          86% corestoraged
          45% WindowServer
          34% Google Chrome
          10% com.apple.preference.security.remoteservice
          9% xpccachectl
    Top Processes by Memory: ℹ️
      177 MB xpccachectl
      170 MB Google Chrome
      137 MB Microsoft PowerPoint
      87 MB WindowServer
      82 MB spindump
    Virtual Memory Information: ℹ️
      26 MB Free RAM
      1.45 GB Active RAM
      1.44 GB Inactive RAM
      674 MB Wired RAM
      3.07 GB Page-ins
      167 MB Page-outs

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Need help with question about upgrading phone

    Okay, so, here's what's going on:
    I currently have a Samsung Galaxy Nexus on Verizon.
    It's dying/freezing/battery life is terrible. Looking to upgrade.
    I don't have an upgrade available for my line, but my wife does.
    She's giving me permission to use hers, which a Verizon rep told me is fine.
    I want to use her upgrade to get a Samsung Galaxy Note II.
    The best price (subsidized) right now is on Dell's site ($169.99), which I could price-match at Best Buy (employee confirmed this). However, it's still a little high for me.
    I could get a better price by adding a line with this device - shave off $40 ($129.99).
    So here's my question: is there any way to add a line, get some immediate savings on the purchase, then immediately cancel the line (maybe only taking a little bit of a hit, getting most of the cost reimbursed for not using it)? In other words, how can I get this phone as cheap as possible?
    Thanks for your suggestions!

    If you add a line as you suggest, that new line will come with a 2 year (24 month) contract for service that will have a $350 Early Termination Fee (ETF) if you cancel the line immediately like you indicated.  There goes the thought of getting the Note II for the cheaper than the upgrade price.
    I recommend going with the price match upgrade @ $169.99 at Best Buy.  I can confirm they do the price match.  I bought my last phone from Best Buy and they matched the Radio Shack price I brought them and  I had a good experience.
    Good luck.

  • Need help with question about indesign 2014...

    I am using indesign 6 on a pc - simple question: when I update to indesign 2014, will the update keep all of my previous and current work?

    Yes. Your documents will be unaffected by any new versions you install unless you open them in the new version and save them with the same name, then you will lose the ability to open them again in the old version.

  • Need help with swf inside swf

    Hello. The last few weeks I have come along way in flash,
    being new to the whole software. I have watched numerous video
    tutorials, one from www.entheosweb.com about creating a simple
    gallery.
    http://www.entheosweb.com/Flash/video_tutorials/basic_slideshow.asp
    So after this, he saves as fla. I want it to be a movie I
    embed on my flash website, labeled gallery. I have tried different
    ways to do this, import to library. I exported my gallery as an SWF
    movie, AND of course, FLA so I can go back and tweak as needed.
    When I import the SWF to the library, so I can place it in
    the gallery frame of my master movie, it brings in ALL the pictures
    and next and prev buttons. It brings in all the frames into the
    library, AND the SWF file. When I convert the swf to a movie clip,
    and stick it in the page, its there in my gallery page, but its
    playing REALLY fast, and all the action script I wrote for this
    gallery has gone away. The prev and next buttons don't work. What
    am I doing wrong?
    I have read where I have to use file>open to library and
    import the .FLA, but thats like 17 frames, and not a flattened
    movie. What do I do then?
    Thanks, I'm SOOOO ready to cry or punch my monitor.

    You need to use loadMovie();
    Do some searches in the forum for that...

  • Need Help -- multi-question

    Wow, this software is incredibly difficult to use -- but I need it to manage access for my daughter.
    1) I'm not sure how I did this, but I can access HND only through Network Magic.  I paid for my service and cannot find how to launch HND and/or how to install without installing the **bleep** anti-virus software.  All I want is HND
    2) How do I set up a rule so I allow my daughter access from 7 am to 9 pm on weekdays and 7 am to 10:30 on weekends? Right now, I have one rule and and only one time window.  I have RTFM and I can't find out how to do this.  I'm also an "expert" at this and not a newb, so I trolled the internet sites, RTFM, check the support and nothing.
    3) How do I change the email registered to HMD.  I originally set it up through my wife's email account, but need to swtich it back as my daugther has access to my wife's email and keeps changing the settings.
    4) How to I get **bleep** reports.  I've set this up several times and no reports are coming in.
    Thank you in advance!! And, sorry for my frustration as I don't think it's normal to spend 12 hours figuring this out.

    " the fact that you do'nt have a recipt is just the exuse they need to slam the door in your face"
    This statement is complete garbage. Of course your iPod will be under warranty. Either fill out the service request, or take it to an Apple store.

Maybe you are looking for

  • How can i get home sharing to work, how can i get home sharing to work

    When I sign into my Apple ID on multiple computers for home sharing, the icon on the left hand side in itunes disappears after I click done. I have tried to redownload itunes, restart my computer, basically anything the internet said but nothing help

  • IPhone5 can only be replaced with the the 5C by Asurion

    I have to say that I am really dissapointed in the scam that is being run. I have an IPhone 5 that was in a Lifeproof case but broke when it was dropped accidently. I tried to put a claim in to get the phone replaced and was told that I can pick a wh

  • Error messages in webdynpro

    Hi, I'm currently working on developing an ESS scenario for IT0573 Australia (Absences). For this scenario I've not used the FPM completely. The roadmap is as follows: Overview -> Detail -> Review and Save -> Confirmation. The node Detail has a sub-r

  • Time Capsule crashes my MacBook Pro

    Hi, I have just got back from a shopping trip with my shiny new Time Capsule. I have it set up as my wireless base station and am connected to the net. Problem I am having is that when Time Machine starts preparing to back up my MacBook Pro crashes a

  • Vivado simulator is hanging

    Hi, I began to learn VHDL, because in the nearer future, I will program a FPGA. At first, I started with ISE. From a tutorial, I got this program:  library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; entity TestLED is     Port ( clk