New API module and categories

Can we assign categories of news through the API as the blog? Is - this being implemented or even less works?

Hi Tarik,

Yes, you can. See the API for this reference guide: the Developer Reference

Cristinel

Tags: Business Catalyst

Similar Questions

  • Photos in the develop module are covered with red dots [was: I am really new to Lr and clueless...]

    I am really new to Lr and clueless... when I take my photos in the area 'Developing', they are covered with red dots like bacteria.  What I am doing wrong?

    In the top right of the screen to the point, you should see a histogram representing the tones of the image. It has a triangle shaped button in each upper corner.

    The left button displays blue Shadow markers for any areas that are at, or very close to, 'black '.

    The right button red poster to highlight markers for all areas that are at, or near, blow 'white '.

    Click these buttons to the markers on the image (toggle).

    (You can view markers temporarily, when turned off, flying over the buttons of the mouse without clicking)...

  • Satellite Pro C50-A-1E4 running unstable with new RAM modules

    I have the above machine and that you have upgraded the RAM (up to 8 GB) a long while ago. Normally I have upgraded the BIOS if there is a new version.

    However, for some so that my machine was unstable, and this is due to the RAM running at the XMP1866 of the machine (933 MHz) instead of the rated CPU 1600 (800 MHz). I have attached a screengrab of Piriform Speccy to report.

    There is no 1.40 BIOS UEFI framework to adjust the RAM timing and so BIOS supports data SPD incorrectly for CPU ID.

    I'm unable to locate earlier BIOS to check if this pattern is repeated, but it took more than a year to display fault so that the machine is out of warranty. If I put small sticks of RAM 1600 system seems stable.

    However, I bought the RAM to use. Now I am unable to test if RAM is faulty because she will not pass Memtest (blocking or crash on) but I'm not sure if instability of the system is defective cause of system being OC because of the BIOS or RAM.

    The question that he is perfectly for about a year before displaying the errors. BIOS should correctly detect the speed of JEDEC standard data in the EEPROM. He does not. I often ran "overspec' memory in other PC without encountering this behavior. It is only troubleshooting that made me aware of this gap.

    RAM is Crucial Ballistix 8 GB-1866 BLS8G3N18AES4CEU.16FE

    If I put small sticks of RAM 1600 system seems stable.

    I doubt that it is a BIOS problem...
    First of all, you can not use any module of RAM... you must use a fully compatible modules and as you probably know, not all commercially available RAM modules are fully compatible.

    As far as I know if upgrading RAM that Toshiba recommends the use of these modules.

    4 GB DDR3 - 1600 PA5037U-1M4G
    8 GB DDR3-1600 PA5037U-1M8G

    The specifications are:
    Memory speed: 1600 Mhz PC3-12800
    Capacity: 8GB
    Pins: 204 SODIMM
    Type of RAM: DDR3 SODIMM
    Rank: Rank double
    Latency (CL) CASES: CL11
    Voltage: 1.5V

    I recommend you use the modules that meet exactly the same specifications.

  • New video card and memory for my laptop (1410-604)

    Hello

    I think of a new video card and an extra memory...
    What possibilities I have to upgrade my laptop (Satellite 1410-604).

    I checked my computer technical description:
    I think I can add an extra 256 MB SDRAM. But what video card?

    Koen

    Hello guys

    It s not possible to update the graphics card. You can't compare the desktop with a laptop PC. The graphics card on the laptop is a small chip that attaches to the motherboard.

    On the upgrade memory: you can upgrade the memory maximum. 512 MB (2x256MB). There are 2 slots available and these modules of memory are supported:
    PC2100 128 MB (PA3126U - 1 M 12)
    PC2100 256 MB (PA3127U - 1 M 25)

  • Can we use latest version of modules and toolkits with the old version of LabVIEW core?

    Hello world
    I'm new to LabVIEW
    I have a question.
    We can use (indeed install) latest version of modules and tools (for example, 2009 or 8.6.1 version) with the old version of LabVIEW core (for example LabVIEW 8.6)?
    No problem?!
    I have 8.6 (rating) of LabVIEW and I want to istall 2009 real-time Module.

    No you can not do. But you can download and install Labview 2009 and module RT 2009 Trail for 30 days.

  • New APIs?

    Are there new APIs in the new SDK and build

    We expected to (sort of) a way to force landscape programattically (my apps look terrible in Portrait)

    Another highly anticipated would be the advertising Service

    I know we tend to want to rather want things until you are readly to get us so we will (or at least I will) be understanding because we know that you have the launch today in the USA

    Sorry to moan

    I just noticed another line of XML

    Since the XML NS 2.0.0.0 is the distribution of phone

    Well--this isn't namespace for the WebWorks for Playbook new

    Apologies - it respond at this stage will be stopping on this subject I guess

    I'll try a build

  • GlobalEventListener: to distinguish between system module and gui entrypoint

    Hey. I have an application with a system module that should always run and a gui with a EULA entry point. Once accepted the EULA, I want the gui to close application and the module of the system to begin running. (It works on battery pull, but the goal is to avoid asking the user to do).

    eventOccurred in GlobalEventListener fires twice, I guess once for the module of the system and once for the GUI. Two apparently weird things happen. First of all, when I use a global boolean to make a distinction between the sysmod and GUI, GUI screen is stuck and the sysmod seems to be exited. (Or I tried passing the processid of the sysmod and just exit with a different id - the GUI.) Same effect).

    Then when I remove the and check only for the guid of the global event, the eula, the sysmod screen farm stop logging but an icon of the application with the generic blue icon are still there in the app selector (hold the menu button).

    All I want to do is start the system module and close the EULA gui, so that the user need not cold start. Thanks for your time... code below. J.

    class MDB extends UiApplication implements GlobalEventListener 
    
      boolean thisIsSystemModule;
    
        // In main(  )
    
            if (arg0.equals("gui")) {
    
                globalMDB = new MDB();
                globalMDB.SetSystemModuleFlag(false);
                globalMDB.addThatGlobal();
        }
            else if (arg0.equals("activatesysmodandexitgui")) {
    
                MySystemListener msl = new MySystemListener();
                globalMDB = new MDB();
                globalMDB.SetSystemModuleFlag(true);
                globalMDB.addSystemListener(msl);
    
                globalMDB.ScheduleNextBackgroundChange();   
    
                    String logMessage = "MDB has both setup and scheduled a bg change.";
                    EventLogger.logEvent(0x4c9d3452d87922f8L, logMessage.getBytes(), EventLogger.ALWAYS_LOG);
                        System.out.println("\n\n>>" + logMessage);
    
                // post global event for eula to listen to and close
                globalMDB.addThatGlobal(); 
    
            //// Event ID comes from MDB.Start.System.Module.And.Close.EULA.GUI  0x5395aca2ff6df828L
                ApplicationDescriptor appDescriptor = ApplicationDescriptor.currentApplicationDescriptor();
                int smprocessid = ApplicationManager.getApplicationManager().getProcessId(appDescriptor);
    
             ApplicationManager.getApplicationManager().postGlobalEvent(0x5395aca2ff6df828L, smprocessid, 0);
    
                globalMDB.enterEventDispatcher();
        }
        else {
            // code for battery pull
        }
    
        private void SetSystemModuleFlag(boolean flag) {
    
            thisIsSystemModule = flag;
    
        }
    
        private void addThatGlobal() {
    
            addGlobalEventListener(this);   
    
        }
    
        ////  Called when user accepts the eula. EULA is gui entrypoint. I want the gui app to exit and leave just the system module
    
        private static void StartSystemModule() {
    
                int modHandle = CodeModuleManager.getModuleHandle("MDB");
                ApplicationDescriptor[] apDes = CodeModuleManager.getApplicationDescriptors(modHandle);
                ApplicationDescriptor appDescriptor = new ApplicationDescriptor(apDes[1], new String[] {"activatesysmodandexitgui"});  // we want the system module
    
                try
                {
                    ApplicationManager.getApplicationManager().runApplication(appDescriptor);
                }
                catch (Exception e)
                {
                        System.out.println("\n>> Problem starting system mmodule\n");
                }
    
        }
    
    public void eventOccurred( long guid, int data0, int data1, Object object0, Object object1) {
    
            //Is this the GlobalEvent we are waiting for?
            //Long = com.samples.globalEventFiring.GlobalEventFiring
            ApplicationDescriptor appDescriptor = ApplicationDescriptor.currentApplicationDescriptor();
            int thisprocessid = ApplicationManager.getApplicationManager().getProcessId(appDescriptor);
    
            if (guid == 0x5395aca2ff6df828L)  //  !thisIsSystemModule &&         data0 != thisprocessid &&
            {
                    System.out.println("\nEvent received, eula exiting now.");
                    System.exit(1);
            }
    }
    

    Hello. The whole situation turns that arose because despite searching, I was not in the current Modules of the system to start when the application is installed (or opening). I knew only that they were running at startup, then in the absence of a way to start them from code, I asked users to cold start their phones!

    Although I do not understand what caused this error, it might have something to do with the planning of a timer job or adding a listener to an instance of the application system, and then exit the application before the timer is due to run it. Could someone with more understanding fill in us, on what it would do, but unless there is another way, I wouldn't do it.

    The solution was to do nothing. Delete all of the code to start the module of the system. And the other thing of smaller was to detect whether the instance is the module of the system or the gui entry point, Yes, you can use a global var but not a static. In acceptsForeground, you just check this global var defined in the hand and to be sysmod, false return.

    Will seek some of the discovered books recently, in order to aim to post 2 days a week only I think that in the future.

    TKS

    J

  • The system modules and threads?

    (1) are grouped within the cod even modules of the system?

    (2) will run the modules of the system since a separate queue UI event thread? Basically, do I need another thread to do the work of the fork?

    (3) I noticed that the phone application is divided into 2 modules: api (1) (2) app.

    Is this a good practice? API modules for interfaces maybe. How do we export Service for consumption by another application?

    Thank you

    G

    In most cases, an operation that takes more than a few milliseconds to complete should be done in a separate thread, especially in a user interface application. Of course, this is not mandatory. The objective is to ensure that the user appreciates their overall experience with their device - not just with your application.

    Edit: Oh, and I almost forgot to answer your original question. To my knowledge, System applications share the CPU as an app we write are supposed to. In this sense, our applications are on the same level as the rims. Of course, I'm sure rim are multithreaded to some extent, but they are not running in a separate environment from our.

  • Creating a new system Module

    Hi all

    There is probably a really simple answer to this one, so I apologize in advance for my ignorance!

    If I create a new system module (i.e. to select 'definitions' of the group 'Configuration' under 'Dashboard'.  In the upper left pane of the split window that appears, you will find a green button '+' at the bottom of the list. Click this button to create a new system module). I followed using http://en.community.dell.com/techcenter/performance-monitoring/foglight-administrators/w/admins-wiki/6156.custom-script-agent-2-build-a-wcf-dashboard-to-view-the-custom-agent-data and others, the module does not appear in the list of dashboards in the left menu.

    The user I use got a role of Dashboard Designer.  I have already created a system module this is displayed here:

    However, my other doesn't work.  Both have obtained the relevant administrator and authorized roles:

    I created the original a bit back and don't think that I made a trick to get it to show up under the dashboard.  Can you get it someone please let me know what I forgot to do?

    Thank you

    Brian

    Modules only appear in the list when they contain a view that is reported as a dashboard.

  • New to Lr and all my folders on my desk somehow!

    I am new to Lightroom and not most computer savy guy in the room. I used the plugin to move my library to open. He succeeded, but I went to referenced before using the plugin. I spent the last hours of grooming since my projects imported into Lightroom and files and not collections. I've read online a suggestion not to mess with files and use collections if my plan is to have a folder for each year that holds all of this years pictures and a collection for each year filled with collections that represent what were once projects.

    The Office on my MacBook Pro was not visible due to open windows, etc... Things began to slow down and when I hid everything from the office, I see that all these files are not in my photos folder but on the desktop. I don't know how it happened when I created new folders I have them created in my pictures folder.

    The solution is as simple as opening a finder window and drag and drop of these folders on the desktop in the pictures folder? What has caused this in the first place and how can I prevent this from happening in the future when you import a memory card.

    My apologies for these basic questions, but I have always been more than a user of my computer as an organizer - if that makes sense. The simpler and more intuitive the better - one of the reasons why I went with a Mac when I started with computers. Don't want to move things without knowing what exactly what I'm doing and potentially make things worse.

    Yes, the location of the folder is easily corrected.

    Using the Finder, move the folders from your "office" to a more appropriate folder.

    Then go to the records of the library made LR module Panel right click on the above files now 'missing' and say LR where you move them to LR will reconnect everything under the folder.

    When you import your images from memory cards, pay attention to your 'destination folder' on the right side of the import dialog box.

    Worth years of images in a single folder is probably a bad idea in drops in file system performance when too many files are placed in a single folder. Organization of individual days would be preferable, organizing a month would be better than nothing.

  • Modules Modules and custom project properties

    I have a module and a module, allows you to call their hand and the child.  I'm defining properties of custom hand modules, project level but once the module is included, custom properties are not long available to the engine API.  I tried all the combinations defined on the module, on the consumer, on the two, etc. Nothing.  What is even more frustrating, is that when I crack open the ZIP file and the .rmod, I can see the definitions in the XML file.

    All other custom properties are cool... entity, relationship,... only project level attribute those...

    Why doesn't this work? Is there a way to pull this off?

    Daniel,

    This certainly seems to be a bug. It seems that custom properties can be used when you include modules.

    What have you tried to do with the custom property? Probably there's a simple work-around by setting a global attribute of the text with the value you want in the custom property.

    In the meantime, I will raise this as a bug

    See you soon

    Frank

  • A question about Application module and bounded taskflows

    Hello

    One of my friends sent me this question that I could not answer. The question is:


    Your application contains a workflow bounded with four pages.

    The pages are all based on different application modules and the workflow has the property of transaction, the value 'Always Begin new Transaction, and a commit operation is defined as the return of the activity. The user makes a few changes on each page, but a validation failure happens on the links on the third page.

    Which of these scenarios describes the outcome of this situation?

    A. None of the changes on pages undertakes all are cancelled.

    B. pages one and two and four engaged; page three is not validated.

    C. changes to the first two pages are validated; changes on the last two pages are not committed.

    D. it depends on the value that has been set in the property Transaction on each module of the application.

    I suggest the answer is A, but the answer my friend is C.

    What is your suggestions

    Thank you

    You are right.

    The point of transaction is that a couple of operation may be validated or cancelled together.

    If a stubborn workflow starts with a new transaction, when he wishes to complete, he must call a task flow return activity validation or cancellation. They call the underlying commit() or rollback() operations on the associated data control framework, essentially validation or restoring all the data attached to the frame controls.


    http://www.Oracle.com/technetwork/developer-tools/ADF/learnmore/ADF-task-flow-TRANS-Fund-v1-1-1864319.PDF

  • There is a new API for Digital Publishing Solution?

    I am currently using this API "Adobe DPS - reading SDK 2.32" and it work perfectly with DPS.

    Now, I try to use the same API in Digital Publishing Solution given but an error appear:


    " Web page unavailable

    The page Web atbridge://%7B%22event%22%3A%7B%22type%22%3A%22BridgeInitialized%22%2C%22bridgeLocation%2 2%3A%22adobeDPS._bridge%22%7D%7Dcould not be responsible because:

    NET::ERR_UNKNOWN_URL_SCHEM ".

    Do I need to do something for her work? Or, is it a new API?

    Thank you very much.


    The only api reading only is not currently supported in 2015 of DPS. What you're trying to do with them?

    Neil

  • I just downloaded the new DC Acrobat, and I'm having a lot of problems with it. It's very, very slow. He has opening, saving, closing, do anything. Is there something that can be done to help him run a little more, well, normally?

    I just downloaded the new DC Acrobat, and I'm having a lot of problems with it. It's very, very slow. He has opening, saving, closing, do anything. Is there something that can be done to help him run a little more, well, normally?

    I fixed it! I used the string analyze function waiting in the Task Manager while opening a PDF file and have to wait 12 seconds... and it showed that the wait chain has been blocked by the Speech SDK. So I went to my Plugins of PDF from Adobe folder, which in my case is C:\Program Files (x 86) \Adobe\Acrobat DC\Acrobat\plug_ins and delete the plugin ReadOutLoud.api. (I had to close all instances of Acrobat DC first, and I had to also click the UAC Popup Windows application approval raised to remove the plugin) Now... instant Adobe Acrobat DC charge!

  • modules and help tag

    I'm back in British Colombia after a period of absence and have created a temporary site. If some changes are good, I have a terrible time to access the modules and tags. When I open the Business Catalyst Panel in Dreamweaver under Modules I have are all Modules of the Site (Pages, content owner and various), Web forms and social media. Nothing like events, Ad rotators, or Navigation, under data all I have is "No data available for this page." It is obvious that I have to do something to get the list of tags and modules, but what?

    I do not have the file base.css, ModuleStyleSheet.css, layout.css or styles of phone.css active in the html page header. What is my problem? I prefer to create my own css styles, but I'll do what I can to make this work.

    I have no way to set up an online store. Long, long ago, I was able to implement a completely custom website, example and still access all the tags and insert them. Now, I can't even find them. I need to be able to build the site quite far as my client can see what the site will look like. Right now I have a home page customized without navigation. Nothing, zip.

    After reading and reading the tutorials, it seems to me to be able to build a navigation bar in Dreamweaver and then download the file and the css to control the site of BC and make the NAV drop a custom module, but the tutorials are also nebulous that I can't be sure it will work. I'm going to anyway.

    Any help would be greatly appreciated. My skills are average to advanced with static sites. It's my first real brush with dynamics of coding using CS6.

    Thank you

    Sheryl

    Hi Sheryl,

    The admin and DW share the new tag module concept. Tags if there is no availibe to layout your in will not show anything, Modules will see the aalways as a tab.

    If your not to see the other things the Site can't be a plan that supports other functions. Basic Web is real base for examole.

    I'm not sure wha tyou mean with regard to styles. If you have chosen a model it may have any other style sheets, but a raw never BC site has the css of modulestylesheets.

    Find out here:

    http://forums.Adobe.com/community/business_catalyst/documents

    You also have links to party help resources 3rd on the right as well.

