porting

What is the best approach to moving a preexisting project from Flash 7/AS2 to Flex/AS3?

徘徊边缘 提交于 2020-01-23 06:23:48
问题 I have a large codebase that targetted Flash 7, with a lot of AS2 classes. I'm hoping that I'll be able to use Flex for any new projects, but a lot of new stuff in our roadmap is additions to the old code. The syntax for AS2 and AS3 is generally the same, so I'm starting to wonder how hard it would be to port the current codebase to Flex/AS3. I know all the UI-related stuff would be iffy (currently the UI is generated at runtime with a lot of createEmptyMovieClip() and attachMovie() stuff),

Undefined reference to mempcy@GLIBC_2.14 when compiling on Linux

六月ゝ 毕业季﹏ 提交于 2020-01-19 01:49:26
问题 I am trying to port an application to drive a device that uses an ftdi2332h chip from windows to linux. I installed the libftd2xx library on an ubuntu 10.04 system per these instructions. When I try to compile any of the sample programs I get the following error: /usr/local/lib/libftd2xx.so: undefined reference to `memcpy@GLIBC_2.14' collect2: ld returned 1 exit status Any guidelines on how to fix this? 回答1: The mempcy@GLIBC_2.14 is called a versioned symbol. Glibc uses them while other

Undefined reference to mempcy@GLIBC_2.14 when compiling on Linux

旧城冷巷雨未停 提交于 2020-01-19 01:49:05
问题 I am trying to port an application to drive a device that uses an ftdi2332h chip from windows to linux. I installed the libftd2xx library on an ubuntu 10.04 system per these instructions. When I try to compile any of the sample programs I get the following error: /usr/local/lib/libftd2xx.so: undefined reference to `memcpy@GLIBC_2.14' collect2: ld returned 1 exit status Any guidelines on how to fix this? 回答1: The mempcy@GLIBC_2.14 is called a versioned symbol. Glibc uses them while other

Converting Actionscript syntax to Objective C

萝らか妹 提交于 2020-01-14 07:52:06
问题 I have a game I wrote in Actionscript 3 I'm looking to port to iOS. The game has about 9k LOC spread across 150 classes, most of the classes are for data models, state handling and level generation all of which should be easy to port. However, the thought of rejiggering the syntax by hand across all these files is none too appealing. Are there tools that can help me speed up this process? I'm not looking for a magical tool here, nor am I looking for a cross compiler, I just want some help

“module “QtQuick” is not installed” (Android porting)

帅比萌擦擦* 提交于 2020-01-14 05:33:07
问题 I'm trying to porting my application to android with qt5.4 but I have this error: W/Qt (30916): qrc:/qml/FrontEnd.qml:1 ((null)): qrc:/qml/FrontEnd.qml:1:1: module "QtQuick" is not installed This is my .pro TEMPLATE = app TARGET = sandbox-build-android QT+= qml quick widgets printsupport xml svg INCLUDEPATH += [...]# my include path # Input HEADERS += [...] # my include SOURCES += [...] # my source RESOURCES += ../sandbox/resources.qrc LIBS += -L$$PWD/../../edalab/else-datamodel-classes/build

How to have drag-and-drop and sorted GtkTreeView in GTK3?

和自甴很熟 提交于 2020-01-12 06:53:27
问题 I am porting liblarch, a library for handling directed acyclic graphs, from PyGTK (GTK2) to PyGObject introspection (GTK3). I ran into the problem with GtkTreeView. The app using liblarch needs to sort GtkTreeView by a column but in the same time, the user can drag-and-drop rows, move a row under another row. For that I had to manually process dnd_data_get() and dnd_data_receive() which is perfectly okay. There is the minimal setup for GtkTreeView which works under PyGTK. Rows are sorted and

Use Zhu Ramanan code in a web application

扶醉桌前 提交于 2020-01-06 07:03:52
问题 I have to use Face-eye detection algorithm by Zhu Ramanan in a web application. They have provided the code in Matlab and main computation is done in C++. Since I am new to image processing and matlab, i am not able to understand how to proceed on making it run with my web app. I found that Matlab code can be ported to c++ by using coder function. So I tried using coder function in matlab which opened a Build menu wherein I selected C/C++ executable. But the build gets stuck when the code is

Use Zhu Ramanan code in a web application

∥☆過路亽.° 提交于 2020-01-06 07:03:46
问题 I have to use Face-eye detection algorithm by Zhu Ramanan in a web application. They have provided the code in Matlab and main computation is done in C++. Since I am new to image processing and matlab, i am not able to understand how to proceed on making it run with my web app. I found that Matlab code can be ported to c++ by using coder function. So I tried using coder function in matlab which opened a Build menu wherein I selected C/C++ executable. But the build gets stuck when the code is

Good LDAP library for BlackBerry?

一个人想着一个人 提交于 2020-01-03 03:10:08
问题 I am looking for nice Java LDAP library suitable for using on BlackBerry. There is some basic support for LDAP in BlackBerry Java SDK, however it is too basic and I would like to use direct TCP connections instead of MDS (MDS is the only transport option when using LDAP classes from standard BB SDK). Regarding features I basically want to search some users and their attributes. To put it simple we can assume I am building a telephone book, but the clients are only reading entries from the

Need to port MS Visual C++ to Linux G++

强颜欢笑 提交于 2020-01-01 06:36:51
问题 I'd like to start by saying I am a computational biophysicist, not a software engineer, so my knowledge of programming is limited to scientific computation (I use C++, Matlab, and R). I was recently asked to port a huge package of code (~10,000 lines) to Linux from MS Visual C++, where I've been developing some code. They knew I was writing in Linux and didn't tell me until nearly a year later that they wanted it integrated with old code in Windows. To be honest, I have no idea where to start