Upgrading to FLEX 3

Hi there,
I am new to FLEX development and I would like to buy a
license however with FLEX 3 around the corner I want to make sure
that I am not going to have to pay twice, once now for FLEX 2 and
then again to upgrade to FLEX 3.
I have been trying to find some information around this but I
have not yet discovered any details. I would like to get on with my
project but I will delay if it means getting stung a month or two
down the road.
Thanks
BCCartman

Hi Greg,
that's exactly what I've done and that's why I'm in trouble.
I used the beta which and was and still am quite happy with it. The
trouble for me started when I had to use charts which in the beta
come with a watermark!! I can't use my FB2 with charting key
because of the version jump but can't purchase FB3 either -
stuffed?
Does anybody know when FB3 will be out for purchasing? I
don't mind to pay the price I just need to fix the watermark in my
charts problem - asap.
Regards,
Lars

Similar Messages

  • Install Flash Builder 4.5.x Upgrade without Flex Builder 3.x installed?

    Edit: Is the lack of replies because no one knows the answer or because this was a ridiculously dumb question?
    Also, if I must have a prior version physically installed to do the upgrade, can I install Flex Builder 3 on a temp Windows machine, upgrade that to Flash Builder 4.5.x and then transfer the license to the MacBook? Seems like a very convoluted way of doing things but if that's the only way then I suppose I can go scrounge up a spare computer to do so. End Edit
    Hi,
    I just got a brand new MacBook Air which has Lion on it.
    I have an unused boxed copy of Flex Builder 3.0 standard edition.
    I tried to install 3.0 and of course I got an error along the lines of not compatible.
    What I would like to do is upgrade to Flash Builder 4.5.
    So the question is,
    Can I buy the upgrade edition of Flash Builder 4.5 standard for Mac, then install that on my MacBook even if I don't have 3.0 installed to upgrade from?
    Is it as simple of just supplying the seriel number from 3.0 when upgrading?
    Thanks.
    Message was edited by: Cindered Monkey
    Changed the title to better reflect the situation.
    Also added a blurb to the top.

    Well, thought I should update just in case someone else has a similar thought.
    I ran out of time to wait and it seemed I wasn't going to get a response so took the chance and bought the upgrade.
    The install couldn't find any prior versions so just asked for the serial for Flex Builder 3.0.
    After entering that in, it thankfully installed just fine.
    Would have totally sucked if it didn't work and was forced to then buy the full version.
    Anyhow, relieved it worked.
    Regards.

  • Upgrade to Flex 4, Halo theme, embedded font doesn't work for Spark Label

    I'm upgrading an application to Flex 4 from Flex 3.5 using the Halo theme.  If I include a Spark Label in my application the Spark Label does not render the text using the font I defined in my CSS.  My MX Labels render fine.  Here is an example application that replicates my issue.  So,
    Compile and run using Spark theme.  Both Labels render the text with the correct font.
    Compile and run using Halo theme.  Only MX Label renders the text with the correct font.
    Is it not possible to do what I want?
    Thanks
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx"
                      minWidth="250" minHeight="250">
         <fx:Style>
              @namespace mx "library://ns.adobe.com/flex/mx";
              @namespace s "library://ns.adobe.com/flex/spark";
              @font-face
                   fontFamily: Verdana;
                   fontWeight: normal;
                   fontStyle: normal;
                   src: url("./style/fonts/verdana.ttf");
                   embedAsCFF: false;
              @font-face
                   fontFamily: VerdanaCFF;
                   fontWeight: normal;
                   fontStyle: normal;
                   src: url("./style/fonts/verdana.ttf");
                   embedAsCFF: true;
              mx|Label
                   font-family: Verdana;
              s|Label
                   font-family: VerdanaCFF;
         </fx:Style>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <s:VGroup>
              <mx:Label text="My text" />
              <s:Label text="My text" />          
         </s:VGroup>
    </mx:Application>

    I think you might need to set the fontLookup:
            s|Label
                font-family: VerdanaCFF;
                fontLookup: "embeddedCFF";     

  • Problem of web service when upgrading to Flex 3

    Hi,
    We got a problem when upgrading our application from flex 2
    to flex 3. The same webservice call code returns different results.
    In Flex 2 it works properly but in Flex 3 it only returns partial
    data. There is no fault or error returned in Flex 3. Here are the
    major code:
    In IssueDelegat.as:
    public class IssueDelegate
    private var responder : IResponder;
    private var service : Object;
    private var model : IssueTrackerModelLocator;
    public function IssueDelegate( responder : IResponder )
    this.model = IssueTrackerModelLocator.getInstance();
    this.service =
    ServiceLocator.getInstance().getWebService("jiraWebService");
    if(!model.isWSDLLoaded){
    service.loadWSDL();
    model.isWSDLLoaded = true;
    this.responder = responder;
    public function getProjectsNoSchemes() : void
    var call : Object =
    service.getProjectsNoSchemes(model.loggedInToken);
    call.addResponder(responder);
    model.lastWSRequestTime = new Date();
    In LoadProjectsCommand.as
    public class LoadProjectsCommand extends SequenceCommand
    implements ICommand, IResponder
    public function LoadProjectsCommand()
    public override function execute( event : CairngormEvent ):
    void
    var delegate:IssueDelegate = new IssueDelegate( this );
    delegate.getProjectsNoSchemes();
    public function result(event:Object) : void
    var model : IssueTrackerModelLocator =
    IssueTrackerModelLocator.getInstance();
    model.projects = event.result;
    for each (var proj:Object in model.projects){
    if (proj.key == JiraClientConstants.PROJECT_KEY){
    model.selectedProject = proj;
    break;
    The following fields are supposed to be returned in
    "event.result" and it does in Flex 2, but in Flex 3 it only returns
    <description> field:
    <description xsi:type="xsd:string"/>
    <id xsi:type="xsd:string"></id>
    <issueSecurityScheme xsi:type="ns138:RemoteScheme"
    xsi:nil="true"/>
    <key xsi:type="xsd:string"></key>
    <lead xsi:type="xsd:string"></lead>
    <name xsi:type="xsd:string"></name>
    <notificationScheme xsi:type="ns138:RemoteScheme"
    xsi:nil="true"/>
    <permissionScheme xsi:type="ns138:RemotePermissionScheme"
    xsi:nil="true"/>
    <projectUrl xsi:type="xsd:string"/>
    <url xsi:type="xsd:string"></url>
    Are there any major changes on the web service in Flex 3.
    Thanks for your help!
    Wayne

    i tried to test with soapUI 2.5, and i can get the result in the soapUI 2.5......
    T_T

  • Upgrade from Flex 1 to 2

    Hello.
    I have an 'old' Flex 1.0 / 1.5 app that I want to upgrade to
    2.0 and keep maintaining.
    1) Is there an upgrade utility / script from Flex 1.0 / 1.5
    to 2.x ?
    2) What is the parallel of this entry:
    mx:Image height="45"
    source="@Embed('resources/login_appname.png')"
    backgroundImage="@Embed('resources/gui/top_bg.gif')" width="450"
    (emphasis on the 'bacjkgroundImage' attribute that seens to
    have disappeared)
    Thanks!

    We don't have a tool to automatically modify an app to move
    it to Flex 2.0. Check the Flex Support Center; we might still have
    a tech note on things to look out for.
    The Image component doesn't support a background image. Put
    the Image inside of a Container, like Canvas, which does support
    that.

  • Upgrade from Flex Builder 3 Professional to Flash Builder 4 Standard?

    Hi,
    I currently own a license to Flex Builder 3 Professional, and I would like to upgrade to Flash Builder 4 Standard. I do not need the extra features included in Flash Builder 4 Premium, and it costs three times as much as the Standard upgrade.
    However, none of the upgrade pages say if my particular upgrade path is possible or not. I talked to a sales rep on the phone, and he thought it would be fine, but didn't know for sure. Can anyone give me the official word if it is possible to upgrade from FB3 Pro to FB4 Standard?

    Hi,
    I don't think that "downgrades" from FB3 Pro to FB4 Standard are officially supported. You might be able to negotiate with a Sales Rep to make an exception for you though, for a discounted price on a non-upgrade version of FB4 Standard.
    Alternatively, if you have any interest in CS5 Web Premium (or have any Adobe products qualifying for a CS5 upgrade), FB4 Standard is included with that Suite now.
    -Chris

  • Flash builder 4 upgrade from Flex 3 Standard

    Hiya.
    I would like to know from Adobe if the upgrade options available a wrong or not? I've just bought an upgrade from FB3 Standard to FB4 Preminum (from Eligibility chart is SEEMS possible). The installer when I entered my FB3 Standard serial says it's wrong. At this point the possible answers are two for me: the upgrade processes on the site is wrong or there's something wrong with the installer. A would like a clarification as soon as possible.
    Thanks.

    I run into the same problem.
    For me it was the only option available at the adobe online store (upgrade Flex3 -> FlashBuilder4 Premium)
    so the registration number didn't work, saying that i have the wong product to upgrade (Flex3 standard)
    I had to open a case for software destruction to get a refund for what i've allready payed and if i want the FlashBuilder4 serial i have to re-buy it at the online store
    Custumer support told that this is the only solution.
    It's a little bit annoying.
    That is not a critic to the support team (was very friendly) it's just annoying that i can't get a standad serial for my purchase and that i have to wait some weeks to get the refund...
    So be carefully while purchasing the upgrade and look twice to choose the right option at the store.
    (Hopfully the right option is now available...)
    so long

  • Flashbuilder 4 Upgrade from Flex 3 getting following errors any idea

    Hi:
      I'm getting the following 2 errors when I try to compile a swf from Flex 3 to FB4
      Any ideas and how to get around this
      1) 1061: Call to a possibly undefined method addChild through a reference with static type mx.core:INavigatorContent
          this is the AS call
            app.dashboardstack.selectedCild.addChild(panel);
    2) 1118: Implicit coercion of a value with static type mx.core.INavigatorContent to a possibly unrelated type
                 mx.core.Container
            var subjectObject:Container = accordion.selectedChild;
    Thanks, Mike

    You need to read this, http://www.adobe.com/devnet/flex/articles/flex3and4_differences.html and a couple of other related articles in the Flex Developer Center.

  • CF 9.01 Upgrade breaks Flex Gateway - Help!!!!

    I have an AIR app which is using DataServicesMessaging with subtopics enabled.  I can create the Consumer in AIR but when I subscribe, I get the following error:
    "Error","cfthread-0","08/31/10","21:03:35",,"CATALOG_ATTRIBUTES_831AE0FE-B7D2-90A5-87AD-CA C5E01116D9: Event handler exception."
    flex.messaging.MessageException: Event handler exception.
    at coldfusion.flex.CFEventGatewayAdapter.allowSend(CFEventGatewayAdapter.java:376)
    at flex.messaging.services.messaging.SubscriptionManager.addSubtopicSubscribers(Subscription Manager.java:330)
    at flex.messaging.services.messaging.SubscriptionManager.addSubtopicSubscribers(Subscription Manager.java:311)
    at flex.messaging.services.messaging.SubscriptionManager.getSubscriberIds(SubscriptionManage r.java:264)
    at flex.messaging.services.MessageService.pushMessageToClients(MessageService.java:495)
    at coldfusion.flex.CFEventGatewayAdapter.send(CFEventGatewayAdapter.java:250)
    at coldfusion.eventgateway.flex.FlexMessagingGateway.outgoingMessage(FlexMessagingGateway.ja va:204)
    at coldfusion.runtime.CFPage.SendGatewayMessage(CFPage.java:269)
    at cfCatalogService2ecfc315059253$func_CFFUNCCFTHREAD_CFCATALOGSERVICE2ECFC3150592531.runFun ction(C:\inetpub\wwwroot\staging9sites\staging9si\com\pmdm\suppliers\services\CatalogServi ce.cfc:110)
    at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472)
    at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368)
    at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55)
    at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321)
    at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220)
    at coldfusion.runtime.UDFMethod.invokeCFThread(UDFMethod.java:201)
    at coldfusion.thread.Task.invokeFunction(Task.java:274)
    at coldfusion.thread.Task.run(Task.java:140)
    at coldfusion.scheduling.ThreadPool.run(ThreadPool.java:201)
    at coldfusion.scheduling.WorkerThread.run(WorkerThread.java:71)

    Rakshith,
    Thanks for your help!  Here's what I've got in my messaging-config.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <service id="message-service"
        class="flex.messaging.services.MessageService"
        messageTypes="flex.messaging.messages.AsyncMessage">
        <adapters>
            <adapter-definition id="cfgateway" class="coldfusion.flex.CFEventGatewayAdapter" default="true" />
            <adapter-definition id="actionscript" class="flex.messaging.services.messaging.adapters.ActionScriptAdapter"/>
            <adapter-definition id="jms" class="flex.messaging.services.messaging.adapters.JMSAdapter"/>
        </adapters>
        <!-- ======================================== -->
        <!--  ColdFusion Messaging Gateway            -->
        <!-- ======================================== -->
        <destination id="ColdFusionGateway">
            <adapter ref="cfgateway" />
            <properties>
                <!--
                    Star ('*') means gatewayid is found in the 'gatewayid' message header.
                    To restrict this destination to a specific gateway, enter its ID here
                -->
                <gatewayid>PMSIMessages</gatewayid>
    <server>
    <durable>false</durable>
    <allow-subtopics>true</allow-subtopics>
    </server>
                <!--
                    If ColdFusion is running on a different host, enter that here.
                    Default is to expect ColdFusion and Flex to share the same web application.
    You must enter 'localhost' if CF and Flex are not in the same web app.
                <gatewayhost>10.1.1.1</gatewayhost>
                -->
                <!--
                    List the IP addresses of CF machines allowed to send messages to this destination
                    If not set, the default is to allow only this computer to connect.
                <allowedIPs>10.1.1.1,10.2.2.2</allowedIPs>
                -->
                <!--
                    Credentials to pass along in the headers as CFUsername/CFPassword.
                    It is generally better to use setRemoteCredentials() API on client.
                <remote-username></remote-username>
                <remote-password></remote-password>
                -->
                <!--
                    You can add general Flex Messaging network and server properties here.
                 -->
            </properties>
    <!-- You should use the ColdFusion specific channels -->
            <channels>
                <channel ref="cf-polling-amf"/>
            </channels>
        </destination>
        <destination id="clientNotifierGateway">
        <adapter ref="actionscript"/>
        <channels>
        <channel ref="java-amf"/>
        </channels>
         </destination>
    </service>
    Here's my gateway CFC:
    <cfcomponent output="false">
       <cffunction name="onIncomingMessage" access="remote" returntype="any">
             <cfargument name="event" type="struct" required="true"/>
    <cfscript>
          x = structNew();
          x['body'] = event.data;
          x['destination'] = "ColdFusionGateway";
          x['headers'] = structNew();
          x.headers['username'] = "System";
          x.headers['DSSubtopic'] = event.data.headers.DSSubtopic;
          x.lowercasekeys = "yes";
          </cfscript>
      <cfreturn x/>
    </cffunction>
    <cffunction name="allowSend" access="public" returntype="boolean">
    <cfargument name="subtopic" type="any" required="true"/>
    <cfreturn true/>
    </cffunction>
    <cffunction name="allowSubscribe" access="public" returntype="boolean">
    <cfargument name="subtopic" type="any" required="true"/>
    <cfreturn true/>
    </cffunction>
    </cfcomponent>
    Jeff

  • Slow data communication (LCDS 3.1) after upgrading to Flex SDK 4.1

    I wonder if anybody experienced something like that.
    It's quite a big project, currently running with Flex SDK 3.5.
    After converting to SDK 4.1 and making all required adjustment the UI runs as good as before, with one problem - creation of new complex UI components takes much longer (3-5 times). Creation of some components involves a number of server calls, which according to Network Monitor do run much longer (e.g. 13 seconds instead of 4).
    I'm considering 2 possibilities:
    1. Something in UI is holding all threads, preventing service calls from finishing promptly, and making impression of slow network.
    2. Server communication somehow got much slower. Against that the fact is because server calls are asynchronous they shouldn't prevent UI from drawing at least empty components.
    Server code is the same for old and new UI, it runs Spring, Hibernate, Jetty (in dev mock) or Tomcat (on dev server), LCDS 3.1.
    I've tried several LCDS 3.1 libraries with and without patches, SDK3 and SDK4 specific, with the same result.
    Flash Player 10.1.xx debug.
    Any idea?
    Thanks, Andrei.

    It turned out that delays where caused by slow instantiation of visual components.
    See http://forums.adobe.com/thread/786472?tstart=0
    Presumably Network Monitor registers facts that server communication is initiated (queued?), but doesn't say when Flash Player frees resources to make actual calls (switch to the second Frame?). Or something like that.

  • Upgrade from Flex Builder 3.1 to Flash Builder 4.5

    I have several project in Flex Builder 3.1 now.
    What is the best way to move them in Flash Builder 4.5? Can I just use the workspace from Flex Builder 3.1 in Flash Builder 4.5?
    Is Flex 4.5 backward compatible at API level?

    You should always have separate workspaces for separate versions of Flash Builder.
    Flex 3 and Flex 4 have some large differences.  You will probably want to spend some time reading about migrating by searching on Google.  Here is a good place to start: http://www.adobe.com/devnet/flex/articles/flex3and4_differences.html

  • Flex SDK 3.3 to SDK 3.5 Upgrade error

    Hi ,
    I am getting following error message while try to run my application fro Flex Builder 3
    VerifyError: Error #1053: Illegal override of FlexModuleFactory in mx.core.FlexModuleFactory.
    I have upgraded my Flex SDK from 3.3 to 3.5.
    Application is working fine in ANT build but giving the above erroe message with IDE build.
    All the SWC files are cleaned and rebuilt.

    Not the right forum for it, but:
    http://www.adobe.com/support/documentation/en/flex/3/releasenotes_flex3_sdk.html
    http://www.adobe.com/support/documentation/en/flex/4/releasenotes_flex4_sdk.html
    http://helpx.adobe.com/flash-builder/release-note/release-notes-flex-4-5.html
    http://helpx.adobe.com/flash-builder/release-note/flex-4-6-sdk-release.html

  • Flex SDK version 4.5.1 upgrade issue

    I recently upgraded from Flex SDK version 4.1.0.16076 to  4.5.1 and this upgrade broke one of the key functionalities in my  application.
    Wherever the s:DataGroup itemRenderer's  s:RichText textFlow has <img> element, it throws the following  error in debug Flash player:
    TypeError: Error #2007: Parameter child must be  non-null.
    at flash.display::DisplayObjectContainer/addChild()
    at  flashx.textLayout.factory::TextFlowTextLineFactory/callbackWithTextLines()[C:\Vellum\bran ches\v2\2.0\dev\output\openSource\textLayout\src\flashx\textLayout\factory\TextFlowTextLin eFactory.as:267]
    at  flashx.textLayout.factory::TextFlowTextLineFactory/createTextLinesInternal()[C:\Vellum\br anches\v2\2.0\dev\output\openSource\textLayout\src\flashx\textLayout\factory\TextFlowTextL ineFactory.as:245]
    at  flashx.textLayout.factory::TextFlowTextLineFactory/createTextLines()[C:\Vellum\branches\v 2\2.0\dev\output\openSource\textLayout\src\flashx\textLayout\factory\TextFlowTextLineFacto ry.as:104]
    at  spark.components::RichText/createTextLines()[E:\dev\4.5.1\frameworks\projects\spark\src\s park\components\RichText.as:1296]
    at  spark.components::RichText/http://www.adobe.com/2006/flex/mx/internal::composeTextLines()[E:\dev\4.5.1\frameworks\pro jects\spark\src\spark\components\RichText.as:1173]
    at  spark.components.supportClasses::TextBase/measure()[E:\dev\4.5.1\frameworks\projects\spar k\src\spark\components\supportClasses\TextBase.as:534]
    at  mx.core::UIComponent/measureSizes()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\cor e\UIComponent.as:8496]
    at  mx.core::UIComponent/validateSize()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\cor e\UIComponent.as:8420]
    at  mx.managers::LayoutManager/validateClient()[E:\dev\4.5.1\frameworks\projects\framework\sr c\mx\managers\LayoutManager.as:987]
    at  mx.core::UIComponent/validateNow()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\core \UIComponent.as:8067]
    at  spark.components::DataGroup/initializeTypicalItem()[E:\dev\4.5.1\frameworks\projects\spar k\src\spark\components\DataGroup.as:297]
    at  spark.components::DataGroup/ensureTypicalLayoutElement()[E:\dev\4.5.1\frameworks\projects \spark\src\spark\components\DataGroup.as:352]
    at  spark.components::DataGroup/measure()[E:\dev\4.5.1\frameworks\projects\spark\src\spark\co mponents\DataGroup.as:1354]
    at  mx.core::UIComponent/measureSizes()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\cor e\UIComponent.as:8496]
    at  mx.core::UIComponent/validateSize()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\cor e\UIComponent.as:8420]
    at  mx.managers::LayoutManager/validateSize()[E:\dev\4.5.1\frameworks\projects\framework\src\ mx\managers\LayoutManager.as:665]
    at  mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.5.1\frameworks\projects\frame work\src\mx\managers\LayoutManager.as:816]
    at  mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.5.1\frameworks\projec ts\framework\src\mx\managers\LayoutManager.as:1180]
    If I downgrade to 4.1.0.16076, the issue goes  away!
    Has anyone seen this issue? Any idea on how to fix  it? Please help!

    I created a new simple Flex project to recreate the  issue but I'm unable to reproduce the error condition.
    Is there any other way I can provide the needed  information? Can you point me to what you refer to as sample test case, so that  I can provide you the info in appropriate form.
    For what it's worth, here are the  screenshots:
    With SDK 4.1.0.16076
    With SDK 4.5.1:

  • Flex SDK upgrade

    I am upgrade my flex sdk 4.1 to 4.6. I am getting this warnings.
    How i  removes  these warnings?

    I created a new simple Flex project to recreate the  issue but I'm unable to reproduce the error condition.
    Is there any other way I can provide the needed  information? Can you point me to what you refer to as sample test case, so that  I can provide you the info in appropriate form.
    For what it's worth, here are the  screenshots:
    With SDK 4.1.0.16076
    With SDK 4.5.1:

  • Flex Builder 2 Upgrade problem

    Hi,
    I've got Flex Builder 2 (no charting included) and want to upgrade to Flash Builder 4 Premium.
    The problem i've met is there is no one step upgrade :/ Seller told me that i must upgrade to Flash Builder 4 Standard
    and then upgrade to Premium. But if i had FB 3 Standard i would upgrade in one step to FB 4 Premium.
    For me it's a little non-sense. FB 2 was much more expensive than FB 3 standard and now the price to upgrade is
    almost the same as brand new FB 4 Premium ;/
    Can I buy only one upgrade from previous FB X Standard ?
    Please give me a reliable answer.
    Reagards
    Pshemol

    Hi Pshemol,
    The advice you were given was correct - you can upgrade from Flex Builder 2 (without charting) to Flash Builder 4 Standard edition for $99. If you want Flash Builder 4 Premium then you'll need to upgrade as described previously and then purchase a Standard to Premium upgrade for $499.
    Thanks,
    Andrew
    Senior Product Manager, Flash Builder

Maybe you are looking for

  • Goods Receipt Indicator in PO Delivery tab

    Hi, I have created a PO, for which I am trying to do GR, but SAP is not allowing to do GR, on analyzing I found reason for that as Goods receipt indicator was not set in Delivery tab of the PO. I have chacked the account assignment category (P in thi

  • Schedule a Webi report to multiple folders in BOXIR2 InfoView

    Hi All Expert, I might need your kind advice on what is the alternative way to do the below in BOXIR2 InfoView. In my InfoView, i have several sub-folders under one folder. For eg, i have one "Sales" folder which contained multiple sub-folders as "SG

  • Red X light comes on for printing or copying...​says to load paper. Paper is in tray.

    no problem printing today.  This evening, when trying to print,  as soon as I request the print mode, the printer shows a red X and it trys to print, but message is to load paper.  I had loaded the paper, numerous times and it will not work. I tried

  • Mounting my 24" iMac

    Hey I was wondering if the VESA mount will work on my 24" iMac, I do not have the new one but the old 24" white model. Will that mount work?

  • Service Procurement without SUS

    Hi! We are currently running on Extended Classic Scenario. I understand that there are 2 types of service procurement - classic and external staffing. Both talks about the use of SUS which will not support confirmation and invoicing for extended clas