Maybe you are looking for

  • Why my hotspot does not connect to my iPhone6? I just used it on right Friday night before I downloaded the 9.2 IOS... Anyone having problems?

    Why my personal hotspot does not connect to my iPhone6? I just used it on right Friday night before I downloaded the IOS 9.2 update... Anyone else having problems?

  • Copy the Code from Labview

    Hi guys,. I'm sure this has been posted in advice, but my search does not show good results. I noticed in some messages that people could "join code" as an image. I've tried ctrl + c after have selected them in the block diagram view, and then ctrl +

  • Installation SSD

    Hello My apologies if what follows has already been answered before. I'll be unboxing a new T440s this week, and I want to install an SSD in your laptop and install Windows on the SSD drive rather than on the HARD drive. I have some questions about t

  • Windows Update history

    I recently did a system restore and an update for Windows7 failed because it was already installed about to restore, I'm back too. How to delete history of update failed. It's really annoying to see a update failed in the history of my update when I

  • Windows XP SP3, the blue screen and restart loop

    I use Windows XP SP3. I have the blue sreen of death and I'm in a reboot loop. I don't have a CD with the operating system, as was pre loaded on the laptop. on the blue screen of death, let me stop error: STOP: 0 X 00000024 (0 X 00190203, 0X8713F238,