How does 8 relate to CS3 and up?

Good day,
I am a web designer specialized in cross-browser rendering (IE6 through Chrome13), DHTML and making sites user-friendly. But I'm starting my own business next year, so I should be able to create basic graphics, too. I found a CD with a Macromedia pack on it (DW, Flash and FW), all version 8. But I am confused, because I see screenshots of CS3 versions that look much older than my FW interface. Where does version 8 stand in relationship to CS3 and up? I would need to know for the tutorials I want to study.
And if version 8 is substantially worse than newer versions, what important things would one be able to do with those newer versions that cannot be done with version 8?
Thanks in advance.

Thanks for replying, Linda. You asked: "Why not download the trial version of Fireworks CS5.1 and compare the two versions for yourself?" The answer is that I've just started with the program, even with making graphics myself -- others used to do it for me up 'till now. I would think that one can only assess program versions by try-out if one is more or less proficient in its use.
Of more value to me now would be to know which functions CS5 would have that 8 doesn't. You said that with CS5 one can design multiple pages in one document. Would there be other important improvements?
Also, I still wonder why CS3 (5 also?) has a much more old-fashioned interface than version 8? They compare like Windows 95 and Vista.  

Similar Messages

  • How do you connect your photoshop elements on your computer to your account online? and how do you create a customized url? how does the gallery work and how do you access it? i have trouble signing in on my program from my computer to connect to the onli

    how do you connect your photoshop elements on your computer to your account online? and how do you create a customized url? how does the gallery work and how do you access it? i have trouble signing in on my program from my computer to connect to the online photoshop, and I really want to create my own customized url and post photos to my gallery and share them with the world, family, and friends, but i need help because i can't figure how to do any of this, would really appreciate feedback and assistance, thanks, - claire conlon

    To add to sig's reply, "calibrating" does not calibrate Lithiu-Ion batteries, it calibrates the charge reporting circuitry.  If you look at the effect of deep discharging Lithium-Ion batteries in the data from the independent test group, Battery University, you will see that doing so shortens the life of the battery significantly. It looks like an optimum balance between use and life is at a discharge level of 50%.

  • ColdFusion 11: cfclient ... how does normal CFML code and cfclient code interact?

    G'day:
    I am reposting this from my blog ("ColdFusion 11: ... how does normal CFML code and  code interact?") at the suggestion of Adobe support:
    @dacCfml @ColdFusion Can you post your queries at http://t.co/8UF4uCajTC for all cfclient and mobile queries.— Anit Kumar Panda (@anitkumar85) April 29, 2014
    I have edited this in places to remove language that will be deemed inappropriate by the censors here. Changes I have made are in [square brackets]. The forums software here has broken some of the styling, but so be it.
    G'day:
    Another quick one. I'm raising these quick-fire questions here because Adobe have declined to suggest a better place to raise them, other than as comments on one of their blog entries. Well that was Ram's suggestion (which I don't think is terribly-well thought out). He declined to react to my suggestion that the Adobe ColdFusion forums might be a good place. Anit suggested Twitter or just emailing him, but I think there'd be public interest in this stuff, so don't want to resort to email.
    As I'm the master of what goes on on this blog: I'll clutter this thing up.
    Say I want to have a mix of "normal" CFML and <cfclient>-based CFML in the same file. I can only presume the intent is to allow this, otherwise having <cfclient> as a tag rather than just a file extension seems like a poor approach. Obviously if one can have a start tag and an end tag, then code can come before (and I guess after) the <cfclient> tags themselves.
    So I'd expect this to work:
    <cfset message = "G'day World"> <cfclient> <cfoutput>#message#</cfoutput> </cfclient>
    However all I get is an error in JS:
    Uncaught ReferenceError: message is not defined variablesScopeVariable.cfm:4
    And, indeed, the only mention of message in the JS source is the one that's erroring (as it's on the right-hand side of an assignment).
    So I thought perhaps <cfclient> worked like <cfthread> and I needed to pass attributes into it:
    <cfset message = "G'day World"> <cfclient message="#message#"> <cfoutput>#message#</cfoutput> </cfclient>
    This doesn't compile:
    Attribute validation error for the client tag.
    The tag does not have an attribute called message. The valid attribute(s) are ''.
    ColdFusion cannot determine the line of the template that caused this error.This is often caused by an error in the exception handling subsystem.
    Note also there's an error in the error message itself. It's not the <client> tag, it's the <cfclient> tag.
    Rightio then, so I tried just using the request scope instead (the code's the same as the variables-scoped example, except using the request scope). No dice: same JS error.
    As a last ditch effort, I just tried to see if <cfclient> was aware of anything going on around it, by passing a value on the URL, and seeing if <cfclient> saw that, eg:
    <cfclient> <cfoutput>#URL.message#</cfoutput> </cfclient>
    This behaved differently from the variables- / request- scoped examples, in that I didn't get a JS error, I just got this on the screen:
    undefined
    And no JS error. It pains me to have to do this, but let's look at the generated JS to see why the behaviour is different:
    Variables scope example:
    <script type="text/javascript" src="/CFIDE/cfclient/cfclient_main.js"></script> <script type="text/javascript" src="/CFIDE/cfclient/cffunctions.js"></script> <meta name="viewport" content="width=device-width"> <script type='text/javascript'> globalDivStruct=null; var _$variablesScopeVariable_func=function(){     var self=this;     var variables={};     self.__init=function(){         var localdivstruct=globalDivStruct;         var __output_var="";         var tmpVarArray={};         localdivstruct.outputvar+=message;        return""     } }; function __startPage__$variablesScopeVariable(){     document.write("\x3cdiv id\x3d'__cfclient_0'\x3e\x3c/div\x3e");     window.ispgbuild=false;     var clientDivStruct={         divId        : "__cfclient_0",         outputvar    :""     };     globalDivStruct=clientDivStruct;     try{         _$variablesScopeVariable=new _$variablesScopeVariable_func;         _$variablesScopeVariable.__init()     }     catch(__eArg){         if(__eArg!=="$$$cfclient_abort$$$")             throw __eArg;     }     __$cf.__flush(clientDivStruct) } __startPage__$variablesScopeVariable(); </script>
    The only significant difference (other than function names, based on the file names) between this and the URL-scoped example is the indicated line above is replaced by this in the URL example:
    localdivstruct.outputvar+=__$cf.__arrayGet(URL,"message",true);
    So it's like it's trying to do the right thing, but just failing. I thought it might be because CF does stupid thinks with scope-key casing, and changed the <cfclient> code to expect URL.MESSAGE not URL.message, but this didn't work either.
    So I'm flummoxed. I can't find anything in any documentation which might point me in the right direction, so anyone know what the story is here?
    Update:At Joel's suggestion I tried this:
    <script> message = "G'day World"; </script> <cfclient> <cfoutput>#message#</cfoutput> </cfclient>
    Thisworked. Which elicits from me a mixture of "heh: cute" and "this is an abomination". 
    Adam

    PaulNibin wrote:
    Hi Adam,
    When you write code inside <cfclient>, it is translated to java script. It cannot access server side variables(defined outside cfclient).
    <script> message = "G'day World"; </script> <cfclient> <cfoutput>#message#</cfoutput> </cfclient>
    The above code works because, message is defined in a script block and client side CFML is interoprable with javascript. So client side CFML can use variables, functions defined in javascript blocks.
    Thanks,
    Paul
    So you're saying you did not provide a mechanism for transferring the variables from the server-side part of a file's code to the client side part? Is this not a bit of an oversight?
    And what - in your mind - is the point of having a file with blocks of both normal CFML, and then a <cfclient> block, then more CFML, then another <cfclient> block (for example) if the code cannot interact?
    Adam

  • How does CEF perform equal and unequal cost load balancing?

    hello
    How does CEF perform equal and unequal cost load balancing?
    thanks

    Hello Wang,
    it is only EIGRP that can perform load balancing over unequal cost links.
    For equal cost links CEF allocates 16 buckets and maps them to the the physical links.
    the result of a binary operation is used to associated a packet to an outgoing interface:
    Source IP address EXOR DEstination IP Address EXOR hash
    the hash is a seed that changes only at every reload.
    Actually the last 4 bits are used so that each flow can be classified in one bucket.
    then the outgoing interface is the one asscociated to the result of the exor operation.
    Another way to see is that m bits are used so that 2^m is equal to N number of links (if N is even)
    the rule is simple and pre-established
    Hope to help
    Giuseppe

  • HT1338 How does one uninstall Garageband and other things?

    How does one uninstall Garageband and other things on the Macbook air?

    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, EasyFind, instead.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
        1. AppZapper
        2. AppDelete
        3. Automaton
        4. Hazel
        5. AppCleaner
        6. CleanApp
        7. iTrash
        8. Amnesia
        9. Uninstaller
      10. Spring Cleaning
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • My husband was trying to reload and delete printers and he some how reset many settings on his mac book pro - how does he go back and set everything for earlier today

    My husband was trying to reload and delete printers and he some how reset many settings on his mac book pro - how does he go back and set everything for earlier today

    As Terence said you're experiencing a kernel panic. Boot into your System install disk and launch Disk Utility from the Utilities menu in the first window after the language selection window. Repair the disk. If DU finds problems and runs repairs do it a second time and then reboot.

  • How does iCloud Photo Library and Optimize iPhone Storage Work?

    Even Apple Phone support can't answer these questions:
    How does iCloud Photo Library (Beta) from yesterday's 8.1 update with Optimize iPhone Storage turned on work? (I'm on an iPhone 6)
    It only stores your iPhone/iPad versions on your device, which is amazing. Why would you need anything else? It freed up around 8-10GB of space on my device which is amazing. But how does it work when you use it?
    When you email it seems to ask you, when sending what size you want to send like it's always done. It gives you the original 2.4MB version. This works like I'd imagine and when I received the test email the photo was correct. In this case I assume it hits iCloud and sends it from there, not your actual device. (Like it doesn't re-download it to email it). Correct?
    When posting to Facebook, does it do this same thing? Or is this something Facebook has to build into their iOS app in an update? Or does it just work? Correct?
    When posting to Instagram, does it grab the right version. Obviously the phone optimized version should be fine, but when viewing on a Desktop version of Instagram at instagram.com, will it show the right version?
    Sometimes I backup photos using Image Capture on the Mac. If I did that right now, would it only grab the iPhone versions? Obviously I can just test it but it'd be amazing if someone who knows these things could explain all of these use cases.
    Do you need to be on
    In closing it's more of how does this work? Does it work? Why wouldn't you want to use this feature if it saved space and made more sense? I guess I just would love some real clarity since not even the blogs are explaining how it works in every application.
    In closing part 2. It does seem to work really well, it's just those fringe cases. I just viewed all my photos on https://beta.icloud.com/#photos and they're all there, easy download of the high res, delete, it deletes from my camera roll on my phone, it's amazing, it works, it's magic. Just tell me what issues there are with storing only low res iPhone on my device and if there are none, game on!
    Thanks!

    santiagofrommiami wrote:
    And of those 4.3GB of backup, my Photo Library is 1.4GB.
    So my question is, how do I prevent my Photo Library from being backed up to the cloud, since I already have a backup of it everytime I connect to iPhoto and it copies all those photos to my mac?
    I don't know, sorry. It's supposed to work alongside Photos & iCloud, so that photos are stored only once. When it doesn't work you have a couple of options as I see it –
    Delete the old backups on iCloud to hopefully start over (I don't like deleting the only backup of anything).
    Forget about iCloud backups & use iTunes to backup instead, it might not be suitable if you have no computer etc.
    Buy more storage for iCloud.
    I don't use iCloud backup, it bemuses me with issues like this, there is no easy way to resolve when it fails.
    And one more question while we are at it...can I erase iphoto from my computer now that I have the new Photos app?
    That is up to you. If you are happy you do not need it & have a backup of it go ahead & remove it. You can re-download it from the app store if it is already in your Mac App store account.

  • How does services menu work and how to clean it up?

    You know how context menus on the mac are sometimes slow? I've figured out this has to do with the services menu.. located under keyboard -->services in the left-hand sidebar. My question is how do apps put services in that menu.. and how do I remove rather than disable a specific menu item?
    I guess my broader question is how do I completely uninstall applications when I no longer have the original app bundle? I'm just concerned about clutter acclumating over time.
    --Sam

    https://discussions.apple.com/message/1485840#1485840
    Apple found this answer for me after I posted.
    However, the question is still a good one in general. Absent something like appzapper anaylyzing the app, how does one uninstall. The services menu looks like it will be taken care of when the app is removed. Language packs must have been the culprit for me?
    --Sam

  • How does relative RPATH work ?

    Hi,
    I'm using ld 5.8-1.294 on solaris 8.
    I have a shared object with the following traits:
    - run location: /net/A/B/C/D/E/libx.so
    - install location: /net/a/b/c/libx.so
    - dynamically depends on: /net/a/x/y/liby.so
    If I need the runtime loader to find liby.so without having to specify a absolute search path (in production software /net/a will be replaced by another location, for example), then should this be the correct options on link line:
    -R../../x/y -ly // relative to the location where libx.so resides
    or is it:
    -R../../../../../a/x/y -ly // relative to the location where libx.so is run from
    If the latter is correct, then how do you suggest that we record relative search path information since the location where the pprogram/library is invoked from is not going to be known to the person building the program/library.
    Thanks for help,
    Prabal.

    Hi,
    Thanks for the prompt response!
    However, I don't think $ORIGIN can help much here.
    Let us say, the producion software is installed at:
    /net/cad-org/platform/tools/lib/libx.so
    and it depends on:
    /net/cad-org/platform/tools/utils/lib/liby.so
    The user can run the software from any place and provided the program that loads libx.so does so by an explicit dlopen (it can figure out the path to x.so by backtracking to the installation root - /net/cad-org/platform/tools in this case), then there is no need so far to know anything about the "current location".
    However, since libx.so does not dlopen liby.so, but instead loads it via the runtime loader, the relative position of liby.so w.r.t the "current location" (or, working directory, where the program is run from) is no longer constant. Instead it depends on the current location. So, I don't see how $ORIGIN would help here.
    Please correct me if I missed something here.
    Thank you,
    Prabal.

  • How does this program group and cluster these button values into an array?

    In the attached program, there are 6 buttons in a cluster and 1 individual button. These buttons control a bunch of different relays to control power to different components of a single device. Right now the program works in that I can control the 6 buttons, the LED turns on in the board and the power is being transmitted. What I do not understand is how it is doing this.  I ran the program with the highlight execution on and at the start of the read from array component, if say I pressed button 6 and hit ok, it reads #6, where did these get defined and labled? and if i wanted to add another button/relay how do i do this? If someone could explain step by step how this is grouping the relays on the board into an array and then controling them I would really appreciate it. Thanks.
    Solved!
    Go to Solution.
    Attachments:
    Cluster to Array.vi ‏85 KB

    The #6 your seeing is the number of elements in the array not a value for the array. 
    Now for some deeper explainations.   From the code it appears that exactly 1 of 6 valves may be used and an additional valve may be in one of two possible states.
    When the program is run the cluster of buttons is initiallized to all False.  and we enter the outer while loop where a sequence structure starts.  In the first frame of the sequence we initiallize a shift register to hold the current value of "Buttons." and this loop runs unthrottled (Add a wait for next ms multiple to this loop to prevent using 100% of the CPU!) 
    For each iteration the buttons are read and if a change has occured to any value buttons that were previously True are reset to False to prevent opening more than one valve.
    When the user presses OK or stop- the current "Buttons" value is passed to the next frame.  This frame convertsthe 7 boolean values to a integer where each valve is controlled by a seperate bit of the integer (Isolation is bit 6 and bits 0-5 each control a mixing valve)
    Now I'd strongly recommend reworking the DAQmx calls- it is pointless to initiallize the task each time you want to use it- Create the task in the initialzation case and wait until the user exits to destroy the task.  And well a sequence structures are frowned on- (there are better ways to do this)
    As far as adding a relay- right now the relays are associated to the hardware by their index position in the cluster (element 1 = bit 0 etc....) to add a new valve you would need to decide what bit you would use to drive it and code in that bits' value to write a 0 in that bit.  (hint the 40 constant is realy 0x40 right-click>visable items>show radix )
    Let me know if you need further elaboration
    Jeff

  • How to relate 3 Lists and insert them into DB

    Hello everyone,
    I am developing an application that loads several excel files into a database.
    For each excel file (they are all different, i cannot make a general process) i get the information and fill, for instance, 3 Lists of Hashmaps (each List will load the date into its own table).
    For instance, i will have 3 List like:
    -positionList
    -puntuationList
    -stageList
    The position table will have puntuationId and stageId as FKs.
    Then i have a class that will contain the 3 Lists as members, and i pass an object of this class to the DAO.
    Then in my DAO i have a method that will loop for the Lists and will insert the records.
    Well, i have 2 problems:
    - How i can Know which stage and which puntuation belongs to which position?
    - Which would be the best way to make the insert?
    Any idea? i a bit stuck
    Thanks in advance

    If punctuation and position and whatever belong
    together: why aren't you creating once consistant
    object from that data, and have a list of those?
    Three lists of related data is always fishy.
    Which of those fields belong together is something
    only you can know, I wouldn't see how I could help
    you there.Well because each list matchs to a table in the DB, my boss wants me to do it that way, filling the three Lists and then insert each one data into its related table. The thing is that i don�t know how to have a reference to punctuationList and stageList fields in PositionList.
    I am not sure if i explained this correctly :)

  • Hi,  how order related billing returns and credit memo's handled

    hi,
    sap gurus,
    i am able to configure the order related billing  business process and
    plz requesting to explain the how to handle returns process for the same and
    how i can raise credit memo for the same process.
    regards,
    balaji.t
    09990019711.

    Step 1: Sales Document Type
    IMG > Sales and Distribution > Sales > Sales Documents >
    Sales Document Header:
    1. Sales Document Type:The sales document types represent the different business transactions, such as Inquiry, Quotation, Sales Order, etc. To create new sales order type, always copy as with reference to similar sales order. If possible use standard sales order.
    2. Define Number Ranges For Sales Documents: Maintain number range with discussion with core team.
    3. Assign Sales Area To Sales Document Types:
    A. Combine sales organizations / Combine distribution channels / Combine divisions: Ensure to maintain these, else Sales Order creation will give error.
    B. Assign sales order types permitted for sales areas: Assign only required Sales Order Types to required Sales Area. This will minimize selection of Sales Order Type as per sales area.
    Sales Document Item:
    1. Define Item Categories: If possible use Standard Item Category. Incase if required to create new, copy as from standard & maintain New. (Item Category TAD is used for order related billing & in Material Master Item Category group is LEIS)
    2. Assign Item Categories: If possible, use standard. Formula for deriving item category: Sales Document Type + Item Category Group + Usage + Higher Level Item Category = Item Category
    Schedule Line:
    1. Define Schedule Line Categories: If possible use Standard Schedule Lines. Incase if required to create new, copy as from standard & maintain New.
    2. Assign Schedule Line Categories: If possible, use standard. Formula for deriving Schedule Line: Item Category + MRP Type / No MRP Type.
    Step 2:
    IMG > Sales and Distribution > Billing >
    1. Define Billing Types: If possible use Standard Billing Type. Incase if required to create new, copy as from standard & maintain New.
    2. Define Number Range For Billing Documents: Ensure to maintain number range.
    3. Maintain Copying Control For Billing Documents: Maintain relevant copy controls such as Sales Order to Billing, Deliver to Billing, etc.
    Note: Ensure that Copy Control settings are done
    Sales Order to Billing (OR --> F1): VTFA
    Billing to Sales Order (F2 --> RE): VTAF
    The configuration differs from scenario to scenario & requirement of the client.
    Regards,
    Rajesh Banka
    Reward point if useful.

  • Colorblind red/green, how does that affect PS and what are the options.

    Like so many men, I am Colorblind (not in full) for red/green.  As a photographer I manipulate pictures like all of us. My main tools are LR-3 and PS-5.
    I operate in the Pro-Photo colorspace on am Imac with a Eizo graphical monitor all calibrated.
    The problem arrises when I start to work on skin and other elements, as I am coloblind (partial) my manipulations tend to result in a bit to redisch pictures. A comment I receive many times.
    I don't see it that way, but after a colorblindness test it was comfirmed.
    So here is the question:  Is there a tool/colorprofile/colospace or whatever that could be used by me as a red/green colorblind person so that I can manipulate the pictures as I would like to.
    The colorprofile/space/tool would compensate.  Once done with the job I could then simply convert it back to a normal human view.  Does this exist ?
    Note that I always work with graycard and a ColorChecker from X-rite..
    Any recommendation is more then welcome.

    Interesting…  If I understand the issue correctly, you need the opposite of this:
    This shows a person with normal vision how an image will look to a color blind person.  I can see how the opposite may pose quite a challenge for the programmers. 
    Wo Tai Lao Le
    我太老了

  • How does time machine work, and what does it really do?

    i just got my macbook pro, and just wiondered what time machine does, and how t works

    Hi p,
    Basically, it's an incremental, hourly backup application (you provide the HD). After the first backup, it only backs up new/revised data (plus some overhead), so it takes up much less space than all separate backups. Some reading for you:
                Basics: http://support.apple.com/kb/VI29
    How to back up and restore your files: http://support.apple.com/kb/ht1427
    Recovering Your Entire System
    http://docs.info.apple.com/article.html?path=Mac/10.5/en/15638.html

  • IDOC - How to relate a segment and its sub segment

    consider this scenario
    E1MBXYH : Goods movements for mobile data entry (header data)
    Status: Required , min. number : 1 , max. number : 1
        E1MBXYI : Add goods movement from external system: Item
        Status: Required , min. number : 1 , max. number : 9999
             E1MBXYJ : Create Goods Movement from Non-SAP System: Item++
             Status: Optional , min. number : 1 , max. number : 1
    E1MBXYJ is a sub segment of EIMBXYI
    For every record in segment EIMBXYI i have to find 1 coressponding record in segment EIMBXYJ
    Loop at idocdata where segname='EIMBXYI'
    Loop at idocdata where segname='EIMBXY'  and   ?
           endloop
    endloop
    How do i find the relation between the 2 segments. There are no common fields for the segment structures.
    Message was edited by:
            raja

    Hi Raja,
    The is automatically governed by the hierachy and the occurrences that is defined in WE30 for an IDoc type.
    In WE30 we create the segment hierachy (parent and child). Double clicking any segment will lead to its occurrences (min and max). You can also navigate to segment editor to see the fields in that segment.
    Idoc data is just an internal table, we just append segments to that table based on the occurrences in the sequence (child cannot occur before parent) shown in the hierarchy in WE30.
    So you have to deal with indexes in this case. So EIMBXYI will occur first followed by child E1MBXYJ in the idoc_data internal table.
    If there are 10 E1MBXYI then also this order will be followed - E1MBXYI followed by E1MBXYJ and so on..
    Hope this helps.
    Regards,
    Gajendra.

Maybe you are looking for

  • Movement Types in Consignment Processing ?

    Hello SAPains, What are the movement types used in Consigment Processing ? ie  - CF, CI, CP & CONR . Please write back, Points will be awarded. Thank you.

  • Anyone order from Store 1094?

    This store not only told me I was 20th in line but called and gave me an apt for 6:30 on the 24th and that time was given to me last week......so... not sure how valid that is as BB is not supposed to make appts until they receive their inventory.  N

  • Activate European iPhone with US iTunes Account

    I hope there are some US citizens living abroad out there that can answer this question...I have a US iTunes account and I want to purchase an iPhone in the Netherlands where I currently live and work. I will of course need to sign up with the mobile

  • The relation between table mbew and mbewh

    MORNING!   I wanna know the relation between table mbew and mbewh.   I finded some materials in table mbewh have total valuated stock , but these materials don't have value .   Thanks a lot !

  • I cannot download abode flash, keep getting blocked plug in message

    Hi, I keep trying to download abode flash but keep getting a blocked plug in message. Have anyone been able to solve this problem?